benchling-sdk 1.13.0a1__py3-none-any.whl → 1.14.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 +30 -6
- benchling_sdk/models/__init__.py +176 -44
- benchling_sdk/models/webhooks/v0/__init__.py +526 -0
- benchling_sdk/services/v2/base_service.py +7 -0
- benchling_sdk/services/v2/stable/aa_sequence_service.py +14 -0
- benchling_sdk/services/v2/stable/dna_sequence_service.py +26 -0
- benchling_sdk/services/v2/stable/entry_service.py +23 -0
- benchling_sdk/services/v2/stable/workflow_flowchart_config_version_service.py +32 -0
- benchling_sdk/services/v2/stable/workflow_flowchart_service.py +85 -0
- benchling_sdk/services/v2/v2_alpha_service.py +8 -28
- benchling_sdk/services/v2/v2_beta_service.py +27 -72
- benchling_sdk/services/v2/v2_stable_service.py +165 -335
- benchling_sdk/services/v2_service.py +17 -11
- {benchling_sdk-1.13.0a1.dist-info → benchling_sdk-1.14.0.dist-info}/METADATA +2 -2
- {benchling_sdk-1.13.0a1.dist-info → benchling_sdk-1.14.0.dist-info}/RECORD +17 -17
- benchling_sdk/services/v2/alpha/v2_alpha_dna_sequence_service.py +0 -32
- benchling_sdk/services/v2/beta/v2_beta_aa_sequence_service.py +0 -33
- {benchling_sdk-1.13.0a1.dist-info → benchling_sdk-1.14.0.dist-info}/LICENSE +0 -0
- {benchling_sdk-1.13.0a1.dist-info → benchling_sdk-1.14.0.dist-info}/WHEEL +0 -0
benchling_sdk/models/__init__.py
CHANGED
@@ -174,6 +174,7 @@ __all__ = [
|
|
174
174
|
"AutofillPartsAsyncTask",
|
175
175
|
"AutofillRnaSequences",
|
176
176
|
"AutofillSequences",
|
177
|
+
"AutofillTranscriptionsAsyncTask",
|
177
178
|
"AutofillTranslationsAsyncTask",
|
178
179
|
"AutomationFile",
|
179
180
|
"AutomationFileAutomationFileConfig",
|
@@ -217,18 +218,10 @@ __all__ = [
|
|
217
218
|
"BaseSearchInputUIBlock",
|
218
219
|
"BaseSelectorInputUIBlock",
|
219
220
|
"Batch",
|
220
|
-
"BatchCreate",
|
221
221
|
"BatchOrInaccessibleResource",
|
222
222
|
"BatchSchema",
|
223
223
|
"BatchSchemasList",
|
224
224
|
"BatchSchemasPaginatedList",
|
225
|
-
"BatchUpdate",
|
226
|
-
"BatchesArchivalChange",
|
227
|
-
"BatchesArchive",
|
228
|
-
"BatchesArchiveReason",
|
229
|
-
"BatchesBulkGet",
|
230
|
-
"BatchesPaginatedList",
|
231
|
-
"BatchesUnarchive",
|
232
225
|
"BenchlingApp",
|
233
226
|
"BenchlingAppCreate",
|
234
227
|
"BenchlingAppDefinitionSummary",
|
@@ -304,6 +297,9 @@ __all__ = [
|
|
304
297
|
"ButtonUiBlockCreate",
|
305
298
|
"ButtonUiBlockType",
|
306
299
|
"ButtonUiBlockUpdate",
|
300
|
+
"ChartNotePart",
|
301
|
+
"ChartNotePartChart",
|
302
|
+
"ChartNotePartType",
|
307
303
|
"CheckboxNotePart",
|
308
304
|
"CheckboxNotePartType",
|
309
305
|
"CheckoutRecord",
|
@@ -384,7 +380,6 @@ __all__ = [
|
|
384
380
|
"DateAppConfigItemType",
|
385
381
|
"DatetimeAppConfigItem",
|
386
382
|
"DatetimeAppConfigItemType",
|
387
|
-
"DefaultConcentrationSummary",
|
388
383
|
"DeprecatedAutomationOutputProcessorsPaginatedList",
|
389
384
|
"DeprecatedContainerVolumeForInput",
|
390
385
|
"DeprecatedContainerVolumeForInputUnits",
|
@@ -435,6 +430,7 @@ __all__ = [
|
|
435
430
|
"DnaSequencesBulkGet",
|
436
431
|
"DnaSequencesBulkUpdateRequest",
|
437
432
|
"DnaSequencesBulkUpsertRequest",
|
433
|
+
"DnaSequencesFindMatchingRegion",
|
438
434
|
"DnaSequencesPaginatedList",
|
439
435
|
"DnaSequencesUnarchive",
|
440
436
|
"DnaTemplateAlignmentCreate",
|
@@ -507,6 +503,7 @@ __all__ = [
|
|
507
503
|
"EntryTableRow",
|
508
504
|
"EntryTemplate",
|
509
505
|
"EntryTemplateDay",
|
506
|
+
"EntryTemplateUpdate",
|
510
507
|
"EntryTemplatesPaginatedList",
|
511
508
|
"EntryUpdate",
|
512
509
|
"EntryUpdatedFieldsEvent",
|
@@ -590,6 +587,12 @@ __all__ = [
|
|
590
587
|
"IntegerFieldDefinition",
|
591
588
|
"IntegerFieldDefinitionType",
|
592
589
|
"InteractiveUiBlock",
|
590
|
+
"InventoryContainerTableNotePart",
|
591
|
+
"InventoryContainerTableNotePartMode",
|
592
|
+
"InventoryContainerTableNotePartType",
|
593
|
+
"InventoryPlateTableNotePart",
|
594
|
+
"InventoryPlateTableNotePartMode",
|
595
|
+
"InventoryPlateTableNotePartType",
|
593
596
|
"JsonAppConfigItem",
|
594
597
|
"JsonAppConfigItemType",
|
595
598
|
"LabAutomationBenchlingAppError",
|
@@ -619,7 +622,6 @@ __all__ = [
|
|
619
622
|
"ListAppConfigurationItemsSort",
|
620
623
|
"ListAppSessionsSort",
|
621
624
|
"ListAssayResultsSort",
|
622
|
-
"ListBatchesSort",
|
623
625
|
"ListBenchlingAppsSort",
|
624
626
|
"ListBoxesSort",
|
625
627
|
"ListCodonUsageTablesSort",
|
@@ -648,6 +650,7 @@ __all__ = [
|
|
648
650
|
"ListRNASequencesSort",
|
649
651
|
"ListTeamsSort",
|
650
652
|
"ListUsersSort",
|
653
|
+
"ListWorkflowFlowchartsSort",
|
651
654
|
"ListWorkflowTasksScheduledOn",
|
652
655
|
"Location",
|
653
656
|
"LocationCreate",
|
@@ -727,7 +730,11 @@ __all__ = [
|
|
727
730
|
"NucleotideAlignment",
|
728
731
|
"NucleotideAlignmentBase",
|
729
732
|
"NucleotideAlignmentBaseAlgorithm",
|
733
|
+
"NucleotideAlignmentBaseClustaloOptions",
|
730
734
|
"NucleotideAlignmentBaseFilesItem",
|
735
|
+
"NucleotideAlignmentBaseMafftOptions",
|
736
|
+
"NucleotideAlignmentBaseMafftOptionsAdjustDirection",
|
737
|
+
"NucleotideAlignmentBaseMafftOptionsStrategy",
|
731
738
|
"NucleotideAlignmentFile",
|
732
739
|
"NucleotideAlignmentSummary",
|
733
740
|
"NucleotideAlignmentsPaginatedList",
|
@@ -988,7 +995,16 @@ __all__ = [
|
|
988
995
|
"Well",
|
989
996
|
"WellOrInaccessibleResource",
|
990
997
|
"WellResourceType",
|
998
|
+
"WorkflowEndNodeDetails",
|
999
|
+
"WorkflowFlowchart",
|
1000
|
+
"WorkflowFlowchartConfigSummary",
|
1001
|
+
"WorkflowFlowchartConfigVersion",
|
1002
|
+
"WorkflowFlowchartEdgeConfig",
|
1003
|
+
"WorkflowFlowchartNodeConfig",
|
1004
|
+
"WorkflowFlowchartNodeConfigNodeType",
|
1005
|
+
"WorkflowFlowchartPaginatedList",
|
991
1006
|
"WorkflowList",
|
1007
|
+
"WorkflowNodeTaskGroupSummary",
|
992
1008
|
"WorkflowOutput",
|
993
1009
|
"WorkflowOutputArchiveReason",
|
994
1010
|
"WorkflowOutputBulkCreate",
|
@@ -996,6 +1012,7 @@ __all__ = [
|
|
996
1012
|
"WorkflowOutputCreate",
|
997
1013
|
"WorkflowOutputCreatedEvent",
|
998
1014
|
"WorkflowOutputCreatedEventEventType",
|
1015
|
+
"WorkflowOutputNodeDetails",
|
999
1016
|
"WorkflowOutputSchema",
|
1000
1017
|
"WorkflowOutputSummary",
|
1001
1018
|
"WorkflowOutputUpdate",
|
@@ -1009,6 +1026,9 @@ __all__ = [
|
|
1009
1026
|
"WorkflowOutputsPaginatedList",
|
1010
1027
|
"WorkflowOutputsUnarchive",
|
1011
1028
|
"WorkflowPatch",
|
1029
|
+
"WorkflowRootNodeDetails",
|
1030
|
+
"WorkflowRouterFunction",
|
1031
|
+
"WorkflowRouterNodeDetails",
|
1012
1032
|
"WorkflowSample",
|
1013
1033
|
"WorkflowSampleList",
|
1014
1034
|
"WorkflowStage",
|
@@ -1043,6 +1063,7 @@ __all__ = [
|
|
1043
1063
|
"WorkflowTaskGroupsArchive",
|
1044
1064
|
"WorkflowTaskGroupsPaginatedList",
|
1045
1065
|
"WorkflowTaskGroupsUnarchive",
|
1066
|
+
"WorkflowTaskNodeDetails",
|
1046
1067
|
"WorkflowTaskSchema",
|
1047
1068
|
"WorkflowTaskSchemaBase",
|
1048
1069
|
"WorkflowTaskSchemaExecutionType",
|
@@ -1238,6 +1259,7 @@ if TYPE_CHECKING:
|
|
1238
1259
|
import benchling_api_client.v2.stable.models.autofill_parts_async_task
|
1239
1260
|
import benchling_api_client.v2.stable.models.autofill_rna_sequences
|
1240
1261
|
import benchling_api_client.v2.stable.models.autofill_sequences
|
1262
|
+
import benchling_api_client.v2.stable.models.autofill_transcriptions_async_task
|
1241
1263
|
import benchling_api_client.v2.stable.models.autofill_translations_async_task
|
1242
1264
|
import benchling_api_client.v2.stable.models.automation_file
|
1243
1265
|
import benchling_api_client.v2.stable.models.automation_file_automation_file_config
|
@@ -1281,18 +1303,10 @@ if TYPE_CHECKING:
|
|
1281
1303
|
import benchling_api_client.v2.stable.models.base_search_input_ui_block
|
1282
1304
|
import benchling_api_client.v2.stable.models.base_selector_input_ui_block
|
1283
1305
|
import benchling_api_client.v2.stable.models.batch
|
1284
|
-
import benchling_api_client.v2.stable.models.batch_create
|
1285
1306
|
import benchling_api_client.v2.stable.models.batch_or_inaccessible_resource
|
1286
1307
|
import benchling_api_client.v2.stable.models.batch_schema
|
1287
1308
|
import benchling_api_client.v2.stable.models.batch_schemas_list
|
1288
1309
|
import benchling_api_client.v2.stable.models.batch_schemas_paginated_list
|
1289
|
-
import benchling_api_client.v2.stable.models.batch_update
|
1290
|
-
import benchling_api_client.v2.stable.models.batches_archival_change
|
1291
|
-
import benchling_api_client.v2.stable.models.batches_archive
|
1292
|
-
import benchling_api_client.v2.stable.models.batches_archive_reason
|
1293
|
-
import benchling_api_client.v2.stable.models.batches_bulk_get
|
1294
|
-
import benchling_api_client.v2.stable.models.batches_paginated_list
|
1295
|
-
import benchling_api_client.v2.stable.models.batches_unarchive
|
1296
1310
|
import benchling_api_client.v2.stable.models.benchling_app
|
1297
1311
|
import benchling_api_client.v2.stable.models.benchling_app_create
|
1298
1312
|
import benchling_api_client.v2.stable.models.benchling_app_definition_summary
|
@@ -1368,6 +1382,9 @@ if TYPE_CHECKING:
|
|
1368
1382
|
import benchling_api_client.v2.stable.models.button_ui_block_create
|
1369
1383
|
import benchling_api_client.v2.stable.models.button_ui_block_type
|
1370
1384
|
import benchling_api_client.v2.stable.models.button_ui_block_update
|
1385
|
+
import benchling_api_client.v2.stable.models.chart_note_part
|
1386
|
+
import benchling_api_client.v2.stable.models.chart_note_part_chart
|
1387
|
+
import benchling_api_client.v2.stable.models.chart_note_part_type
|
1371
1388
|
import benchling_api_client.v2.stable.models.checkbox_note_part
|
1372
1389
|
import benchling_api_client.v2.stable.models.checkbox_note_part_type
|
1373
1390
|
import benchling_api_client.v2.stable.models.checkout_record
|
@@ -1448,7 +1465,6 @@ if TYPE_CHECKING:
|
|
1448
1465
|
import benchling_api_client.v2.stable.models.date_app_config_item_type
|
1449
1466
|
import benchling_api_client.v2.stable.models.datetime_app_config_item
|
1450
1467
|
import benchling_api_client.v2.stable.models.datetime_app_config_item_type
|
1451
|
-
import benchling_api_client.v2.stable.models.default_concentration_summary
|
1452
1468
|
import benchling_api_client.v2.stable.models.deprecated_automation_output_processors_paginated_list
|
1453
1469
|
import benchling_api_client.v2.stable.models.deprecated_container_volume_for_input
|
1454
1470
|
import benchling_api_client.v2.stable.models.deprecated_container_volume_for_input_units
|
@@ -1499,6 +1515,7 @@ if TYPE_CHECKING:
|
|
1499
1515
|
import benchling_api_client.v2.stable.models.dna_sequences_bulk_get
|
1500
1516
|
import benchling_api_client.v2.stable.models.dna_sequences_bulk_update_request
|
1501
1517
|
import benchling_api_client.v2.stable.models.dna_sequences_bulk_upsert_request
|
1518
|
+
import benchling_api_client.v2.stable.models.dna_sequences_find_matching_region
|
1502
1519
|
import benchling_api_client.v2.stable.models.dna_sequences_paginated_list
|
1503
1520
|
import benchling_api_client.v2.stable.models.dna_sequences_unarchive
|
1504
1521
|
import benchling_api_client.v2.stable.models.dna_template_alignment_create
|
@@ -1571,6 +1588,7 @@ if TYPE_CHECKING:
|
|
1571
1588
|
import benchling_api_client.v2.stable.models.entry_table_row
|
1572
1589
|
import benchling_api_client.v2.stable.models.entry_template
|
1573
1590
|
import benchling_api_client.v2.stable.models.entry_template_day
|
1591
|
+
import benchling_api_client.v2.stable.models.entry_template_update
|
1574
1592
|
import benchling_api_client.v2.stable.models.entry_templates_paginated_list
|
1575
1593
|
import benchling_api_client.v2.stable.models.entry_update
|
1576
1594
|
import benchling_api_client.v2.stable.models.entry_updated_fields_event
|
@@ -1654,6 +1672,12 @@ if TYPE_CHECKING:
|
|
1654
1672
|
import benchling_api_client.v2.stable.models.integer_field_definition
|
1655
1673
|
import benchling_api_client.v2.stable.models.integer_field_definition_type
|
1656
1674
|
import benchling_api_client.v2.stable.models.interactive_ui_block
|
1675
|
+
import benchling_api_client.v2.stable.models.inventory_container_table_note_part
|
1676
|
+
import benchling_api_client.v2.stable.models.inventory_container_table_note_part_mode
|
1677
|
+
import benchling_api_client.v2.stable.models.inventory_container_table_note_part_type
|
1678
|
+
import benchling_api_client.v2.stable.models.inventory_plate_table_note_part
|
1679
|
+
import benchling_api_client.v2.stable.models.inventory_plate_table_note_part_mode
|
1680
|
+
import benchling_api_client.v2.stable.models.inventory_plate_table_note_part_type
|
1657
1681
|
import benchling_api_client.v2.stable.models.json_app_config_item
|
1658
1682
|
import benchling_api_client.v2.stable.models.json_app_config_item_type
|
1659
1683
|
import benchling_api_client.v2.stable.models.lab_automation_benchling_app_error
|
@@ -1683,7 +1707,6 @@ if TYPE_CHECKING:
|
|
1683
1707
|
import benchling_api_client.v2.stable.models.list_app_configuration_items_sort
|
1684
1708
|
import benchling_api_client.v2.stable.models.list_app_sessions_sort
|
1685
1709
|
import benchling_api_client.v2.stable.models.list_assay_results_sort
|
1686
|
-
import benchling_api_client.v2.stable.models.list_batches_sort
|
1687
1710
|
import benchling_api_client.v2.stable.models.list_benchling_apps_sort
|
1688
1711
|
import benchling_api_client.v2.stable.models.list_boxes_sort
|
1689
1712
|
import benchling_api_client.v2.stable.models.list_codon_usage_tables_sort
|
@@ -1712,6 +1735,7 @@ if TYPE_CHECKING:
|
|
1712
1735
|
import benchling_api_client.v2.stable.models.list_rna_sequences_sort
|
1713
1736
|
import benchling_api_client.v2.stable.models.list_teams_sort
|
1714
1737
|
import benchling_api_client.v2.stable.models.list_users_sort
|
1738
|
+
import benchling_api_client.v2.stable.models.list_workflow_flowcharts_sort
|
1715
1739
|
import benchling_api_client.v2.stable.models.list_workflow_tasks_scheduled_on
|
1716
1740
|
import benchling_api_client.v2.stable.models.location
|
1717
1741
|
import benchling_api_client.v2.stable.models.location_create
|
@@ -1791,7 +1815,11 @@ if TYPE_CHECKING:
|
|
1791
1815
|
import benchling_api_client.v2.stable.models.nucleotide_alignment
|
1792
1816
|
import benchling_api_client.v2.stable.models.nucleotide_alignment_base
|
1793
1817
|
import benchling_api_client.v2.stable.models.nucleotide_alignment_base_algorithm
|
1818
|
+
import benchling_api_client.v2.stable.models.nucleotide_alignment_base_clustalo_options
|
1794
1819
|
import benchling_api_client.v2.stable.models.nucleotide_alignment_base_files_item
|
1820
|
+
import benchling_api_client.v2.stable.models.nucleotide_alignment_base_mafft_options
|
1821
|
+
import benchling_api_client.v2.stable.models.nucleotide_alignment_base_mafft_options_adjust_direction
|
1822
|
+
import benchling_api_client.v2.stable.models.nucleotide_alignment_base_mafft_options_strategy
|
1795
1823
|
import benchling_api_client.v2.stable.models.nucleotide_alignment_file
|
1796
1824
|
import benchling_api_client.v2.stable.models.nucleotide_alignment_summary
|
1797
1825
|
import benchling_api_client.v2.stable.models.nucleotide_alignments_paginated_list
|
@@ -2052,7 +2080,16 @@ if TYPE_CHECKING:
|
|
2052
2080
|
import benchling_api_client.v2.stable.models.well
|
2053
2081
|
import benchling_api_client.v2.stable.models.well_or_inaccessible_resource
|
2054
2082
|
import benchling_api_client.v2.stable.models.well_resource_type
|
2083
|
+
import benchling_api_client.v2.stable.models.workflow_end_node_details
|
2084
|
+
import benchling_api_client.v2.stable.models.workflow_flowchart
|
2085
|
+
import benchling_api_client.v2.stable.models.workflow_flowchart_config_summary
|
2086
|
+
import benchling_api_client.v2.stable.models.workflow_flowchart_config_version
|
2087
|
+
import benchling_api_client.v2.stable.models.workflow_flowchart_edge_config
|
2088
|
+
import benchling_api_client.v2.stable.models.workflow_flowchart_node_config
|
2089
|
+
import benchling_api_client.v2.stable.models.workflow_flowchart_node_config_node_type
|
2090
|
+
import benchling_api_client.v2.stable.models.workflow_flowchart_paginated_list
|
2055
2091
|
import benchling_api_client.v2.stable.models.workflow_list
|
2092
|
+
import benchling_api_client.v2.stable.models.workflow_node_task_group_summary
|
2056
2093
|
import benchling_api_client.v2.stable.models.workflow_output
|
2057
2094
|
import benchling_api_client.v2.stable.models.workflow_output_archive_reason
|
2058
2095
|
import benchling_api_client.v2.stable.models.workflow_output_bulk_create
|
@@ -2060,6 +2097,7 @@ if TYPE_CHECKING:
|
|
2060
2097
|
import benchling_api_client.v2.stable.models.workflow_output_create
|
2061
2098
|
import benchling_api_client.v2.stable.models.workflow_output_created_event
|
2062
2099
|
import benchling_api_client.v2.stable.models.workflow_output_created_event_event_type
|
2100
|
+
import benchling_api_client.v2.stable.models.workflow_output_node_details
|
2063
2101
|
import benchling_api_client.v2.stable.models.workflow_output_schema
|
2064
2102
|
import benchling_api_client.v2.stable.models.workflow_output_summary
|
2065
2103
|
import benchling_api_client.v2.stable.models.workflow_output_update
|
@@ -2073,6 +2111,9 @@ if TYPE_CHECKING:
|
|
2073
2111
|
import benchling_api_client.v2.stable.models.workflow_outputs_paginated_list
|
2074
2112
|
import benchling_api_client.v2.stable.models.workflow_outputs_unarchive
|
2075
2113
|
import benchling_api_client.v2.stable.models.workflow_patch
|
2114
|
+
import benchling_api_client.v2.stable.models.workflow_root_node_details
|
2115
|
+
import benchling_api_client.v2.stable.models.workflow_router_function
|
2116
|
+
import benchling_api_client.v2.stable.models.workflow_router_node_details
|
2076
2117
|
import benchling_api_client.v2.stable.models.workflow_sample
|
2077
2118
|
import benchling_api_client.v2.stable.models.workflow_sample_list
|
2078
2119
|
import benchling_api_client.v2.stable.models.workflow_stage
|
@@ -2107,6 +2148,7 @@ if TYPE_CHECKING:
|
|
2107
2148
|
import benchling_api_client.v2.stable.models.workflow_task_groups_archive
|
2108
2149
|
import benchling_api_client.v2.stable.models.workflow_task_groups_paginated_list
|
2109
2150
|
import benchling_api_client.v2.stable.models.workflow_task_groups_unarchive
|
2151
|
+
import benchling_api_client.v2.stable.models.workflow_task_node_details
|
2110
2152
|
import benchling_api_client.v2.stable.models.workflow_task_schema
|
2111
2153
|
import benchling_api_client.v2.stable.models.workflow_task_schema_base
|
2112
2154
|
import benchling_api_client.v2.stable.models.workflow_task_schema_execution_type
|
@@ -2512,6 +2554,9 @@ if TYPE_CHECKING:
|
|
2512
2554
|
)
|
2513
2555
|
AutofillRnaSequences = benchling_api_client.v2.stable.models.autofill_rna_sequences.AutofillRnaSequences
|
2514
2556
|
AutofillSequences = benchling_api_client.v2.stable.models.autofill_sequences.AutofillSequences
|
2557
|
+
AutofillTranscriptionsAsyncTask = (
|
2558
|
+
benchling_api_client.v2.stable.models.autofill_transcriptions_async_task.AutofillTranscriptionsAsyncTask
|
2559
|
+
)
|
2515
2560
|
AutofillTranslationsAsyncTask = (
|
2516
2561
|
benchling_api_client.v2.stable.models.autofill_translations_async_task.AutofillTranslationsAsyncTask
|
2517
2562
|
)
|
@@ -2615,7 +2660,6 @@ if TYPE_CHECKING:
|
|
2615
2660
|
benchling_api_client.v2.stable.models.base_selector_input_ui_block.BaseSelectorInputUIBlock
|
2616
2661
|
)
|
2617
2662
|
Batch = benchling_api_client.v2.stable.models.batch.Batch
|
2618
|
-
BatchCreate = benchling_api_client.v2.stable.models.batch_create.BatchCreate
|
2619
2663
|
BatchOrInaccessibleResource = (
|
2620
2664
|
benchling_api_client.v2.stable.models.batch_or_inaccessible_resource.BatchOrInaccessibleResource
|
2621
2665
|
)
|
@@ -2624,15 +2668,6 @@ if TYPE_CHECKING:
|
|
2624
2668
|
BatchSchemasPaginatedList = (
|
2625
2669
|
benchling_api_client.v2.stable.models.batch_schemas_paginated_list.BatchSchemasPaginatedList
|
2626
2670
|
)
|
2627
|
-
BatchUpdate = benchling_api_client.v2.stable.models.batch_update.BatchUpdate
|
2628
|
-
BatchesArchivalChange = (
|
2629
|
-
benchling_api_client.v2.stable.models.batches_archival_change.BatchesArchivalChange
|
2630
|
-
)
|
2631
|
-
BatchesArchive = benchling_api_client.v2.stable.models.batches_archive.BatchesArchive
|
2632
|
-
BatchesArchiveReason = benchling_api_client.v2.stable.models.batches_archive_reason.BatchesArchiveReason
|
2633
|
-
BatchesBulkGet = benchling_api_client.v2.stable.models.batches_bulk_get.BatchesBulkGet
|
2634
|
-
BatchesPaginatedList = benchling_api_client.v2.stable.models.batches_paginated_list.BatchesPaginatedList
|
2635
|
-
BatchesUnarchive = benchling_api_client.v2.stable.models.batches_unarchive.BatchesUnarchive
|
2636
2671
|
BenchlingApp = benchling_api_client.v2.stable.models.benchling_app.BenchlingApp
|
2637
2672
|
BenchlingAppCreate = benchling_api_client.v2.stable.models.benchling_app_create.BenchlingAppCreate
|
2638
2673
|
BenchlingAppDefinitionSummary = (
|
@@ -2794,6 +2829,9 @@ if TYPE_CHECKING:
|
|
2794
2829
|
ButtonUiBlockCreate = benchling_api_client.v2.stable.models.button_ui_block_create.ButtonUiBlockCreate
|
2795
2830
|
ButtonUiBlockType = benchling_api_client.v2.stable.models.button_ui_block_type.ButtonUiBlockType
|
2796
2831
|
ButtonUiBlockUpdate = benchling_api_client.v2.stable.models.button_ui_block_update.ButtonUiBlockUpdate
|
2832
|
+
ChartNotePart = benchling_api_client.v2.stable.models.chart_note_part.ChartNotePart
|
2833
|
+
ChartNotePartChart = benchling_api_client.v2.stable.models.chart_note_part_chart.ChartNotePartChart
|
2834
|
+
ChartNotePartType = benchling_api_client.v2.stable.models.chart_note_part_type.ChartNotePartType
|
2797
2835
|
CheckboxNotePart = benchling_api_client.v2.stable.models.checkbox_note_part.CheckboxNotePart
|
2798
2836
|
CheckboxNotePartType = benchling_api_client.v2.stable.models.checkbox_note_part_type.CheckboxNotePartType
|
2799
2837
|
CheckoutRecord = benchling_api_client.v2.stable.models.checkout_record.CheckoutRecord
|
@@ -2958,9 +2996,6 @@ if TYPE_CHECKING:
|
|
2958
2996
|
DatetimeAppConfigItemType = (
|
2959
2997
|
benchling_api_client.v2.stable.models.datetime_app_config_item_type.DatetimeAppConfigItemType
|
2960
2998
|
)
|
2961
|
-
DefaultConcentrationSummary = (
|
2962
|
-
benchling_api_client.v2.stable.models.default_concentration_summary.DefaultConcentrationSummary
|
2963
|
-
)
|
2964
2999
|
DeprecatedAutomationOutputProcessorsPaginatedList = (
|
2965
3000
|
benchling_api_client.v2.stable.models.deprecated_automation_output_processors_paginated_list.DeprecatedAutomationOutputProcessorsPaginatedList
|
2966
3001
|
)
|
@@ -3077,6 +3112,9 @@ if TYPE_CHECKING:
|
|
3077
3112
|
DnaSequencesBulkUpsertRequest = (
|
3078
3113
|
benchling_api_client.v2.stable.models.dna_sequences_bulk_upsert_request.DnaSequencesBulkUpsertRequest
|
3079
3114
|
)
|
3115
|
+
DnaSequencesFindMatchingRegion = (
|
3116
|
+
benchling_api_client.v2.stable.models.dna_sequences_find_matching_region.DnaSequencesFindMatchingRegion
|
3117
|
+
)
|
3080
3118
|
DnaSequencesPaginatedList = (
|
3081
3119
|
benchling_api_client.v2.stable.models.dna_sequences_paginated_list.DnaSequencesPaginatedList
|
3082
3120
|
)
|
@@ -3219,6 +3257,7 @@ if TYPE_CHECKING:
|
|
3219
3257
|
EntryTableRow = benchling_api_client.v2.stable.models.entry_table_row.EntryTableRow
|
3220
3258
|
EntryTemplate = benchling_api_client.v2.stable.models.entry_template.EntryTemplate
|
3221
3259
|
EntryTemplateDay = benchling_api_client.v2.stable.models.entry_template_day.EntryTemplateDay
|
3260
|
+
EntryTemplateUpdate = benchling_api_client.v2.stable.models.entry_template_update.EntryTemplateUpdate
|
3222
3261
|
EntryTemplatesPaginatedList = (
|
3223
3262
|
benchling_api_client.v2.stable.models.entry_templates_paginated_list.EntryTemplatesPaginatedList
|
3224
3263
|
)
|
@@ -3376,6 +3415,24 @@ if TYPE_CHECKING:
|
|
3376
3415
|
benchling_api_client.v2.stable.models.integer_field_definition_type.IntegerFieldDefinitionType
|
3377
3416
|
)
|
3378
3417
|
InteractiveUiBlock = benchling_api_client.v2.stable.models.interactive_ui_block.InteractiveUiBlock
|
3418
|
+
InventoryContainerTableNotePart = (
|
3419
|
+
benchling_api_client.v2.stable.models.inventory_container_table_note_part.InventoryContainerTableNotePart
|
3420
|
+
)
|
3421
|
+
InventoryContainerTableNotePartMode = (
|
3422
|
+
benchling_api_client.v2.stable.models.inventory_container_table_note_part_mode.InventoryContainerTableNotePartMode
|
3423
|
+
)
|
3424
|
+
InventoryContainerTableNotePartType = (
|
3425
|
+
benchling_api_client.v2.stable.models.inventory_container_table_note_part_type.InventoryContainerTableNotePartType
|
3426
|
+
)
|
3427
|
+
InventoryPlateTableNotePart = (
|
3428
|
+
benchling_api_client.v2.stable.models.inventory_plate_table_note_part.InventoryPlateTableNotePart
|
3429
|
+
)
|
3430
|
+
InventoryPlateTableNotePartMode = (
|
3431
|
+
benchling_api_client.v2.stable.models.inventory_plate_table_note_part_mode.InventoryPlateTableNotePartMode
|
3432
|
+
)
|
3433
|
+
InventoryPlateTableNotePartType = (
|
3434
|
+
benchling_api_client.v2.stable.models.inventory_plate_table_note_part_type.InventoryPlateTableNotePartType
|
3435
|
+
)
|
3379
3436
|
JsonAppConfigItem = benchling_api_client.v2.stable.models.json_app_config_item.JsonAppConfigItem
|
3380
3437
|
JsonAppConfigItemType = (
|
3381
3438
|
benchling_api_client.v2.stable.models.json_app_config_item_type.JsonAppConfigItemType
|
@@ -3439,7 +3496,6 @@ if TYPE_CHECKING:
|
|
3439
3496
|
)
|
3440
3497
|
ListAppSessionsSort = benchling_api_client.v2.stable.models.list_app_sessions_sort.ListAppSessionsSort
|
3441
3498
|
ListAssayResultsSort = benchling_api_client.v2.stable.models.list_assay_results_sort.ListAssayResultsSort
|
3442
|
-
ListBatchesSort = benchling_api_client.v2.stable.models.list_batches_sort.ListBatchesSort
|
3443
3499
|
ListBenchlingAppsSort = (
|
3444
3500
|
benchling_api_client.v2.stable.models.list_benchling_apps_sort.ListBenchlingAppsSort
|
3445
3501
|
)
|
@@ -3488,6 +3544,9 @@ if TYPE_CHECKING:
|
|
3488
3544
|
ListRNASequencesSort = benchling_api_client.v2.stable.models.list_rna_sequences_sort.ListRNASequencesSort
|
3489
3545
|
ListTeamsSort = benchling_api_client.v2.stable.models.list_teams_sort.ListTeamsSort
|
3490
3546
|
ListUsersSort = benchling_api_client.v2.stable.models.list_users_sort.ListUsersSort
|
3547
|
+
ListWorkflowFlowchartsSort = (
|
3548
|
+
benchling_api_client.v2.stable.models.list_workflow_flowcharts_sort.ListWorkflowFlowchartsSort
|
3549
|
+
)
|
3491
3550
|
ListWorkflowTasksScheduledOn = (
|
3492
3551
|
benchling_api_client.v2.stable.models.list_workflow_tasks_scheduled_on.ListWorkflowTasksScheduledOn
|
3493
3552
|
)
|
@@ -3641,9 +3700,21 @@ if TYPE_CHECKING:
|
|
3641
3700
|
NucleotideAlignmentBaseAlgorithm = (
|
3642
3701
|
benchling_api_client.v2.stable.models.nucleotide_alignment_base_algorithm.NucleotideAlignmentBaseAlgorithm
|
3643
3702
|
)
|
3703
|
+
NucleotideAlignmentBaseClustaloOptions = (
|
3704
|
+
benchling_api_client.v2.stable.models.nucleotide_alignment_base_clustalo_options.NucleotideAlignmentBaseClustaloOptions
|
3705
|
+
)
|
3644
3706
|
NucleotideAlignmentBaseFilesItem = (
|
3645
3707
|
benchling_api_client.v2.stable.models.nucleotide_alignment_base_files_item.NucleotideAlignmentBaseFilesItem
|
3646
3708
|
)
|
3709
|
+
NucleotideAlignmentBaseMafftOptions = (
|
3710
|
+
benchling_api_client.v2.stable.models.nucleotide_alignment_base_mafft_options.NucleotideAlignmentBaseMafftOptions
|
3711
|
+
)
|
3712
|
+
NucleotideAlignmentBaseMafftOptionsAdjustDirection = (
|
3713
|
+
benchling_api_client.v2.stable.models.nucleotide_alignment_base_mafft_options_adjust_direction.NucleotideAlignmentBaseMafftOptionsAdjustDirection
|
3714
|
+
)
|
3715
|
+
NucleotideAlignmentBaseMafftOptionsStrategy = (
|
3716
|
+
benchling_api_client.v2.stable.models.nucleotide_alignment_base_mafft_options_strategy.NucleotideAlignmentBaseMafftOptionsStrategy
|
3717
|
+
)
|
3647
3718
|
NucleotideAlignmentFile = (
|
3648
3719
|
benchling_api_client.v2.stable.models.nucleotide_alignment_file.NucleotideAlignmentFile
|
3649
3720
|
)
|
@@ -4164,7 +4235,32 @@ if TYPE_CHECKING:
|
|
4164
4235
|
benchling_api_client.v2.stable.models.well_or_inaccessible_resource.WellOrInaccessibleResource
|
4165
4236
|
)
|
4166
4237
|
WellResourceType = benchling_api_client.v2.stable.models.well_resource_type.WellResourceType
|
4238
|
+
WorkflowEndNodeDetails = (
|
4239
|
+
benchling_api_client.v2.stable.models.workflow_end_node_details.WorkflowEndNodeDetails
|
4240
|
+
)
|
4241
|
+
WorkflowFlowchart = benchling_api_client.v2.stable.models.workflow_flowchart.WorkflowFlowchart
|
4242
|
+
WorkflowFlowchartConfigSummary = (
|
4243
|
+
benchling_api_client.v2.stable.models.workflow_flowchart_config_summary.WorkflowFlowchartConfigSummary
|
4244
|
+
)
|
4245
|
+
WorkflowFlowchartConfigVersion = (
|
4246
|
+
benchling_api_client.v2.stable.models.workflow_flowchart_config_version.WorkflowFlowchartConfigVersion
|
4247
|
+
)
|
4248
|
+
WorkflowFlowchartEdgeConfig = (
|
4249
|
+
benchling_api_client.v2.stable.models.workflow_flowchart_edge_config.WorkflowFlowchartEdgeConfig
|
4250
|
+
)
|
4251
|
+
WorkflowFlowchartNodeConfig = (
|
4252
|
+
benchling_api_client.v2.stable.models.workflow_flowchart_node_config.WorkflowFlowchartNodeConfig
|
4253
|
+
)
|
4254
|
+
WorkflowFlowchartNodeConfigNodeType = (
|
4255
|
+
benchling_api_client.v2.stable.models.workflow_flowchart_node_config_node_type.WorkflowFlowchartNodeConfigNodeType
|
4256
|
+
)
|
4257
|
+
WorkflowFlowchartPaginatedList = (
|
4258
|
+
benchling_api_client.v2.stable.models.workflow_flowchart_paginated_list.WorkflowFlowchartPaginatedList
|
4259
|
+
)
|
4167
4260
|
WorkflowList = benchling_api_client.v2.stable.models.workflow_list.WorkflowList
|
4261
|
+
WorkflowNodeTaskGroupSummary = (
|
4262
|
+
benchling_api_client.v2.stable.models.workflow_node_task_group_summary.WorkflowNodeTaskGroupSummary
|
4263
|
+
)
|
4168
4264
|
WorkflowOutput = benchling_api_client.v2.stable.models.workflow_output.WorkflowOutput
|
4169
4265
|
WorkflowOutputArchiveReason = (
|
4170
4266
|
benchling_api_client.v2.stable.models.workflow_output_archive_reason.WorkflowOutputArchiveReason
|
@@ -4182,6 +4278,9 @@ if TYPE_CHECKING:
|
|
4182
4278
|
WorkflowOutputCreatedEventEventType = (
|
4183
4279
|
benchling_api_client.v2.stable.models.workflow_output_created_event_event_type.WorkflowOutputCreatedEventEventType
|
4184
4280
|
)
|
4281
|
+
WorkflowOutputNodeDetails = (
|
4282
|
+
benchling_api_client.v2.stable.models.workflow_output_node_details.WorkflowOutputNodeDetails
|
4283
|
+
)
|
4185
4284
|
WorkflowOutputSchema = benchling_api_client.v2.stable.models.workflow_output_schema.WorkflowOutputSchema
|
4186
4285
|
WorkflowOutputSummary = (
|
4187
4286
|
benchling_api_client.v2.stable.models.workflow_output_summary.WorkflowOutputSummary
|
@@ -4215,6 +4314,15 @@ if TYPE_CHECKING:
|
|
4215
4314
|
benchling_api_client.v2.stable.models.workflow_outputs_unarchive.WorkflowOutputsUnarchive
|
4216
4315
|
)
|
4217
4316
|
WorkflowPatch = benchling_api_client.v2.stable.models.workflow_patch.WorkflowPatch
|
4317
|
+
WorkflowRootNodeDetails = (
|
4318
|
+
benchling_api_client.v2.stable.models.workflow_root_node_details.WorkflowRootNodeDetails
|
4319
|
+
)
|
4320
|
+
WorkflowRouterFunction = (
|
4321
|
+
benchling_api_client.v2.stable.models.workflow_router_function.WorkflowRouterFunction
|
4322
|
+
)
|
4323
|
+
WorkflowRouterNodeDetails = (
|
4324
|
+
benchling_api_client.v2.stable.models.workflow_router_node_details.WorkflowRouterNodeDetails
|
4325
|
+
)
|
4218
4326
|
WorkflowSample = benchling_api_client.v2.stable.models.workflow_sample.WorkflowSample
|
4219
4327
|
WorkflowSampleList = benchling_api_client.v2.stable.models.workflow_sample_list.WorkflowSampleList
|
4220
4328
|
WorkflowStage = benchling_api_client.v2.stable.models.workflow_stage.WorkflowStage
|
@@ -4297,6 +4405,9 @@ if TYPE_CHECKING:
|
|
4297
4405
|
WorkflowTaskGroupsUnarchive = (
|
4298
4406
|
benchling_api_client.v2.stable.models.workflow_task_groups_unarchive.WorkflowTaskGroupsUnarchive
|
4299
4407
|
)
|
4408
|
+
WorkflowTaskNodeDetails = (
|
4409
|
+
benchling_api_client.v2.stable.models.workflow_task_node_details.WorkflowTaskNodeDetails
|
4410
|
+
)
|
4300
4411
|
WorkflowTaskSchema = benchling_api_client.v2.stable.models.workflow_task_schema.WorkflowTaskSchema
|
4301
4412
|
WorkflowTaskSchemaBase = (
|
4302
4413
|
benchling_api_client.v2.stable.models.workflow_task_schema_base.WorkflowTaskSchemaBase
|
@@ -4536,6 +4647,7 @@ else:
|
|
4536
4647
|
"AutofillPartsAsyncTask": "benchling_api_client.v2.stable.models.autofill_parts_async_task",
|
4537
4648
|
"AutofillRnaSequences": "benchling_api_client.v2.stable.models.autofill_rna_sequences",
|
4538
4649
|
"AutofillSequences": "benchling_api_client.v2.stable.models.autofill_sequences",
|
4650
|
+
"AutofillTranscriptionsAsyncTask": "benchling_api_client.v2.stable.models.autofill_transcriptions_async_task",
|
4539
4651
|
"AutofillTranslationsAsyncTask": "benchling_api_client.v2.stable.models.autofill_translations_async_task",
|
4540
4652
|
"AutomationFile": "benchling_api_client.v2.stable.models.automation_file",
|
4541
4653
|
"AutomationFileAutomationFileConfig": "benchling_api_client.v2.stable.models.automation_file_automation_file_config",
|
@@ -4579,18 +4691,10 @@ else:
|
|
4579
4691
|
"BaseSearchInputUIBlock": "benchling_api_client.v2.stable.models.base_search_input_ui_block",
|
4580
4692
|
"BaseSelectorInputUIBlock": "benchling_api_client.v2.stable.models.base_selector_input_ui_block",
|
4581
4693
|
"Batch": "benchling_api_client.v2.stable.models.batch",
|
4582
|
-
"BatchCreate": "benchling_api_client.v2.stable.models.batch_create",
|
4583
4694
|
"BatchOrInaccessibleResource": "benchling_api_client.v2.stable.models.batch_or_inaccessible_resource",
|
4584
4695
|
"BatchSchema": "benchling_api_client.v2.stable.models.batch_schema",
|
4585
4696
|
"BatchSchemasList": "benchling_api_client.v2.stable.models.batch_schemas_list",
|
4586
4697
|
"BatchSchemasPaginatedList": "benchling_api_client.v2.stable.models.batch_schemas_paginated_list",
|
4587
|
-
"BatchUpdate": "benchling_api_client.v2.stable.models.batch_update",
|
4588
|
-
"BatchesArchivalChange": "benchling_api_client.v2.stable.models.batches_archival_change",
|
4589
|
-
"BatchesArchive": "benchling_api_client.v2.stable.models.batches_archive",
|
4590
|
-
"BatchesArchiveReason": "benchling_api_client.v2.stable.models.batches_archive_reason",
|
4591
|
-
"BatchesBulkGet": "benchling_api_client.v2.stable.models.batches_bulk_get",
|
4592
|
-
"BatchesPaginatedList": "benchling_api_client.v2.stable.models.batches_paginated_list",
|
4593
|
-
"BatchesUnarchive": "benchling_api_client.v2.stable.models.batches_unarchive",
|
4594
4698
|
"BenchlingApp": "benchling_api_client.v2.stable.models.benchling_app",
|
4595
4699
|
"BenchlingAppCreate": "benchling_api_client.v2.stable.models.benchling_app_create",
|
4596
4700
|
"BenchlingAppDefinitionSummary": "benchling_api_client.v2.stable.models.benchling_app_definition_summary",
|
@@ -4666,6 +4770,9 @@ else:
|
|
4666
4770
|
"ButtonUiBlockCreate": "benchling_api_client.v2.stable.models.button_ui_block_create",
|
4667
4771
|
"ButtonUiBlockType": "benchling_api_client.v2.stable.models.button_ui_block_type",
|
4668
4772
|
"ButtonUiBlockUpdate": "benchling_api_client.v2.stable.models.button_ui_block_update",
|
4773
|
+
"ChartNotePart": "benchling_api_client.v2.stable.models.chart_note_part",
|
4774
|
+
"ChartNotePartChart": "benchling_api_client.v2.stable.models.chart_note_part_chart",
|
4775
|
+
"ChartNotePartType": "benchling_api_client.v2.stable.models.chart_note_part_type",
|
4669
4776
|
"CheckboxNotePart": "benchling_api_client.v2.stable.models.checkbox_note_part",
|
4670
4777
|
"CheckboxNotePartType": "benchling_api_client.v2.stable.models.checkbox_note_part_type",
|
4671
4778
|
"CheckoutRecord": "benchling_api_client.v2.stable.models.checkout_record",
|
@@ -4746,7 +4853,6 @@ else:
|
|
4746
4853
|
"DateAppConfigItemType": "benchling_api_client.v2.stable.models.date_app_config_item_type",
|
4747
4854
|
"DatetimeAppConfigItem": "benchling_api_client.v2.stable.models.datetime_app_config_item",
|
4748
4855
|
"DatetimeAppConfigItemType": "benchling_api_client.v2.stable.models.datetime_app_config_item_type",
|
4749
|
-
"DefaultConcentrationSummary": "benchling_api_client.v2.stable.models.default_concentration_summary",
|
4750
4856
|
"DeprecatedAutomationOutputProcessorsPaginatedList": "benchling_api_client.v2.stable.models.deprecated_automation_output_processors_paginated_list",
|
4751
4857
|
"DeprecatedContainerVolumeForInput": "benchling_api_client.v2.stable.models.deprecated_container_volume_for_input",
|
4752
4858
|
"DeprecatedContainerVolumeForInputUnits": "benchling_api_client.v2.stable.models.deprecated_container_volume_for_input_units",
|
@@ -4797,6 +4903,7 @@ else:
|
|
4797
4903
|
"DnaSequencesBulkGet": "benchling_api_client.v2.stable.models.dna_sequences_bulk_get",
|
4798
4904
|
"DnaSequencesBulkUpdateRequest": "benchling_api_client.v2.stable.models.dna_sequences_bulk_update_request",
|
4799
4905
|
"DnaSequencesBulkUpsertRequest": "benchling_api_client.v2.stable.models.dna_sequences_bulk_upsert_request",
|
4906
|
+
"DnaSequencesFindMatchingRegion": "benchling_api_client.v2.stable.models.dna_sequences_find_matching_region",
|
4800
4907
|
"DnaSequencesPaginatedList": "benchling_api_client.v2.stable.models.dna_sequences_paginated_list",
|
4801
4908
|
"DnaSequencesUnarchive": "benchling_api_client.v2.stable.models.dna_sequences_unarchive",
|
4802
4909
|
"DnaTemplateAlignmentCreate": "benchling_api_client.v2.stable.models.dna_template_alignment_create",
|
@@ -4869,6 +4976,7 @@ else:
|
|
4869
4976
|
"EntryTableRow": "benchling_api_client.v2.stable.models.entry_table_row",
|
4870
4977
|
"EntryTemplate": "benchling_api_client.v2.stable.models.entry_template",
|
4871
4978
|
"EntryTemplateDay": "benchling_api_client.v2.stable.models.entry_template_day",
|
4979
|
+
"EntryTemplateUpdate": "benchling_api_client.v2.stable.models.entry_template_update",
|
4872
4980
|
"EntryTemplatesPaginatedList": "benchling_api_client.v2.stable.models.entry_templates_paginated_list",
|
4873
4981
|
"EntryUpdate": "benchling_api_client.v2.stable.models.entry_update",
|
4874
4982
|
"EntryUpdatedFieldsEvent": "benchling_api_client.v2.stable.models.entry_updated_fields_event",
|
@@ -4952,6 +5060,12 @@ else:
|
|
4952
5060
|
"IntegerFieldDefinition": "benchling_api_client.v2.stable.models.integer_field_definition",
|
4953
5061
|
"IntegerFieldDefinitionType": "benchling_api_client.v2.stable.models.integer_field_definition_type",
|
4954
5062
|
"InteractiveUiBlock": "benchling_api_client.v2.stable.models.interactive_ui_block",
|
5063
|
+
"InventoryContainerTableNotePart": "benchling_api_client.v2.stable.models.inventory_container_table_note_part",
|
5064
|
+
"InventoryContainerTableNotePartMode": "benchling_api_client.v2.stable.models.inventory_container_table_note_part_mode",
|
5065
|
+
"InventoryContainerTableNotePartType": "benchling_api_client.v2.stable.models.inventory_container_table_note_part_type",
|
5066
|
+
"InventoryPlateTableNotePart": "benchling_api_client.v2.stable.models.inventory_plate_table_note_part",
|
5067
|
+
"InventoryPlateTableNotePartMode": "benchling_api_client.v2.stable.models.inventory_plate_table_note_part_mode",
|
5068
|
+
"InventoryPlateTableNotePartType": "benchling_api_client.v2.stable.models.inventory_plate_table_note_part_type",
|
4955
5069
|
"JsonAppConfigItem": "benchling_api_client.v2.stable.models.json_app_config_item",
|
4956
5070
|
"JsonAppConfigItemType": "benchling_api_client.v2.stable.models.json_app_config_item_type",
|
4957
5071
|
"LabAutomationBenchlingAppError": "benchling_api_client.v2.stable.models.lab_automation_benchling_app_error",
|
@@ -4981,7 +5095,6 @@ else:
|
|
4981
5095
|
"ListAppConfigurationItemsSort": "benchling_api_client.v2.stable.models.list_app_configuration_items_sort",
|
4982
5096
|
"ListAppSessionsSort": "benchling_api_client.v2.stable.models.list_app_sessions_sort",
|
4983
5097
|
"ListAssayResultsSort": "benchling_api_client.v2.stable.models.list_assay_results_sort",
|
4984
|
-
"ListBatchesSort": "benchling_api_client.v2.stable.models.list_batches_sort",
|
4985
5098
|
"ListBenchlingAppsSort": "benchling_api_client.v2.stable.models.list_benchling_apps_sort",
|
4986
5099
|
"ListBoxesSort": "benchling_api_client.v2.stable.models.list_boxes_sort",
|
4987
5100
|
"ListCodonUsageTablesSort": "benchling_api_client.v2.stable.models.list_codon_usage_tables_sort",
|
@@ -5010,6 +5123,7 @@ else:
|
|
5010
5123
|
"ListRNASequencesSort": "benchling_api_client.v2.stable.models.list_rna_sequences_sort",
|
5011
5124
|
"ListTeamsSort": "benchling_api_client.v2.stable.models.list_teams_sort",
|
5012
5125
|
"ListUsersSort": "benchling_api_client.v2.stable.models.list_users_sort",
|
5126
|
+
"ListWorkflowFlowchartsSort": "benchling_api_client.v2.stable.models.list_workflow_flowcharts_sort",
|
5013
5127
|
"ListWorkflowTasksScheduledOn": "benchling_api_client.v2.stable.models.list_workflow_tasks_scheduled_on",
|
5014
5128
|
"Location": "benchling_api_client.v2.stable.models.location",
|
5015
5129
|
"LocationCreate": "benchling_api_client.v2.stable.models.location_create",
|
@@ -5089,7 +5203,11 @@ else:
|
|
5089
5203
|
"NucleotideAlignment": "benchling_api_client.v2.stable.models.nucleotide_alignment",
|
5090
5204
|
"NucleotideAlignmentBase": "benchling_api_client.v2.stable.models.nucleotide_alignment_base",
|
5091
5205
|
"NucleotideAlignmentBaseAlgorithm": "benchling_api_client.v2.stable.models.nucleotide_alignment_base_algorithm",
|
5206
|
+
"NucleotideAlignmentBaseClustaloOptions": "benchling_api_client.v2.stable.models.nucleotide_alignment_base_clustalo_options",
|
5092
5207
|
"NucleotideAlignmentBaseFilesItem": "benchling_api_client.v2.stable.models.nucleotide_alignment_base_files_item",
|
5208
|
+
"NucleotideAlignmentBaseMafftOptions": "benchling_api_client.v2.stable.models.nucleotide_alignment_base_mafft_options",
|
5209
|
+
"NucleotideAlignmentBaseMafftOptionsAdjustDirection": "benchling_api_client.v2.stable.models.nucleotide_alignment_base_mafft_options_adjust_direction",
|
5210
|
+
"NucleotideAlignmentBaseMafftOptionsStrategy": "benchling_api_client.v2.stable.models.nucleotide_alignment_base_mafft_options_strategy",
|
5093
5211
|
"NucleotideAlignmentFile": "benchling_api_client.v2.stable.models.nucleotide_alignment_file",
|
5094
5212
|
"NucleotideAlignmentSummary": "benchling_api_client.v2.stable.models.nucleotide_alignment_summary",
|
5095
5213
|
"NucleotideAlignmentsPaginatedList": "benchling_api_client.v2.stable.models.nucleotide_alignments_paginated_list",
|
@@ -5350,7 +5468,16 @@ else:
|
|
5350
5468
|
"Well": "benchling_api_client.v2.stable.models.well",
|
5351
5469
|
"WellOrInaccessibleResource": "benchling_api_client.v2.stable.models.well_or_inaccessible_resource",
|
5352
5470
|
"WellResourceType": "benchling_api_client.v2.stable.models.well_resource_type",
|
5471
|
+
"WorkflowEndNodeDetails": "benchling_api_client.v2.stable.models.workflow_end_node_details",
|
5472
|
+
"WorkflowFlowchart": "benchling_api_client.v2.stable.models.workflow_flowchart",
|
5473
|
+
"WorkflowFlowchartConfigSummary": "benchling_api_client.v2.stable.models.workflow_flowchart_config_summary",
|
5474
|
+
"WorkflowFlowchartConfigVersion": "benchling_api_client.v2.stable.models.workflow_flowchart_config_version",
|
5475
|
+
"WorkflowFlowchartEdgeConfig": "benchling_api_client.v2.stable.models.workflow_flowchart_edge_config",
|
5476
|
+
"WorkflowFlowchartNodeConfig": "benchling_api_client.v2.stable.models.workflow_flowchart_node_config",
|
5477
|
+
"WorkflowFlowchartNodeConfigNodeType": "benchling_api_client.v2.stable.models.workflow_flowchart_node_config_node_type",
|
5478
|
+
"WorkflowFlowchartPaginatedList": "benchling_api_client.v2.stable.models.workflow_flowchart_paginated_list",
|
5353
5479
|
"WorkflowList": "benchling_api_client.v2.stable.models.workflow_list",
|
5480
|
+
"WorkflowNodeTaskGroupSummary": "benchling_api_client.v2.stable.models.workflow_node_task_group_summary",
|
5354
5481
|
"WorkflowOutput": "benchling_api_client.v2.stable.models.workflow_output",
|
5355
5482
|
"WorkflowOutputArchiveReason": "benchling_api_client.v2.stable.models.workflow_output_archive_reason",
|
5356
5483
|
"WorkflowOutputBulkCreate": "benchling_api_client.v2.stable.models.workflow_output_bulk_create",
|
@@ -5358,6 +5485,7 @@ else:
|
|
5358
5485
|
"WorkflowOutputCreate": "benchling_api_client.v2.stable.models.workflow_output_create",
|
5359
5486
|
"WorkflowOutputCreatedEvent": "benchling_api_client.v2.stable.models.workflow_output_created_event",
|
5360
5487
|
"WorkflowOutputCreatedEventEventType": "benchling_api_client.v2.stable.models.workflow_output_created_event_event_type",
|
5488
|
+
"WorkflowOutputNodeDetails": "benchling_api_client.v2.stable.models.workflow_output_node_details",
|
5361
5489
|
"WorkflowOutputSchema": "benchling_api_client.v2.stable.models.workflow_output_schema",
|
5362
5490
|
"WorkflowOutputSummary": "benchling_api_client.v2.stable.models.workflow_output_summary",
|
5363
5491
|
"WorkflowOutputUpdate": "benchling_api_client.v2.stable.models.workflow_output_update",
|
@@ -5371,6 +5499,9 @@ else:
|
|
5371
5499
|
"WorkflowOutputsPaginatedList": "benchling_api_client.v2.stable.models.workflow_outputs_paginated_list",
|
5372
5500
|
"WorkflowOutputsUnarchive": "benchling_api_client.v2.stable.models.workflow_outputs_unarchive",
|
5373
5501
|
"WorkflowPatch": "benchling_api_client.v2.stable.models.workflow_patch",
|
5502
|
+
"WorkflowRootNodeDetails": "benchling_api_client.v2.stable.models.workflow_root_node_details",
|
5503
|
+
"WorkflowRouterFunction": "benchling_api_client.v2.stable.models.workflow_router_function",
|
5504
|
+
"WorkflowRouterNodeDetails": "benchling_api_client.v2.stable.models.workflow_router_node_details",
|
5374
5505
|
"WorkflowSample": "benchling_api_client.v2.stable.models.workflow_sample",
|
5375
5506
|
"WorkflowSampleList": "benchling_api_client.v2.stable.models.workflow_sample_list",
|
5376
5507
|
"WorkflowStage": "benchling_api_client.v2.stable.models.workflow_stage",
|
@@ -5405,6 +5536,7 @@ else:
|
|
5405
5536
|
"WorkflowTaskGroupsArchive": "benchling_api_client.v2.stable.models.workflow_task_groups_archive",
|
5406
5537
|
"WorkflowTaskGroupsPaginatedList": "benchling_api_client.v2.stable.models.workflow_task_groups_paginated_list",
|
5407
5538
|
"WorkflowTaskGroupsUnarchive": "benchling_api_client.v2.stable.models.workflow_task_groups_unarchive",
|
5539
|
+
"WorkflowTaskNodeDetails": "benchling_api_client.v2.stable.models.workflow_task_node_details",
|
5408
5540
|
"WorkflowTaskSchema": "benchling_api_client.v2.stable.models.workflow_task_schema",
|
5409
5541
|
"WorkflowTaskSchemaBase": "benchling_api_client.v2.stable.models.workflow_task_schema_base",
|
5410
5542
|
"WorkflowTaskSchemaExecutionType": "benchling_api_client.v2.stable.models.workflow_task_schema_execution_type",
|