benchling-sdk 1.21.2__py3-none-any.whl → 1.22.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/apps/canvas/types.py +8 -0
- benchling_sdk/benchling.py +88 -12
- benchling_sdk/helpers/task_helpers.py +5 -5
- benchling_sdk/models/__init__.py +1335 -329
- benchling_sdk/models/webhooks/v0/__init__.py +24 -4
- benchling_sdk/services/v2/stable/aa_sequence_service.py +4 -0
- benchling_sdk/services/v2/{beta/v2_beta_audit_service.py → stable/audit_service.py} +6 -6
- benchling_sdk/services/v2/stable/box_service.py +4 -0
- benchling_sdk/services/v2/stable/connect_service.py +79 -0
- benchling_sdk/services/v2/stable/container_service.py +4 -0
- benchling_sdk/services/v2/stable/custom_entity_service.py +4 -0
- benchling_sdk/services/v2/stable/data_frame_service.py +323 -0
- benchling_sdk/services/v2/stable/dataset_service.py +192 -0
- benchling_sdk/services/v2/stable/dna_oligo_service.py +4 -0
- benchling_sdk/services/v2/stable/dna_sequence_service.py +4 -0
- benchling_sdk/services/v2/stable/file_service.py +191 -0
- benchling_sdk/services/v2/stable/{request_service.py → legacy_request_service.py} +25 -25
- benchling_sdk/services/v2/stable/location_service.py +4 -0
- benchling_sdk/services/v2/stable/mixture_service.py +4 -0
- benchling_sdk/services/v2/stable/molecule_service.py +4 -0
- benchling_sdk/services/v2/stable/nucleotide_alignments_service.py +4 -0
- benchling_sdk/services/v2/stable/plate_service.py +4 -0
- benchling_sdk/services/v2/stable/rna_oligo_service.py +4 -0
- benchling_sdk/services/v2/stable/rna_sequence_service.py +4 -0
- benchling_sdk/services/v2/stable/task_service.py +1 -7
- benchling_sdk/services/v2/stable/test_order_service.py +145 -0
- benchling_sdk/services/v2/v2_beta_service.py +0 -14
- benchling_sdk/services/v2/v2_stable_service.py +101 -14
- {benchling_sdk-1.21.2.dist-info → benchling_sdk-1.22.0.dist-info}/METADATA +2 -2
- {benchling_sdk-1.21.2.dist-info → benchling_sdk-1.22.0.dist-info}/RECORD +32 -27
- {benchling_sdk-1.21.2.dist-info → benchling_sdk-1.22.0.dist-info}/LICENSE +0 -0
- {benchling_sdk-1.21.2.dist-info → benchling_sdk-1.22.0.dist-info}/WHEEL +0 -0
benchling_sdk/models/__init__.py
CHANGED
@@ -51,6 +51,8 @@ __all__ = [
|
|
51
51
|
"AppCanvasCreateBase",
|
52
52
|
"AppCanvasCreateUiBlockList",
|
53
53
|
"AppCanvasLeafNodeUiBlockList",
|
54
|
+
"AppCanvasNotePart",
|
55
|
+
"AppCanvasNotePartType",
|
54
56
|
"AppCanvasUiBlockList",
|
55
57
|
"AppCanvasUpdate",
|
56
58
|
"AppCanvasUpdateBase",
|
@@ -175,9 +177,12 @@ __all__ = [
|
|
175
177
|
"AssayRunsUnarchive",
|
176
178
|
"AsyncTask",
|
177
179
|
"AsyncTaskErrors",
|
180
|
+
"AsyncTaskErrorsItem",
|
178
181
|
"AsyncTaskLink",
|
179
182
|
"AsyncTaskResponse",
|
180
183
|
"AsyncTaskStatus",
|
184
|
+
"AuditLogExport",
|
185
|
+
"AuditLogExportFormat",
|
181
186
|
"AutoAnnotateAaSequences",
|
182
187
|
"AutoAnnotateDnaSequences",
|
183
188
|
"AutoAnnotateRnaSequences",
|
@@ -352,6 +357,10 @@ __all__ = [
|
|
352
357
|
"ContainersList",
|
353
358
|
"ContainersPaginatedList",
|
354
359
|
"ContainersUnarchive",
|
360
|
+
"ConvertToASM",
|
361
|
+
"ConvertToASMResponse_200",
|
362
|
+
"ConvertToCSV",
|
363
|
+
"ConvertToCSVResponse_200Item",
|
355
364
|
"CreateConsensusAlignmentAsyncTask",
|
356
365
|
"CreateEntityIntoRegistry",
|
357
366
|
"CreateNucleotideConsensusAlignmentAsyncTask",
|
@@ -384,8 +393,31 @@ __all__ = [
|
|
384
393
|
"CustomField",
|
385
394
|
"CustomFields",
|
386
395
|
"CustomNotation",
|
396
|
+
"CustomNotationAlias",
|
387
397
|
"CustomNotationRequest",
|
388
398
|
"CustomNotationsPaginatedList",
|
399
|
+
"DataFrame",
|
400
|
+
"DataFrameColumnMetadata",
|
401
|
+
"DataFrameColumnTypeMetadata",
|
402
|
+
"DataFrameColumnTypeMetadataTarget",
|
403
|
+
"DataFrameColumnTypeNameEnum",
|
404
|
+
"DataFrameColumnTypeNameEnumName",
|
405
|
+
"DataFrameCreate",
|
406
|
+
"DataFrameCreateManifest",
|
407
|
+
"DataFrameCreateManifestManifestItem",
|
408
|
+
"DataFrameManifest",
|
409
|
+
"DataFrameManifestManifestItem",
|
410
|
+
"DataFrameUpdate",
|
411
|
+
"DataFrameUpdateUploadStatus",
|
412
|
+
"Dataset",
|
413
|
+
"DatasetCreate",
|
414
|
+
"DatasetCreator",
|
415
|
+
"DatasetUpdate",
|
416
|
+
"DatasetsArchivalChange",
|
417
|
+
"DatasetsArchive",
|
418
|
+
"DatasetsArchiveReason",
|
419
|
+
"DatasetsPaginatedList",
|
420
|
+
"DatasetsUnarchive",
|
389
421
|
"DateAppConfigItem",
|
390
422
|
"DateAppConfigItemType",
|
391
423
|
"DatetimeAppConfigItem",
|
@@ -520,6 +552,8 @@ __all__ = [
|
|
520
552
|
"EntryUpdatedFieldsEventEventType",
|
521
553
|
"EntryUpdatedReviewRecordEvent",
|
522
554
|
"EntryUpdatedReviewRecordEventEventType",
|
555
|
+
"EntryUpdatedReviewSnapshotBetaEvent",
|
556
|
+
"EntryUpdatedReviewSnapshotBetaEventEventType",
|
523
557
|
"Enzyme",
|
524
558
|
"EnzymesPaginatedList",
|
525
559
|
"Event",
|
@@ -560,6 +594,22 @@ __all__ = [
|
|
560
594
|
"FieldWithResolution",
|
561
595
|
"Fields",
|
562
596
|
"FieldsWithResolution",
|
597
|
+
"File",
|
598
|
+
"FileCreate",
|
599
|
+
"FileCreator",
|
600
|
+
"FileStatus",
|
601
|
+
"FileStatusUploadStatus",
|
602
|
+
"FileUpdate",
|
603
|
+
"FileUpdateUploadStatus",
|
604
|
+
"FileUploadUiBlock",
|
605
|
+
"FileUploadUiBlockCreate",
|
606
|
+
"FileUploadUiBlockType",
|
607
|
+
"FileUploadUiBlockUpdate",
|
608
|
+
"FilesArchivalChange",
|
609
|
+
"FilesArchive",
|
610
|
+
"FilesArchiveReason",
|
611
|
+
"FilesPaginatedList",
|
612
|
+
"FilesUnarchive",
|
563
613
|
"FindMatchingRegionsAsyncTask",
|
564
614
|
"FindMatchingRegionsAsyncTaskResponse",
|
565
615
|
"FindMatchingRegionsAsyncTaskResponseAaSequenceMatchesItem",
|
@@ -586,6 +636,7 @@ __all__ = [
|
|
586
636
|
"GenericApiIdentifiedAppConfigItemType",
|
587
637
|
"GenericEntity",
|
588
638
|
"GenericEntityCreator",
|
639
|
+
"GetDataFrameRowDataFormat",
|
589
640
|
"GetUserWarehouseLoginsResponse_200",
|
590
641
|
"InaccessibleResource",
|
591
642
|
"InaccessibleResourceResourceType",
|
@@ -643,6 +694,7 @@ __all__ = [
|
|
643
694
|
"ListContainersCheckoutStatus",
|
644
695
|
"ListContainersSort",
|
645
696
|
"ListCustomEntitiesSort",
|
697
|
+
"ListDatasetsSort",
|
646
698
|
"ListDNAAlignmentsSort",
|
647
699
|
"ListDNAOligosSort",
|
648
700
|
"ListDNASequencesSort",
|
@@ -651,6 +703,7 @@ __all__ = [
|
|
651
703
|
"ListEnzymesSort",
|
652
704
|
"ListFeatureLibrariesSort",
|
653
705
|
"ListFeaturesMatchType",
|
706
|
+
"ListFilesSort",
|
654
707
|
"ListFoldersSection",
|
655
708
|
"ListFoldersSort",
|
656
709
|
"ListLocationsSort",
|
@@ -664,9 +717,11 @@ __all__ = [
|
|
664
717
|
"ListRNAOligosSort",
|
665
718
|
"ListRNASequencesSort",
|
666
719
|
"ListTeamsSort",
|
720
|
+
"ListTestOrdersSort",
|
667
721
|
"ListUsersSort",
|
668
722
|
"ListWorkflowFlowchartsSort",
|
669
723
|
"ListWorkflowTasksScheduledOn",
|
724
|
+
"ListingError",
|
670
725
|
"Location",
|
671
726
|
"LocationCreate",
|
672
727
|
"LocationSchema",
|
@@ -745,6 +800,7 @@ __all__ = [
|
|
745
800
|
"MonomersUnarchive",
|
746
801
|
"MultipleContainersTransfer",
|
747
802
|
"MultipleContainersTransfersList",
|
803
|
+
"NameTemplatePart",
|
748
804
|
"NamingStrategy",
|
749
805
|
"NotFoundError",
|
750
806
|
"NotFoundErrorError",
|
@@ -980,6 +1036,13 @@ __all__ = [
|
|
980
1036
|
"TeamSummary",
|
981
1037
|
"TeamUpdate",
|
982
1038
|
"TeamsPaginatedList",
|
1039
|
+
"TestDefinition",
|
1040
|
+
"TestOrder",
|
1041
|
+
"TestOrderBulkUpdate",
|
1042
|
+
"TestOrderStatus",
|
1043
|
+
"TestOrderUpdate",
|
1044
|
+
"TestOrdersBulkUpdateRequest",
|
1045
|
+
"TestOrdersPaginatedList",
|
983
1046
|
"TextAppConfigItem",
|
984
1047
|
"TextAppConfigItemType",
|
985
1048
|
"TextBoxNotePart",
|
@@ -1167,6 +1230,8 @@ if TYPE_CHECKING:
|
|
1167
1230
|
import benchling_api_client.v2.stable.models.app_canvas_create_base
|
1168
1231
|
import benchling_api_client.v2.stable.models.app_canvas_create_ui_block_list
|
1169
1232
|
import benchling_api_client.v2.stable.models.app_canvas_leaf_node_ui_block_list
|
1233
|
+
import benchling_api_client.v2.stable.models.app_canvas_note_part
|
1234
|
+
import benchling_api_client.v2.stable.models.app_canvas_note_part_type
|
1170
1235
|
import benchling_api_client.v2.stable.models.app_canvas_ui_block_list
|
1171
1236
|
import benchling_api_client.v2.stable.models.app_canvas_update
|
1172
1237
|
import benchling_api_client.v2.stable.models.app_canvas_update_base
|
@@ -1291,9 +1356,12 @@ if TYPE_CHECKING:
|
|
1291
1356
|
import benchling_api_client.v2.stable.models.assay_runs_unarchive
|
1292
1357
|
import benchling_api_client.v2.stable.models.async_task
|
1293
1358
|
import benchling_api_client.v2.stable.models.async_task_errors
|
1359
|
+
import benchling_api_client.v2.stable.models.async_task_errors_item
|
1294
1360
|
import benchling_api_client.v2.stable.models.async_task_link
|
1295
1361
|
import benchling_api_client.v2.stable.models.async_task_response
|
1296
1362
|
import benchling_api_client.v2.stable.models.async_task_status
|
1363
|
+
import benchling_api_client.v2.stable.models.audit_log_export
|
1364
|
+
import benchling_api_client.v2.stable.models.audit_log_export_format
|
1297
1365
|
import benchling_api_client.v2.stable.models.auto_annotate_aa_sequences
|
1298
1366
|
import benchling_api_client.v2.stable.models.auto_annotate_dna_sequences
|
1299
1367
|
import benchling_api_client.v2.stable.models.auto_annotate_rna_sequences
|
@@ -1468,6 +1536,10 @@ if TYPE_CHECKING:
|
|
1468
1536
|
import benchling_api_client.v2.stable.models.containers_list
|
1469
1537
|
import benchling_api_client.v2.stable.models.containers_paginated_list
|
1470
1538
|
import benchling_api_client.v2.stable.models.containers_unarchive
|
1539
|
+
import benchling_api_client.v2.stable.models.convert_to_asm
|
1540
|
+
import benchling_api_client.v2.stable.models.convert_to_asm_response_200
|
1541
|
+
import benchling_api_client.v2.stable.models.convert_to_csv
|
1542
|
+
import benchling_api_client.v2.stable.models.convert_to_csv_response_200_item
|
1471
1543
|
import benchling_api_client.v2.stable.models.create_consensus_alignment_async_task
|
1472
1544
|
import benchling_api_client.v2.stable.models.create_entity_into_registry
|
1473
1545
|
import benchling_api_client.v2.stable.models.create_nucleotide_consensus_alignment_async_task
|
@@ -1500,8 +1572,31 @@ if TYPE_CHECKING:
|
|
1500
1572
|
import benchling_api_client.v2.stable.models.custom_field
|
1501
1573
|
import benchling_api_client.v2.stable.models.custom_fields
|
1502
1574
|
import benchling_api_client.v2.stable.models.custom_notation
|
1575
|
+
import benchling_api_client.v2.stable.models.custom_notation_alias
|
1503
1576
|
import benchling_api_client.v2.stable.models.custom_notation_request
|
1504
1577
|
import benchling_api_client.v2.stable.models.custom_notations_paginated_list
|
1578
|
+
import benchling_api_client.v2.stable.models.data_frame
|
1579
|
+
import benchling_api_client.v2.stable.models.data_frame_column_metadata
|
1580
|
+
import benchling_api_client.v2.stable.models.data_frame_column_type_metadata
|
1581
|
+
import benchling_api_client.v2.stable.models.data_frame_column_type_metadata_target
|
1582
|
+
import benchling_api_client.v2.stable.models.data_frame_column_type_name_enum
|
1583
|
+
import benchling_api_client.v2.stable.models.data_frame_column_type_name_enum_name
|
1584
|
+
import benchling_api_client.v2.stable.models.data_frame_create
|
1585
|
+
import benchling_api_client.v2.stable.models.data_frame_create_manifest
|
1586
|
+
import benchling_api_client.v2.stable.models.data_frame_create_manifest_manifest_item
|
1587
|
+
import benchling_api_client.v2.stable.models.data_frame_manifest
|
1588
|
+
import benchling_api_client.v2.stable.models.data_frame_manifest_manifest_item
|
1589
|
+
import benchling_api_client.v2.stable.models.data_frame_update
|
1590
|
+
import benchling_api_client.v2.stable.models.data_frame_update_upload_status
|
1591
|
+
import benchling_api_client.v2.stable.models.dataset
|
1592
|
+
import benchling_api_client.v2.stable.models.dataset_create
|
1593
|
+
import benchling_api_client.v2.stable.models.dataset_creator
|
1594
|
+
import benchling_api_client.v2.stable.models.dataset_update
|
1595
|
+
import benchling_api_client.v2.stable.models.datasets_archival_change
|
1596
|
+
import benchling_api_client.v2.stable.models.datasets_archive
|
1597
|
+
import benchling_api_client.v2.stable.models.datasets_archive_reason
|
1598
|
+
import benchling_api_client.v2.stable.models.datasets_paginated_list
|
1599
|
+
import benchling_api_client.v2.stable.models.datasets_unarchive
|
1505
1600
|
import benchling_api_client.v2.stable.models.date_app_config_item
|
1506
1601
|
import benchling_api_client.v2.stable.models.date_app_config_item_type
|
1507
1602
|
import benchling_api_client.v2.stable.models.datetime_app_config_item
|
@@ -1636,6 +1731,8 @@ if TYPE_CHECKING:
|
|
1636
1731
|
import benchling_api_client.v2.stable.models.entry_updated_fields_event_event_type
|
1637
1732
|
import benchling_api_client.v2.stable.models.entry_updated_review_record_event
|
1638
1733
|
import benchling_api_client.v2.stable.models.entry_updated_review_record_event_event_type
|
1734
|
+
import benchling_api_client.v2.stable.models.entry_updated_review_snapshot_beta_event
|
1735
|
+
import benchling_api_client.v2.stable.models.entry_updated_review_snapshot_beta_event_event_type
|
1639
1736
|
import benchling_api_client.v2.stable.models.enzyme
|
1640
1737
|
import benchling_api_client.v2.stable.models.enzymes_paginated_list
|
1641
1738
|
import benchling_api_client.v2.stable.models.event
|
@@ -1676,6 +1773,22 @@ if TYPE_CHECKING:
|
|
1676
1773
|
import benchling_api_client.v2.stable.models.field_with_resolution
|
1677
1774
|
import benchling_api_client.v2.stable.models.fields
|
1678
1775
|
import benchling_api_client.v2.stable.models.fields_with_resolution
|
1776
|
+
import benchling_api_client.v2.stable.models.file
|
1777
|
+
import benchling_api_client.v2.stable.models.file_create
|
1778
|
+
import benchling_api_client.v2.stable.models.file_creator
|
1779
|
+
import benchling_api_client.v2.stable.models.file_status
|
1780
|
+
import benchling_api_client.v2.stable.models.file_status_upload_status
|
1781
|
+
import benchling_api_client.v2.stable.models.file_update
|
1782
|
+
import benchling_api_client.v2.stable.models.file_update_upload_status
|
1783
|
+
import benchling_api_client.v2.stable.models.file_upload_ui_block
|
1784
|
+
import benchling_api_client.v2.stable.models.file_upload_ui_block_create
|
1785
|
+
import benchling_api_client.v2.stable.models.file_upload_ui_block_type
|
1786
|
+
import benchling_api_client.v2.stable.models.file_upload_ui_block_update
|
1787
|
+
import benchling_api_client.v2.stable.models.files_archival_change
|
1788
|
+
import benchling_api_client.v2.stable.models.files_archive
|
1789
|
+
import benchling_api_client.v2.stable.models.files_archive_reason
|
1790
|
+
import benchling_api_client.v2.stable.models.files_paginated_list
|
1791
|
+
import benchling_api_client.v2.stable.models.files_unarchive
|
1679
1792
|
import benchling_api_client.v2.stable.models.find_matching_regions_async_task
|
1680
1793
|
import benchling_api_client.v2.stable.models.find_matching_regions_async_task_response
|
1681
1794
|
import benchling_api_client.v2.stable.models.find_matching_regions_async_task_response_aa_sequence_matches_item
|
@@ -1702,6 +1815,7 @@ if TYPE_CHECKING:
|
|
1702
1815
|
import benchling_api_client.v2.stable.models.generic_api_identified_app_config_item_type
|
1703
1816
|
import benchling_api_client.v2.stable.models.generic_entity
|
1704
1817
|
import benchling_api_client.v2.stable.models.generic_entity_creator
|
1818
|
+
import benchling_api_client.v2.stable.models.get_data_frame_row_data_format
|
1705
1819
|
import benchling_api_client.v2.stable.models.get_user_warehouse_logins_response_200
|
1706
1820
|
import benchling_api_client.v2.stable.models.inaccessible_resource
|
1707
1821
|
import benchling_api_client.v2.stable.models.inaccessible_resource_resource_type
|
@@ -1759,6 +1873,7 @@ if TYPE_CHECKING:
|
|
1759
1873
|
import benchling_api_client.v2.stable.models.list_containers_checkout_status
|
1760
1874
|
import benchling_api_client.v2.stable.models.list_containers_sort
|
1761
1875
|
import benchling_api_client.v2.stable.models.list_custom_entities_sort
|
1876
|
+
import benchling_api_client.v2.stable.models.list_datasets_sort
|
1762
1877
|
import benchling_api_client.v2.stable.models.list_dna_alignments_sort
|
1763
1878
|
import benchling_api_client.v2.stable.models.list_dna_oligos_sort
|
1764
1879
|
import benchling_api_client.v2.stable.models.list_dna_sequences_sort
|
@@ -1767,6 +1882,7 @@ if TYPE_CHECKING:
|
|
1767
1882
|
import benchling_api_client.v2.stable.models.list_enzymes_sort
|
1768
1883
|
import benchling_api_client.v2.stable.models.list_feature_libraries_sort
|
1769
1884
|
import benchling_api_client.v2.stable.models.list_features_match_type
|
1885
|
+
import benchling_api_client.v2.stable.models.list_files_sort
|
1770
1886
|
import benchling_api_client.v2.stable.models.list_folders_section
|
1771
1887
|
import benchling_api_client.v2.stable.models.list_folders_sort
|
1772
1888
|
import benchling_api_client.v2.stable.models.list_locations_sort
|
@@ -1780,9 +1896,11 @@ if TYPE_CHECKING:
|
|
1780
1896
|
import benchling_api_client.v2.stable.models.list_rna_oligos_sort
|
1781
1897
|
import benchling_api_client.v2.stable.models.list_rna_sequences_sort
|
1782
1898
|
import benchling_api_client.v2.stable.models.list_teams_sort
|
1899
|
+
import benchling_api_client.v2.stable.models.list_test_orders_sort
|
1783
1900
|
import benchling_api_client.v2.stable.models.list_users_sort
|
1784
1901
|
import benchling_api_client.v2.stable.models.list_workflow_flowcharts_sort
|
1785
1902
|
import benchling_api_client.v2.stable.models.list_workflow_tasks_scheduled_on
|
1903
|
+
import benchling_api_client.v2.stable.models.listing_error
|
1786
1904
|
import benchling_api_client.v2.stable.models.location
|
1787
1905
|
import benchling_api_client.v2.stable.models.location_create
|
1788
1906
|
import benchling_api_client.v2.stable.models.location_schema
|
@@ -1861,6 +1979,7 @@ if TYPE_CHECKING:
|
|
1861
1979
|
import benchling_api_client.v2.stable.models.monomers_unarchive
|
1862
1980
|
import benchling_api_client.v2.stable.models.multiple_containers_transfer
|
1863
1981
|
import benchling_api_client.v2.stable.models.multiple_containers_transfers_list
|
1982
|
+
import benchling_api_client.v2.stable.models.name_template_part
|
1864
1983
|
import benchling_api_client.v2.stable.models.naming_strategy
|
1865
1984
|
import benchling_api_client.v2.stable.models.not_found_error
|
1866
1985
|
import benchling_api_client.v2.stable.models.not_found_error_error
|
@@ -2096,6 +2215,13 @@ if TYPE_CHECKING:
|
|
2096
2215
|
import benchling_api_client.v2.stable.models.team_summary
|
2097
2216
|
import benchling_api_client.v2.stable.models.team_update
|
2098
2217
|
import benchling_api_client.v2.stable.models.teams_paginated_list
|
2218
|
+
import benchling_api_client.v2.stable.models.test_definition
|
2219
|
+
import benchling_api_client.v2.stable.models.test_order
|
2220
|
+
import benchling_api_client.v2.stable.models.test_order_bulk_update
|
2221
|
+
import benchling_api_client.v2.stable.models.test_order_status
|
2222
|
+
import benchling_api_client.v2.stable.models.test_order_update
|
2223
|
+
import benchling_api_client.v2.stable.models.test_orders_bulk_update_request
|
2224
|
+
import benchling_api_client.v2.stable.models.test_orders_paginated_list
|
2099
2225
|
import benchling_api_client.v2.stable.models.text_app_config_item
|
2100
2226
|
import benchling_api_client.v2.stable.models.text_app_config_item_type
|
2101
2227
|
import benchling_api_client.v2.stable.models.text_box_note_part
|
@@ -2247,21 +2373,33 @@ if TYPE_CHECKING:
|
|
2247
2373
|
AaSequenceBaseRequestForCreate = (
|
2248
2374
|
benchling_api_client.v2.stable.models.aa_sequence_base_request_for_create.AaSequenceBaseRequestForCreate
|
2249
2375
|
)
|
2250
|
-
AaSequenceBulkCreate =
|
2251
|
-
|
2376
|
+
AaSequenceBulkCreate = (
|
2377
|
+
benchling_api_client.v2.stable.models.aa_sequence_bulk_create.AaSequenceBulkCreate
|
2378
|
+
)
|
2379
|
+
AaSequenceBulkUpdate = (
|
2380
|
+
benchling_api_client.v2.stable.models.aa_sequence_bulk_update.AaSequenceBulkUpdate
|
2381
|
+
)
|
2252
2382
|
AaSequenceBulkUpsertRequest = (
|
2253
2383
|
benchling_api_client.v2.stable.models.aa_sequence_bulk_upsert_request.AaSequenceBulkUpsertRequest
|
2254
2384
|
)
|
2255
|
-
AaSequenceCreate =
|
2385
|
+
AaSequenceCreate = (
|
2386
|
+
benchling_api_client.v2.stable.models.aa_sequence_create.AaSequenceCreate
|
2387
|
+
)
|
2256
2388
|
AaSequenceRequestRegistryFields = (
|
2257
2389
|
benchling_api_client.v2.stable.models.aa_sequence_request_registry_fields.AaSequenceRequestRegistryFields
|
2258
2390
|
)
|
2259
|
-
AaSequenceSummary =
|
2391
|
+
AaSequenceSummary = (
|
2392
|
+
benchling_api_client.v2.stable.models.aa_sequence_summary.AaSequenceSummary
|
2393
|
+
)
|
2260
2394
|
AaSequenceSummaryEntityType = (
|
2261
2395
|
benchling_api_client.v2.stable.models.aa_sequence_summary_entity_type.AaSequenceSummaryEntityType
|
2262
2396
|
)
|
2263
|
-
AaSequenceUpdate =
|
2264
|
-
|
2397
|
+
AaSequenceUpdate = (
|
2398
|
+
benchling_api_client.v2.stable.models.aa_sequence_update.AaSequenceUpdate
|
2399
|
+
)
|
2400
|
+
AaSequenceUpsert = (
|
2401
|
+
benchling_api_client.v2.stable.models.aa_sequence_upsert.AaSequenceUpsert
|
2402
|
+
)
|
2265
2403
|
AaSequenceWithEntityType = (
|
2266
2404
|
benchling_api_client.v2.stable.models.aa_sequence_with_entity_type.AaSequenceWithEntityType
|
2267
2405
|
)
|
@@ -2271,11 +2409,15 @@ if TYPE_CHECKING:
|
|
2271
2409
|
AaSequencesArchivalChange = (
|
2272
2410
|
benchling_api_client.v2.stable.models.aa_sequences_archival_change.AaSequencesArchivalChange
|
2273
2411
|
)
|
2274
|
-
AaSequencesArchive =
|
2412
|
+
AaSequencesArchive = (
|
2413
|
+
benchling_api_client.v2.stable.models.aa_sequences_archive.AaSequencesArchive
|
2414
|
+
)
|
2275
2415
|
AaSequencesBulkCreateRequest = (
|
2276
2416
|
benchling_api_client.v2.stable.models.aa_sequences_bulk_create_request.AaSequencesBulkCreateRequest
|
2277
2417
|
)
|
2278
|
-
AaSequencesBulkGet =
|
2418
|
+
AaSequencesBulkGet = (
|
2419
|
+
benchling_api_client.v2.stable.models.aa_sequences_bulk_get.AaSequencesBulkGet
|
2420
|
+
)
|
2279
2421
|
AaSequencesBulkUpdateRequest = (
|
2280
2422
|
benchling_api_client.v2.stable.models.aa_sequences_bulk_update_request.AaSequencesBulkUpdateRequest
|
2281
2423
|
)
|
@@ -2306,14 +2448,18 @@ if TYPE_CHECKING:
|
|
2306
2448
|
AaSequencesSearchBasesSort = (
|
2307
2449
|
benchling_api_client.v2.stable.models.aa_sequences_search_bases_sort.AaSequencesSearchBasesSort
|
2308
2450
|
)
|
2309
|
-
AaSequencesUnarchive =
|
2451
|
+
AaSequencesUnarchive = (
|
2452
|
+
benchling_api_client.v2.stable.models.aa_sequences_unarchive.AaSequencesUnarchive
|
2453
|
+
)
|
2310
2454
|
AIGGenerateInputAsyncTask = (
|
2311
2455
|
benchling_api_client.v2.stable.models.aig_generate_input_async_task.AIGGenerateInputAsyncTask
|
2312
2456
|
)
|
2313
2457
|
AlignedNucleotideSequence = (
|
2314
2458
|
benchling_api_client.v2.stable.models.aligned_nucleotide_sequence.AlignedNucleotideSequence
|
2315
2459
|
)
|
2316
|
-
AlignedSequence =
|
2460
|
+
AlignedSequence = (
|
2461
|
+
benchling_api_client.v2.stable.models.aligned_sequence.AlignedSequence
|
2462
|
+
)
|
2317
2463
|
AOPProcessOutputAsyncTask = (
|
2318
2464
|
benchling_api_client.v2.stable.models.aop_process_output_async_task.AOPProcessOutputAsyncTask
|
2319
2465
|
)
|
@@ -2323,32 +2469,54 @@ if TYPE_CHECKING:
|
|
2323
2469
|
AppCanvasBaseArchiveRecord = (
|
2324
2470
|
benchling_api_client.v2.stable.models.app_canvas_base_archive_record.AppCanvasBaseArchiveRecord
|
2325
2471
|
)
|
2326
|
-
AppCanvasCreate =
|
2327
|
-
|
2472
|
+
AppCanvasCreate = (
|
2473
|
+
benchling_api_client.v2.stable.models.app_canvas_create.AppCanvasCreate
|
2474
|
+
)
|
2475
|
+
AppCanvasCreateBase = (
|
2476
|
+
benchling_api_client.v2.stable.models.app_canvas_create_base.AppCanvasCreateBase
|
2477
|
+
)
|
2328
2478
|
AppCanvasCreateUiBlockList = (
|
2329
2479
|
benchling_api_client.v2.stable.models.app_canvas_create_ui_block_list.AppCanvasCreateUiBlockList
|
2330
2480
|
)
|
2331
2481
|
AppCanvasLeafNodeUiBlockList = (
|
2332
2482
|
benchling_api_client.v2.stable.models.app_canvas_leaf_node_ui_block_list.AppCanvasLeafNodeUiBlockList
|
2333
2483
|
)
|
2334
|
-
|
2335
|
-
|
2336
|
-
|
2484
|
+
AppCanvasNotePart = (
|
2485
|
+
benchling_api_client.v2.stable.models.app_canvas_note_part.AppCanvasNotePart
|
2486
|
+
)
|
2487
|
+
AppCanvasNotePartType = (
|
2488
|
+
benchling_api_client.v2.stable.models.app_canvas_note_part_type.AppCanvasNotePartType
|
2489
|
+
)
|
2490
|
+
AppCanvasUiBlockList = (
|
2491
|
+
benchling_api_client.v2.stable.models.app_canvas_ui_block_list.AppCanvasUiBlockList
|
2492
|
+
)
|
2493
|
+
AppCanvasUpdate = (
|
2494
|
+
benchling_api_client.v2.stable.models.app_canvas_update.AppCanvasUpdate
|
2495
|
+
)
|
2496
|
+
AppCanvasUpdateBase = (
|
2497
|
+
benchling_api_client.v2.stable.models.app_canvas_update_base.AppCanvasUpdateBase
|
2498
|
+
)
|
2337
2499
|
AppCanvasUpdateUiBlockList = (
|
2338
2500
|
benchling_api_client.v2.stable.models.app_canvas_update_ui_block_list.AppCanvasUpdateUiBlockList
|
2339
2501
|
)
|
2340
|
-
AppCanvasWriteBase =
|
2502
|
+
AppCanvasWriteBase = (
|
2503
|
+
benchling_api_client.v2.stable.models.app_canvas_write_base.AppCanvasWriteBase
|
2504
|
+
)
|
2341
2505
|
AppCanvasesArchivalChange = (
|
2342
2506
|
benchling_api_client.v2.stable.models.app_canvases_archival_change.AppCanvasesArchivalChange
|
2343
2507
|
)
|
2344
|
-
AppCanvasesArchive =
|
2508
|
+
AppCanvasesArchive = (
|
2509
|
+
benchling_api_client.v2.stable.models.app_canvases_archive.AppCanvasesArchive
|
2510
|
+
)
|
2345
2511
|
AppCanvasesArchiveReason = (
|
2346
2512
|
benchling_api_client.v2.stable.models.app_canvases_archive_reason.AppCanvasesArchiveReason
|
2347
2513
|
)
|
2348
2514
|
AppCanvasesPaginatedList = (
|
2349
2515
|
benchling_api_client.v2.stable.models.app_canvases_paginated_list.AppCanvasesPaginatedList
|
2350
2516
|
)
|
2351
|
-
AppCanvasesUnarchive =
|
2517
|
+
AppCanvasesUnarchive = (
|
2518
|
+
benchling_api_client.v2.stable.models.app_canvases_unarchive.AppCanvasesUnarchive
|
2519
|
+
)
|
2352
2520
|
AppConfigItem = benchling_api_client.v2.stable.models.app_config_item.AppConfigItem
|
2353
2521
|
AppConfigItemApiMixin = (
|
2354
2522
|
benchling_api_client.v2.stable.models.app_config_item_api_mixin.AppConfigItemApiMixin
|
@@ -2377,7 +2545,9 @@ if TYPE_CHECKING:
|
|
2377
2545
|
AppConfigItemBulkUpdateMixin = (
|
2378
2546
|
benchling_api_client.v2.stable.models.app_config_item_bulk_update_mixin.AppConfigItemBulkUpdateMixin
|
2379
2547
|
)
|
2380
|
-
AppConfigItemCreate =
|
2548
|
+
AppConfigItemCreate = (
|
2549
|
+
benchling_api_client.v2.stable.models.app_config_item_create.AppConfigItemCreate
|
2550
|
+
)
|
2381
2551
|
AppConfigItemCreateMixin = (
|
2382
2552
|
benchling_api_client.v2.stable.models.app_config_item_create_mixin.AppConfigItemCreateMixin
|
2383
2553
|
)
|
@@ -2471,7 +2641,9 @@ if TYPE_CHECKING:
|
|
2471
2641
|
AppConfigItemJsonUpdateType = (
|
2472
2642
|
benchling_api_client.v2.stable.models.app_config_item_json_update_type.AppConfigItemJsonUpdateType
|
2473
2643
|
)
|
2474
|
-
AppConfigItemUpdate =
|
2644
|
+
AppConfigItemUpdate = (
|
2645
|
+
benchling_api_client.v2.stable.models.app_config_item_update.AppConfigItemUpdate
|
2646
|
+
)
|
2475
2647
|
AppConfigItemsBulkCreateRequest = (
|
2476
2648
|
benchling_api_client.v2.stable.models.app_config_items_bulk_create_request.AppConfigItemsBulkCreateRequest
|
2477
2649
|
)
|
@@ -2483,16 +2655,24 @@ if TYPE_CHECKING:
|
|
2483
2655
|
)
|
2484
2656
|
AppSession = benchling_api_client.v2.stable.models.app_session.AppSession
|
2485
2657
|
AppSessionApp = benchling_api_client.v2.stable.models.app_session_app.AppSessionApp
|
2486
|
-
AppSessionCreate =
|
2487
|
-
|
2658
|
+
AppSessionCreate = (
|
2659
|
+
benchling_api_client.v2.stable.models.app_session_create.AppSessionCreate
|
2660
|
+
)
|
2661
|
+
AppSessionMessage = (
|
2662
|
+
benchling_api_client.v2.stable.models.app_session_message.AppSessionMessage
|
2663
|
+
)
|
2488
2664
|
AppSessionMessageCreate = (
|
2489
2665
|
benchling_api_client.v2.stable.models.app_session_message_create.AppSessionMessageCreate
|
2490
2666
|
)
|
2491
2667
|
AppSessionMessageStyle = (
|
2492
2668
|
benchling_api_client.v2.stable.models.app_session_message_style.AppSessionMessageStyle
|
2493
2669
|
)
|
2494
|
-
AppSessionStatus =
|
2495
|
-
|
2670
|
+
AppSessionStatus = (
|
2671
|
+
benchling_api_client.v2.stable.models.app_session_status.AppSessionStatus
|
2672
|
+
)
|
2673
|
+
AppSessionUpdate = (
|
2674
|
+
benchling_api_client.v2.stable.models.app_session_update.AppSessionUpdate
|
2675
|
+
)
|
2496
2676
|
AppSessionUpdateStatus = (
|
2497
2677
|
benchling_api_client.v2.stable.models.app_session_update_status.AppSessionUpdateStatus
|
2498
2678
|
)
|
@@ -2501,16 +2681,22 @@ if TYPE_CHECKING:
|
|
2501
2681
|
)
|
2502
2682
|
AppSummary = benchling_api_client.v2.stable.models.app_summary.AppSummary
|
2503
2683
|
ArchiveRecord = benchling_api_client.v2.stable.models.archive_record.ArchiveRecord
|
2504
|
-
ArchiveRecordSet =
|
2684
|
+
ArchiveRecordSet = (
|
2685
|
+
benchling_api_client.v2.stable.models.archive_record_set.ArchiveRecordSet
|
2686
|
+
)
|
2505
2687
|
ArrayElementAppConfigItem = (
|
2506
2688
|
benchling_api_client.v2.stable.models.array_element_app_config_item.ArrayElementAppConfigItem
|
2507
2689
|
)
|
2508
2690
|
ArrayElementAppConfigItemType = (
|
2509
2691
|
benchling_api_client.v2.stable.models.array_element_app_config_item_type.ArrayElementAppConfigItemType
|
2510
2692
|
)
|
2511
|
-
AssayFieldsCreate =
|
2693
|
+
AssayFieldsCreate = (
|
2694
|
+
benchling_api_client.v2.stable.models.assay_fields_create.AssayFieldsCreate
|
2695
|
+
)
|
2512
2696
|
AssayResult = benchling_api_client.v2.stable.models.assay_result.AssayResult
|
2513
|
-
AssayResultCreate =
|
2697
|
+
AssayResultCreate = (
|
2698
|
+
benchling_api_client.v2.stable.models.assay_result_create.AssayResultCreate
|
2699
|
+
)
|
2514
2700
|
AssayResultCreateFieldValidation = (
|
2515
2701
|
benchling_api_client.v2.stable.models.assay_result_create_field_validation.AssayResultCreateFieldValidation
|
2516
2702
|
)
|
@@ -2523,7 +2709,9 @@ if TYPE_CHECKING:
|
|
2523
2709
|
AssayResultIdsResponse = (
|
2524
2710
|
benchling_api_client.v2.stable.models.assay_result_ids_response.AssayResultIdsResponse
|
2525
2711
|
)
|
2526
|
-
AssayResultSchema =
|
2712
|
+
AssayResultSchema = (
|
2713
|
+
benchling_api_client.v2.stable.models.assay_result_schema.AssayResultSchema
|
2714
|
+
)
|
2527
2715
|
AssayResultSchemaType = (
|
2528
2716
|
benchling_api_client.v2.stable.models.assay_result_schema_type.AssayResultSchemaType
|
2529
2717
|
)
|
@@ -2533,7 +2721,9 @@ if TYPE_CHECKING:
|
|
2533
2721
|
AssayResultTransactionCreateResponse = (
|
2534
2722
|
benchling_api_client.v2.stable.models.assay_result_transaction_create_response.AssayResultTransactionCreateResponse
|
2535
2723
|
)
|
2536
|
-
AssayResultsArchive =
|
2724
|
+
AssayResultsArchive = (
|
2725
|
+
benchling_api_client.v2.stable.models.assay_results_archive.AssayResultsArchive
|
2726
|
+
)
|
2537
2727
|
AssayResultsArchiveReason = (
|
2538
2728
|
benchling_api_client.v2.stable.models.assay_results_archive_reason.AssayResultsArchiveReason
|
2539
2729
|
)
|
@@ -2543,7 +2733,9 @@ if TYPE_CHECKING:
|
|
2543
2733
|
AssayResultsBulkCreateRequest = (
|
2544
2734
|
benchling_api_client.v2.stable.models.assay_results_bulk_create_request.AssayResultsBulkCreateRequest
|
2545
2735
|
)
|
2546
|
-
AssayResultsBulkGet =
|
2736
|
+
AssayResultsBulkGet = (
|
2737
|
+
benchling_api_client.v2.stable.models.assay_results_bulk_get.AssayResultsBulkGet
|
2738
|
+
)
|
2547
2739
|
AssayResultsCreateErrorResponse = (
|
2548
2740
|
benchling_api_client.v2.stable.models.assay_results_create_error_response.AssayResultsCreateErrorResponse
|
2549
2741
|
)
|
@@ -2566,25 +2758,39 @@ if TYPE_CHECKING:
|
|
2566
2758
|
benchling_api_client.v2.stable.models.assay_results_paginated_list.AssayResultsPaginatedList
|
2567
2759
|
)
|
2568
2760
|
AssayRun = benchling_api_client.v2.stable.models.assay_run.AssayRun
|
2569
|
-
AssayRunCreate =
|
2570
|
-
|
2761
|
+
AssayRunCreate = (
|
2762
|
+
benchling_api_client.v2.stable.models.assay_run_create.AssayRunCreate
|
2763
|
+
)
|
2764
|
+
AssayRunCreatedEvent = (
|
2765
|
+
benchling_api_client.v2.stable.models.assay_run_created_event.AssayRunCreatedEvent
|
2766
|
+
)
|
2571
2767
|
AssayRunCreatedEventEventType = (
|
2572
2768
|
benchling_api_client.v2.stable.models.assay_run_created_event_event_type.AssayRunCreatedEventEventType
|
2573
2769
|
)
|
2574
|
-
AssayRunNotePart =
|
2575
|
-
|
2576
|
-
|
2770
|
+
AssayRunNotePart = (
|
2771
|
+
benchling_api_client.v2.stable.models.assay_run_note_part.AssayRunNotePart
|
2772
|
+
)
|
2773
|
+
AssayRunNotePartType = (
|
2774
|
+
benchling_api_client.v2.stable.models.assay_run_note_part_type.AssayRunNotePartType
|
2775
|
+
)
|
2776
|
+
AssayRunSchema = (
|
2777
|
+
benchling_api_client.v2.stable.models.assay_run_schema.AssayRunSchema
|
2778
|
+
)
|
2577
2779
|
AssayRunSchemaAutomationInputFileConfigsItem = (
|
2578
2780
|
benchling_api_client.v2.stable.models.assay_run_schema_automation_input_file_configs_item.AssayRunSchemaAutomationInputFileConfigsItem
|
2579
2781
|
)
|
2580
2782
|
AssayRunSchemaAutomationOutputFileConfigsItem = (
|
2581
2783
|
benchling_api_client.v2.stable.models.assay_run_schema_automation_output_file_configs_item.AssayRunSchemaAutomationOutputFileConfigsItem
|
2582
2784
|
)
|
2583
|
-
AssayRunSchemaType =
|
2785
|
+
AssayRunSchemaType = (
|
2786
|
+
benchling_api_client.v2.stable.models.assay_run_schema_type.AssayRunSchemaType
|
2787
|
+
)
|
2584
2788
|
AssayRunSchemasPaginatedList = (
|
2585
2789
|
benchling_api_client.v2.stable.models.assay_run_schemas_paginated_list.AssayRunSchemasPaginatedList
|
2586
2790
|
)
|
2587
|
-
AssayRunUpdate =
|
2791
|
+
AssayRunUpdate = (
|
2792
|
+
benchling_api_client.v2.stable.models.assay_run_update.AssayRunUpdate
|
2793
|
+
)
|
2588
2794
|
AssayRunUpdatedFieldsEvent = (
|
2589
2795
|
benchling_api_client.v2.stable.models.assay_run_updated_fields_event.AssayRunUpdatedFieldsEvent
|
2590
2796
|
)
|
@@ -2597,7 +2803,9 @@ if TYPE_CHECKING:
|
|
2597
2803
|
AssayRunsArchivalChange = (
|
2598
2804
|
benchling_api_client.v2.stable.models.assay_runs_archival_change.AssayRunsArchivalChange
|
2599
2805
|
)
|
2600
|
-
AssayRunsArchive =
|
2806
|
+
AssayRunsArchive = (
|
2807
|
+
benchling_api_client.v2.stable.models.assay_runs_archive.AssayRunsArchive
|
2808
|
+
)
|
2601
2809
|
AssayRunsArchiveReason = (
|
2602
2810
|
benchling_api_client.v2.stable.models.assay_runs_archive_reason.AssayRunsArchiveReason
|
2603
2811
|
)
|
@@ -2622,16 +2830,35 @@ if TYPE_CHECKING:
|
|
2622
2830
|
AssayRunsBulkCreateResponseErrors = (
|
2623
2831
|
benchling_api_client.v2.stable.models.assay_runs_bulk_create_response_errors.AssayRunsBulkCreateResponseErrors
|
2624
2832
|
)
|
2625
|
-
AssayRunsBulkGet =
|
2833
|
+
AssayRunsBulkGet = (
|
2834
|
+
benchling_api_client.v2.stable.models.assay_runs_bulk_get.AssayRunsBulkGet
|
2835
|
+
)
|
2626
2836
|
AssayRunsPaginatedList = (
|
2627
2837
|
benchling_api_client.v2.stable.models.assay_runs_paginated_list.AssayRunsPaginatedList
|
2628
2838
|
)
|
2629
|
-
AssayRunsUnarchive =
|
2839
|
+
AssayRunsUnarchive = (
|
2840
|
+
benchling_api_client.v2.stable.models.assay_runs_unarchive.AssayRunsUnarchive
|
2841
|
+
)
|
2630
2842
|
AsyncTask = benchling_api_client.v2.stable.models.async_task.AsyncTask
|
2631
|
-
AsyncTaskErrors =
|
2843
|
+
AsyncTaskErrors = (
|
2844
|
+
benchling_api_client.v2.stable.models.async_task_errors.AsyncTaskErrors
|
2845
|
+
)
|
2846
|
+
AsyncTaskErrorsItem = (
|
2847
|
+
benchling_api_client.v2.stable.models.async_task_errors_item.AsyncTaskErrorsItem
|
2848
|
+
)
|
2632
2849
|
AsyncTaskLink = benchling_api_client.v2.stable.models.async_task_link.AsyncTaskLink
|
2633
|
-
AsyncTaskResponse =
|
2634
|
-
|
2850
|
+
AsyncTaskResponse = (
|
2851
|
+
benchling_api_client.v2.stable.models.async_task_response.AsyncTaskResponse
|
2852
|
+
)
|
2853
|
+
AsyncTaskStatus = (
|
2854
|
+
benchling_api_client.v2.stable.models.async_task_status.AsyncTaskStatus
|
2855
|
+
)
|
2856
|
+
AuditLogExport = (
|
2857
|
+
benchling_api_client.v2.stable.models.audit_log_export.AuditLogExport
|
2858
|
+
)
|
2859
|
+
AuditLogExportFormat = (
|
2860
|
+
benchling_api_client.v2.stable.models.audit_log_export_format.AuditLogExportFormat
|
2861
|
+
)
|
2635
2862
|
AutoAnnotateAaSequences = (
|
2636
2863
|
benchling_api_client.v2.stable.models.auto_annotate_aa_sequences.AutoAnnotateAaSequences
|
2637
2864
|
)
|
@@ -2644,22 +2871,30 @@ if TYPE_CHECKING:
|
|
2644
2871
|
AutofillPartsAsyncTask = (
|
2645
2872
|
benchling_api_client.v2.stable.models.autofill_parts_async_task.AutofillPartsAsyncTask
|
2646
2873
|
)
|
2647
|
-
AutofillRnaSequences =
|
2648
|
-
|
2874
|
+
AutofillRnaSequences = (
|
2875
|
+
benchling_api_client.v2.stable.models.autofill_rna_sequences.AutofillRnaSequences
|
2876
|
+
)
|
2877
|
+
AutofillSequences = (
|
2878
|
+
benchling_api_client.v2.stable.models.autofill_sequences.AutofillSequences
|
2879
|
+
)
|
2649
2880
|
AutofillTranscriptionsAsyncTask = (
|
2650
2881
|
benchling_api_client.v2.stable.models.autofill_transcriptions_async_task.AutofillTranscriptionsAsyncTask
|
2651
2882
|
)
|
2652
2883
|
AutofillTranslationsAsyncTask = (
|
2653
2884
|
benchling_api_client.v2.stable.models.autofill_translations_async_task.AutofillTranslationsAsyncTask
|
2654
2885
|
)
|
2655
|
-
AutomationFile =
|
2886
|
+
AutomationFile = (
|
2887
|
+
benchling_api_client.v2.stable.models.automation_file.AutomationFile
|
2888
|
+
)
|
2656
2889
|
AutomationFileAutomationFileConfig = (
|
2657
2890
|
benchling_api_client.v2.stable.models.automation_file_automation_file_config.AutomationFileAutomationFileConfig
|
2658
2891
|
)
|
2659
2892
|
AutomationFileInputsPaginatedList = (
|
2660
2893
|
benchling_api_client.v2.stable.models.automation_file_inputs_paginated_list.AutomationFileInputsPaginatedList
|
2661
2894
|
)
|
2662
|
-
AutomationFileStatus =
|
2895
|
+
AutomationFileStatus = (
|
2896
|
+
benchling_api_client.v2.stable.models.automation_file_status.AutomationFileStatus
|
2897
|
+
)
|
2663
2898
|
AutomationInputGenerator = (
|
2664
2899
|
benchling_api_client.v2.stable.models.automation_input_generator.AutomationInputGenerator
|
2665
2900
|
)
|
@@ -2718,15 +2953,21 @@ if TYPE_CHECKING:
|
|
2718
2953
|
BackTranslateHairpinParameters = (
|
2719
2954
|
benchling_api_client.v2.stable.models.back_translate_hairpin_parameters.BackTranslateHairpinParameters
|
2720
2955
|
)
|
2721
|
-
BadRequestError =
|
2722
|
-
|
2956
|
+
BadRequestError = (
|
2957
|
+
benchling_api_client.v2.stable.models.bad_request_error.BadRequestError
|
2958
|
+
)
|
2959
|
+
BadRequestErrorBulk = (
|
2960
|
+
benchling_api_client.v2.stable.models.bad_request_error_bulk.BadRequestErrorBulk
|
2961
|
+
)
|
2723
2962
|
BadRequestErrorBulkError = (
|
2724
2963
|
benchling_api_client.v2.stable.models.bad_request_error_bulk_error.BadRequestErrorBulkError
|
2725
2964
|
)
|
2726
2965
|
BadRequestErrorBulkErrorErrorsItem = (
|
2727
2966
|
benchling_api_client.v2.stable.models.bad_request_error_bulk_error_errors_item.BadRequestErrorBulkErrorErrorsItem
|
2728
2967
|
)
|
2729
|
-
BadRequestErrorError =
|
2968
|
+
BadRequestErrorError = (
|
2969
|
+
benchling_api_client.v2.stable.models.bad_request_error_error.BadRequestErrorError
|
2970
|
+
)
|
2730
2971
|
BadRequestErrorErrorType = (
|
2731
2972
|
benchling_api_client.v2.stable.models.bad_request_error_error_type.BadRequestErrorErrorType
|
2732
2973
|
)
|
@@ -2737,12 +2978,18 @@ if TYPE_CHECKING:
|
|
2737
2978
|
benchling_api_client.v2.stable.models.barcode_validation_results.BarcodeValidationResults
|
2738
2979
|
)
|
2739
2980
|
BarcodesList = benchling_api_client.v2.stable.models.barcodes_list.BarcodesList
|
2740
|
-
BaseAppConfigItem =
|
2741
|
-
|
2981
|
+
BaseAppConfigItem = (
|
2982
|
+
benchling_api_client.v2.stable.models.base_app_config_item.BaseAppConfigItem
|
2983
|
+
)
|
2984
|
+
BaseAssaySchema = (
|
2985
|
+
benchling_api_client.v2.stable.models.base_assay_schema.BaseAssaySchema
|
2986
|
+
)
|
2742
2987
|
BaseAssaySchemaOrganization = (
|
2743
2988
|
benchling_api_client.v2.stable.models.base_assay_schema_organization.BaseAssaySchemaOrganization
|
2744
2989
|
)
|
2745
|
-
BaseDropdownUIBlock =
|
2990
|
+
BaseDropdownUIBlock = (
|
2991
|
+
benchling_api_client.v2.stable.models.base_dropdown_ui_block.BaseDropdownUIBlock
|
2992
|
+
)
|
2746
2993
|
BaseError = benchling_api_client.v2.stable.models.base_error.BaseError
|
2747
2994
|
BaseNotePart = benchling_api_client.v2.stable.models.base_note_part.BaseNotePart
|
2748
2995
|
BaseSearchInputUIBlock = (
|
@@ -2756,20 +3003,28 @@ if TYPE_CHECKING:
|
|
2756
3003
|
benchling_api_client.v2.stable.models.batch_or_inaccessible_resource.BatchOrInaccessibleResource
|
2757
3004
|
)
|
2758
3005
|
BatchSchema = benchling_api_client.v2.stable.models.batch_schema.BatchSchema
|
2759
|
-
BatchSchemasList =
|
3006
|
+
BatchSchemasList = (
|
3007
|
+
benchling_api_client.v2.stable.models.batch_schemas_list.BatchSchemasList
|
3008
|
+
)
|
2760
3009
|
BatchSchemasPaginatedList = (
|
2761
3010
|
benchling_api_client.v2.stable.models.batch_schemas_paginated_list.BatchSchemasPaginatedList
|
2762
3011
|
)
|
2763
3012
|
BenchlingApp = benchling_api_client.v2.stable.models.benchling_app.BenchlingApp
|
2764
|
-
BenchlingAppCreate =
|
3013
|
+
BenchlingAppCreate = (
|
3014
|
+
benchling_api_client.v2.stable.models.benchling_app_create.BenchlingAppCreate
|
3015
|
+
)
|
2765
3016
|
BenchlingAppDefinitionSummary = (
|
2766
3017
|
benchling_api_client.v2.stable.models.benchling_app_definition_summary.BenchlingAppDefinitionSummary
|
2767
3018
|
)
|
2768
|
-
BenchlingAppUpdate =
|
3019
|
+
BenchlingAppUpdate = (
|
3020
|
+
benchling_api_client.v2.stable.models.benchling_app_update.BenchlingAppUpdate
|
3021
|
+
)
|
2769
3022
|
BenchlingAppsArchivalChange = (
|
2770
3023
|
benchling_api_client.v2.stable.models.benchling_apps_archival_change.BenchlingAppsArchivalChange
|
2771
3024
|
)
|
2772
|
-
BenchlingAppsArchive =
|
3025
|
+
BenchlingAppsArchive = (
|
3026
|
+
benchling_api_client.v2.stable.models.benchling_apps_archive.BenchlingAppsArchive
|
3027
|
+
)
|
2773
3028
|
BenchlingAppsArchiveReason = (
|
2774
3029
|
benchling_api_client.v2.stable.models.benchling_apps_archive_reason.BenchlingAppsArchiveReason
|
2775
3030
|
)
|
@@ -2782,18 +3037,28 @@ if TYPE_CHECKING:
|
|
2782
3037
|
Blob = benchling_api_client.v2.stable.models.blob.Blob
|
2783
3038
|
BlobComplete = benchling_api_client.v2.stable.models.blob_complete.BlobComplete
|
2784
3039
|
BlobCreate = benchling_api_client.v2.stable.models.blob_create.BlobCreate
|
2785
|
-
BlobCreateType =
|
2786
|
-
|
3040
|
+
BlobCreateType = (
|
3041
|
+
benchling_api_client.v2.stable.models.blob_create_type.BlobCreateType
|
3042
|
+
)
|
3043
|
+
BlobMultipartCreate = (
|
3044
|
+
benchling_api_client.v2.stable.models.blob_multipart_create.BlobMultipartCreate
|
3045
|
+
)
|
2787
3046
|
BlobMultipartCreateType = (
|
2788
3047
|
benchling_api_client.v2.stable.models.blob_multipart_create_type.BlobMultipartCreateType
|
2789
3048
|
)
|
2790
3049
|
BlobPart = benchling_api_client.v2.stable.models.blob_part.BlobPart
|
2791
|
-
BlobPartCreate =
|
3050
|
+
BlobPartCreate = (
|
3051
|
+
benchling_api_client.v2.stable.models.blob_part_create.BlobPartCreate
|
3052
|
+
)
|
2792
3053
|
BlobType = benchling_api_client.v2.stable.models.blob_type.BlobType
|
2793
|
-
BlobUploadStatus =
|
3054
|
+
BlobUploadStatus = (
|
3055
|
+
benchling_api_client.v2.stable.models.blob_upload_status.BlobUploadStatus
|
3056
|
+
)
|
2794
3057
|
BlobUrl = benchling_api_client.v2.stable.models.blob_url.BlobUrl
|
2795
3058
|
BlobsBulkGet = benchling_api_client.v2.stable.models.blobs_bulk_get.BlobsBulkGet
|
2796
|
-
BooleanAppConfigItem =
|
3059
|
+
BooleanAppConfigItem = (
|
3060
|
+
benchling_api_client.v2.stable.models.boolean_app_config_item.BooleanAppConfigItem
|
3061
|
+
)
|
2797
3062
|
BooleanAppConfigItemType = (
|
2798
3063
|
benchling_api_client.v2.stable.models.boolean_app_config_item_type.BooleanAppConfigItemType
|
2799
3064
|
)
|
@@ -2813,17 +3078,27 @@ if TYPE_CHECKING:
|
|
2813
3078
|
benchling_api_client.v2.stable.models.box_schema_container_schema.BoxSchemaContainerSchema
|
2814
3079
|
)
|
2815
3080
|
BoxSchemaType = benchling_api_client.v2.stable.models.box_schema_type.BoxSchemaType
|
2816
|
-
BoxSchemasList =
|
3081
|
+
BoxSchemasList = (
|
3082
|
+
benchling_api_client.v2.stable.models.box_schemas_list.BoxSchemasList
|
3083
|
+
)
|
2817
3084
|
BoxSchemasPaginatedList = (
|
2818
3085
|
benchling_api_client.v2.stable.models.box_schemas_paginated_list.BoxSchemasPaginatedList
|
2819
3086
|
)
|
2820
3087
|
BoxUpdate = benchling_api_client.v2.stable.models.box_update.BoxUpdate
|
2821
|
-
BoxesArchivalChange =
|
3088
|
+
BoxesArchivalChange = (
|
3089
|
+
benchling_api_client.v2.stable.models.boxes_archival_change.BoxesArchivalChange
|
3090
|
+
)
|
2822
3091
|
BoxesArchive = benchling_api_client.v2.stable.models.boxes_archive.BoxesArchive
|
2823
|
-
BoxesArchiveReason =
|
3092
|
+
BoxesArchiveReason = (
|
3093
|
+
benchling_api_client.v2.stable.models.boxes_archive_reason.BoxesArchiveReason
|
3094
|
+
)
|
2824
3095
|
BoxesBulkGet = benchling_api_client.v2.stable.models.boxes_bulk_get.BoxesBulkGet
|
2825
|
-
BoxesPaginatedList =
|
2826
|
-
|
3096
|
+
BoxesPaginatedList = (
|
3097
|
+
benchling_api_client.v2.stable.models.boxes_paginated_list.BoxesPaginatedList
|
3098
|
+
)
|
3099
|
+
BoxesUnarchive = (
|
3100
|
+
benchling_api_client.v2.stable.models.boxes_unarchive.BoxesUnarchive
|
3101
|
+
)
|
2827
3102
|
BulkCreateAaSequencesAsyncTask = (
|
2828
3103
|
benchling_api_client.v2.stable.models.bulk_create_aa_sequences_async_task.BulkCreateAaSequencesAsyncTask
|
2829
3104
|
)
|
@@ -2918,26 +3193,54 @@ if TYPE_CHECKING:
|
|
2918
3193
|
benchling_api_client.v2.stable.models.bulk_update_rna_sequences_async_task_response.BulkUpdateRnaSequencesAsyncTaskResponse
|
2919
3194
|
)
|
2920
3195
|
ButtonUiBlock = benchling_api_client.v2.stable.models.button_ui_block.ButtonUiBlock
|
2921
|
-
ButtonUiBlockCreate =
|
2922
|
-
|
2923
|
-
|
3196
|
+
ButtonUiBlockCreate = (
|
3197
|
+
benchling_api_client.v2.stable.models.button_ui_block_create.ButtonUiBlockCreate
|
3198
|
+
)
|
3199
|
+
ButtonUiBlockType = (
|
3200
|
+
benchling_api_client.v2.stable.models.button_ui_block_type.ButtonUiBlockType
|
3201
|
+
)
|
3202
|
+
ButtonUiBlockUpdate = (
|
3203
|
+
benchling_api_client.v2.stable.models.button_ui_block_update.ButtonUiBlockUpdate
|
3204
|
+
)
|
2924
3205
|
ChartNotePart = benchling_api_client.v2.stable.models.chart_note_part.ChartNotePart
|
2925
|
-
ChartNotePartChart =
|
2926
|
-
|
2927
|
-
|
2928
|
-
|
2929
|
-
|
2930
|
-
|
3206
|
+
ChartNotePartChart = (
|
3207
|
+
benchling_api_client.v2.stable.models.chart_note_part_chart.ChartNotePartChart
|
3208
|
+
)
|
3209
|
+
ChartNotePartType = (
|
3210
|
+
benchling_api_client.v2.stable.models.chart_note_part_type.ChartNotePartType
|
3211
|
+
)
|
3212
|
+
CheckboxNotePart = (
|
3213
|
+
benchling_api_client.v2.stable.models.checkbox_note_part.CheckboxNotePart
|
3214
|
+
)
|
3215
|
+
CheckboxNotePartType = (
|
3216
|
+
benchling_api_client.v2.stable.models.checkbox_note_part_type.CheckboxNotePartType
|
3217
|
+
)
|
3218
|
+
CheckoutRecord = (
|
3219
|
+
benchling_api_client.v2.stable.models.checkout_record.CheckoutRecord
|
3220
|
+
)
|
3221
|
+
CheckoutRecordStatus = (
|
3222
|
+
benchling_api_client.v2.stable.models.checkout_record_status.CheckoutRecordStatus
|
3223
|
+
)
|
2931
3224
|
ChipUiBlock = benchling_api_client.v2.stable.models.chip_ui_block.ChipUiBlock
|
2932
|
-
ChipUiBlockCreate =
|
2933
|
-
|
2934
|
-
|
2935
|
-
|
3225
|
+
ChipUiBlockCreate = (
|
3226
|
+
benchling_api_client.v2.stable.models.chip_ui_block_create.ChipUiBlockCreate
|
3227
|
+
)
|
3228
|
+
ChipUiBlockType = (
|
3229
|
+
benchling_api_client.v2.stable.models.chip_ui_block_type.ChipUiBlockType
|
3230
|
+
)
|
3231
|
+
ChipUiBlockUpdate = (
|
3232
|
+
benchling_api_client.v2.stable.models.chip_ui_block_update.ChipUiBlockUpdate
|
3233
|
+
)
|
3234
|
+
CodonUsageTable = (
|
3235
|
+
benchling_api_client.v2.stable.models.codon_usage_table.CodonUsageTable
|
3236
|
+
)
|
2936
3237
|
CodonUsageTablesPaginatedList = (
|
2937
3238
|
benchling_api_client.v2.stable.models.codon_usage_tables_paginated_list.CodonUsageTablesPaginatedList
|
2938
3239
|
)
|
2939
3240
|
ConflictError = benchling_api_client.v2.stable.models.conflict_error.ConflictError
|
2940
|
-
ConflictErrorError =
|
3241
|
+
ConflictErrorError = (
|
3242
|
+
benchling_api_client.v2.stable.models.conflict_error_error.ConflictErrorError
|
3243
|
+
)
|
2941
3244
|
ConflictErrorErrorConflictsItem = (
|
2942
3245
|
benchling_api_client.v2.stable.models.conflict_error_error_conflicts_item.ConflictErrorErrorConflictsItem
|
2943
3246
|
)
|
@@ -2945,41 +3248,63 @@ if TYPE_CHECKING:
|
|
2945
3248
|
ContainerBulkUpdateItem = (
|
2946
3249
|
benchling_api_client.v2.stable.models.container_bulk_update_item.ContainerBulkUpdateItem
|
2947
3250
|
)
|
2948
|
-
ContainerContent =
|
3251
|
+
ContainerContent = (
|
3252
|
+
benchling_api_client.v2.stable.models.container_content.ContainerContent
|
3253
|
+
)
|
2949
3254
|
ContainerContentUpdate = (
|
2950
3255
|
benchling_api_client.v2.stable.models.container_content_update.ContainerContentUpdate
|
2951
3256
|
)
|
2952
3257
|
ContainerContentsList = (
|
2953
3258
|
benchling_api_client.v2.stable.models.container_contents_list.ContainerContentsList
|
2954
3259
|
)
|
2955
|
-
ContainerCreate =
|
2956
|
-
|
2957
|
-
|
3260
|
+
ContainerCreate = (
|
3261
|
+
benchling_api_client.v2.stable.models.container_create.ContainerCreate
|
3262
|
+
)
|
3263
|
+
ContainerLabels = (
|
3264
|
+
benchling_api_client.v2.stable.models.container_labels.ContainerLabels
|
3265
|
+
)
|
3266
|
+
ContainerQuantity = (
|
3267
|
+
benchling_api_client.v2.stable.models.container_quantity.ContainerQuantity
|
3268
|
+
)
|
2958
3269
|
ContainerQuantityUnits = (
|
2959
3270
|
benchling_api_client.v2.stable.models.container_quantity_units.ContainerQuantityUnits
|
2960
3271
|
)
|
2961
|
-
ContainerSchema =
|
2962
|
-
|
2963
|
-
|
3272
|
+
ContainerSchema = (
|
3273
|
+
benchling_api_client.v2.stable.models.container_schema.ContainerSchema
|
3274
|
+
)
|
3275
|
+
ContainerSchemaType = (
|
3276
|
+
benchling_api_client.v2.stable.models.container_schema_type.ContainerSchemaType
|
3277
|
+
)
|
3278
|
+
ContainerSchemasList = (
|
3279
|
+
benchling_api_client.v2.stable.models.container_schemas_list.ContainerSchemasList
|
3280
|
+
)
|
2964
3281
|
ContainerSchemasPaginatedList = (
|
2965
3282
|
benchling_api_client.v2.stable.models.container_schemas_paginated_list.ContainerSchemasPaginatedList
|
2966
3283
|
)
|
2967
|
-
ContainerTransfer =
|
3284
|
+
ContainerTransfer = (
|
3285
|
+
benchling_api_client.v2.stable.models.container_transfer.ContainerTransfer
|
3286
|
+
)
|
2968
3287
|
ContainerTransferBase = (
|
2969
3288
|
benchling_api_client.v2.stable.models.container_transfer_base.ContainerTransferBase
|
2970
3289
|
)
|
2971
3290
|
ContainerTransferDestinationContentsItem = (
|
2972
3291
|
benchling_api_client.v2.stable.models.container_transfer_destination_contents_item.ContainerTransferDestinationContentsItem
|
2973
3292
|
)
|
2974
|
-
ContainerUpdate =
|
3293
|
+
ContainerUpdate = (
|
3294
|
+
benchling_api_client.v2.stable.models.container_update.ContainerUpdate
|
3295
|
+
)
|
2975
3296
|
ContainerWithCoordinates = (
|
2976
3297
|
benchling_api_client.v2.stable.models.container_with_coordinates.ContainerWithCoordinates
|
2977
3298
|
)
|
2978
|
-
ContainerWriteBase =
|
3299
|
+
ContainerWriteBase = (
|
3300
|
+
benchling_api_client.v2.stable.models.container_write_base.ContainerWriteBase
|
3301
|
+
)
|
2979
3302
|
ContainersArchivalChange = (
|
2980
3303
|
benchling_api_client.v2.stable.models.containers_archival_change.ContainersArchivalChange
|
2981
3304
|
)
|
2982
|
-
ContainersArchive =
|
3305
|
+
ContainersArchive = (
|
3306
|
+
benchling_api_client.v2.stable.models.containers_archive.ContainersArchive
|
3307
|
+
)
|
2983
3308
|
ContainersArchiveReason = (
|
2984
3309
|
benchling_api_client.v2.stable.models.containers_archive_reason.ContainersArchiveReason
|
2985
3310
|
)
|
@@ -2989,13 +3314,29 @@ if TYPE_CHECKING:
|
|
2989
3314
|
ContainersBulkUpdateRequest = (
|
2990
3315
|
benchling_api_client.v2.stable.models.containers_bulk_update_request.ContainersBulkUpdateRequest
|
2991
3316
|
)
|
2992
|
-
ContainersCheckin =
|
2993
|
-
|
2994
|
-
|
3317
|
+
ContainersCheckin = (
|
3318
|
+
benchling_api_client.v2.stable.models.containers_checkin.ContainersCheckin
|
3319
|
+
)
|
3320
|
+
ContainersCheckout = (
|
3321
|
+
benchling_api_client.v2.stable.models.containers_checkout.ContainersCheckout
|
3322
|
+
)
|
3323
|
+
ContainersList = (
|
3324
|
+
benchling_api_client.v2.stable.models.containers_list.ContainersList
|
3325
|
+
)
|
2995
3326
|
ContainersPaginatedList = (
|
2996
3327
|
benchling_api_client.v2.stable.models.containers_paginated_list.ContainersPaginatedList
|
2997
3328
|
)
|
2998
|
-
ContainersUnarchive =
|
3329
|
+
ContainersUnarchive = (
|
3330
|
+
benchling_api_client.v2.stable.models.containers_unarchive.ContainersUnarchive
|
3331
|
+
)
|
3332
|
+
ConvertToASM = benchling_api_client.v2.stable.models.convert_to_asm.ConvertToASM
|
3333
|
+
ConvertToASMResponse_200 = (
|
3334
|
+
benchling_api_client.v2.stable.models.convert_to_asm_response_200.ConvertToASMResponse_200
|
3335
|
+
)
|
3336
|
+
ConvertToCSV = benchling_api_client.v2.stable.models.convert_to_csv.ConvertToCSV
|
3337
|
+
ConvertToCSVResponse_200Item = (
|
3338
|
+
benchling_api_client.v2.stable.models.convert_to_csv_response_200_item.ConvertToCSVResponse_200Item
|
3339
|
+
)
|
2999
3340
|
CreateConsensusAlignmentAsyncTask = (
|
3000
3341
|
benchling_api_client.v2.stable.models.create_consensus_alignment_async_task.CreateConsensusAlignmentAsyncTask
|
3001
3342
|
)
|
@@ -3011,7 +3352,9 @@ if TYPE_CHECKING:
|
|
3011
3352
|
CreateTemplateAlignmentAsyncTask = (
|
3012
3353
|
benchling_api_client.v2.stable.models.create_template_alignment_async_task.CreateTemplateAlignmentAsyncTask
|
3013
3354
|
)
|
3014
|
-
CreationOrigin =
|
3355
|
+
CreationOrigin = (
|
3356
|
+
benchling_api_client.v2.stable.models.creation_origin.CreationOrigin
|
3357
|
+
)
|
3015
3358
|
CustomEntitiesArchivalChange = (
|
3016
3359
|
benchling_api_client.v2.stable.models.custom_entities_archival_change.CustomEntitiesArchivalChange
|
3017
3360
|
)
|
@@ -3027,7 +3370,9 @@ if TYPE_CHECKING:
|
|
3027
3370
|
CustomEntitiesBulkUpsertRequest = (
|
3028
3371
|
benchling_api_client.v2.stable.models.custom_entities_bulk_upsert_request.CustomEntitiesBulkUpsertRequest
|
3029
3372
|
)
|
3030
|
-
CustomEntitiesList =
|
3373
|
+
CustomEntitiesList = (
|
3374
|
+
benchling_api_client.v2.stable.models.custom_entities_list.CustomEntitiesList
|
3375
|
+
)
|
3031
3376
|
CustomEntitiesPaginatedList = (
|
3032
3377
|
benchling_api_client.v2.stable.models.custom_entities_paginated_list.CustomEntitiesPaginatedList
|
3033
3378
|
)
|
@@ -3050,16 +3395,24 @@ if TYPE_CHECKING:
|
|
3050
3395
|
CustomEntityBulkUpsertRequest = (
|
3051
3396
|
benchling_api_client.v2.stable.models.custom_entity_bulk_upsert_request.CustomEntityBulkUpsertRequest
|
3052
3397
|
)
|
3053
|
-
CustomEntityCreate =
|
3054
|
-
|
3398
|
+
CustomEntityCreate = (
|
3399
|
+
benchling_api_client.v2.stable.models.custom_entity_create.CustomEntityCreate
|
3400
|
+
)
|
3401
|
+
CustomEntityCreator = (
|
3402
|
+
benchling_api_client.v2.stable.models.custom_entity_creator.CustomEntityCreator
|
3403
|
+
)
|
3055
3404
|
CustomEntityRequestRegistryFields = (
|
3056
3405
|
benchling_api_client.v2.stable.models.custom_entity_request_registry_fields.CustomEntityRequestRegistryFields
|
3057
3406
|
)
|
3058
|
-
CustomEntitySummary =
|
3407
|
+
CustomEntitySummary = (
|
3408
|
+
benchling_api_client.v2.stable.models.custom_entity_summary.CustomEntitySummary
|
3409
|
+
)
|
3059
3410
|
CustomEntitySummaryEntityType = (
|
3060
3411
|
benchling_api_client.v2.stable.models.custom_entity_summary_entity_type.CustomEntitySummaryEntityType
|
3061
3412
|
)
|
3062
|
-
CustomEntityUpdate =
|
3413
|
+
CustomEntityUpdate = (
|
3414
|
+
benchling_api_client.v2.stable.models.custom_entity_update.CustomEntityUpdate
|
3415
|
+
)
|
3063
3416
|
CustomEntityUpsertRequest = (
|
3064
3417
|
benchling_api_client.v2.stable.models.custom_entity_upsert_request.CustomEntityUpsertRequest
|
3065
3418
|
)
|
@@ -3071,14 +3424,79 @@ if TYPE_CHECKING:
|
|
3071
3424
|
)
|
3072
3425
|
CustomField = benchling_api_client.v2.stable.models.custom_field.CustomField
|
3073
3426
|
CustomFields = benchling_api_client.v2.stable.models.custom_fields.CustomFields
|
3074
|
-
CustomNotation =
|
3427
|
+
CustomNotation = (
|
3428
|
+
benchling_api_client.v2.stable.models.custom_notation.CustomNotation
|
3429
|
+
)
|
3430
|
+
CustomNotationAlias = (
|
3431
|
+
benchling_api_client.v2.stable.models.custom_notation_alias.CustomNotationAlias
|
3432
|
+
)
|
3075
3433
|
CustomNotationRequest = (
|
3076
3434
|
benchling_api_client.v2.stable.models.custom_notation_request.CustomNotationRequest
|
3077
3435
|
)
|
3078
3436
|
CustomNotationsPaginatedList = (
|
3079
3437
|
benchling_api_client.v2.stable.models.custom_notations_paginated_list.CustomNotationsPaginatedList
|
3080
3438
|
)
|
3081
|
-
|
3439
|
+
DataFrame = benchling_api_client.v2.stable.models.data_frame.DataFrame
|
3440
|
+
DataFrameColumnMetadata = (
|
3441
|
+
benchling_api_client.v2.stable.models.data_frame_column_metadata.DataFrameColumnMetadata
|
3442
|
+
)
|
3443
|
+
DataFrameColumnTypeMetadata = (
|
3444
|
+
benchling_api_client.v2.stable.models.data_frame_column_type_metadata.DataFrameColumnTypeMetadata
|
3445
|
+
)
|
3446
|
+
DataFrameColumnTypeMetadataTarget = (
|
3447
|
+
benchling_api_client.v2.stable.models.data_frame_column_type_metadata_target.DataFrameColumnTypeMetadataTarget
|
3448
|
+
)
|
3449
|
+
DataFrameColumnTypeNameEnum = (
|
3450
|
+
benchling_api_client.v2.stable.models.data_frame_column_type_name_enum.DataFrameColumnTypeNameEnum
|
3451
|
+
)
|
3452
|
+
DataFrameColumnTypeNameEnumName = (
|
3453
|
+
benchling_api_client.v2.stable.models.data_frame_column_type_name_enum_name.DataFrameColumnTypeNameEnumName
|
3454
|
+
)
|
3455
|
+
DataFrameCreate = (
|
3456
|
+
benchling_api_client.v2.stable.models.data_frame_create.DataFrameCreate
|
3457
|
+
)
|
3458
|
+
DataFrameCreateManifest = (
|
3459
|
+
benchling_api_client.v2.stable.models.data_frame_create_manifest.DataFrameCreateManifest
|
3460
|
+
)
|
3461
|
+
DataFrameCreateManifestManifestItem = (
|
3462
|
+
benchling_api_client.v2.stable.models.data_frame_create_manifest_manifest_item.DataFrameCreateManifestManifestItem
|
3463
|
+
)
|
3464
|
+
DataFrameManifest = (
|
3465
|
+
benchling_api_client.v2.stable.models.data_frame_manifest.DataFrameManifest
|
3466
|
+
)
|
3467
|
+
DataFrameManifestManifestItem = (
|
3468
|
+
benchling_api_client.v2.stable.models.data_frame_manifest_manifest_item.DataFrameManifestManifestItem
|
3469
|
+
)
|
3470
|
+
DataFrameUpdate = (
|
3471
|
+
benchling_api_client.v2.stable.models.data_frame_update.DataFrameUpdate
|
3472
|
+
)
|
3473
|
+
DataFrameUpdateUploadStatus = (
|
3474
|
+
benchling_api_client.v2.stable.models.data_frame_update_upload_status.DataFrameUpdateUploadStatus
|
3475
|
+
)
|
3476
|
+
Dataset = benchling_api_client.v2.stable.models.dataset.Dataset
|
3477
|
+
DatasetCreate = benchling_api_client.v2.stable.models.dataset_create.DatasetCreate
|
3478
|
+
DatasetCreator = (
|
3479
|
+
benchling_api_client.v2.stable.models.dataset_creator.DatasetCreator
|
3480
|
+
)
|
3481
|
+
DatasetUpdate = benchling_api_client.v2.stable.models.dataset_update.DatasetUpdate
|
3482
|
+
DatasetsArchivalChange = (
|
3483
|
+
benchling_api_client.v2.stable.models.datasets_archival_change.DatasetsArchivalChange
|
3484
|
+
)
|
3485
|
+
DatasetsArchive = (
|
3486
|
+
benchling_api_client.v2.stable.models.datasets_archive.DatasetsArchive
|
3487
|
+
)
|
3488
|
+
DatasetsArchiveReason = (
|
3489
|
+
benchling_api_client.v2.stable.models.datasets_archive_reason.DatasetsArchiveReason
|
3490
|
+
)
|
3491
|
+
DatasetsPaginatedList = (
|
3492
|
+
benchling_api_client.v2.stable.models.datasets_paginated_list.DatasetsPaginatedList
|
3493
|
+
)
|
3494
|
+
DatasetsUnarchive = (
|
3495
|
+
benchling_api_client.v2.stable.models.datasets_unarchive.DatasetsUnarchive
|
3496
|
+
)
|
3497
|
+
DateAppConfigItem = (
|
3498
|
+
benchling_api_client.v2.stable.models.date_app_config_item.DateAppConfigItem
|
3499
|
+
)
|
3082
3500
|
DateAppConfigItemType = (
|
3083
3501
|
benchling_api_client.v2.stable.models.date_app_config_item_type.DateAppConfigItemType
|
3084
3502
|
)
|
@@ -3110,14 +3528,18 @@ if TYPE_CHECKING:
|
|
3110
3528
|
benchling_api_client.v2.stable.models.deprecated_entity_schemas_list.DeprecatedEntitySchemasList
|
3111
3529
|
)
|
3112
3530
|
DnaAlignment = benchling_api_client.v2.stable.models.dna_alignment.DnaAlignment
|
3113
|
-
DnaAlignmentBase =
|
3531
|
+
DnaAlignmentBase = (
|
3532
|
+
benchling_api_client.v2.stable.models.dna_alignment_base.DnaAlignmentBase
|
3533
|
+
)
|
3114
3534
|
DnaAlignmentBaseAlgorithm = (
|
3115
3535
|
benchling_api_client.v2.stable.models.dna_alignment_base_algorithm.DnaAlignmentBaseAlgorithm
|
3116
3536
|
)
|
3117
3537
|
DnaAlignmentBaseFilesItem = (
|
3118
3538
|
benchling_api_client.v2.stable.models.dna_alignment_base_files_item.DnaAlignmentBaseFilesItem
|
3119
3539
|
)
|
3120
|
-
DnaAlignmentSummary =
|
3540
|
+
DnaAlignmentSummary = (
|
3541
|
+
benchling_api_client.v2.stable.models.dna_alignment_summary.DnaAlignmentSummary
|
3542
|
+
)
|
3121
3543
|
DnaAlignmentsPaginatedList = (
|
3122
3544
|
benchling_api_client.v2.stable.models.dna_alignments_paginated_list.DnaAlignmentsPaginatedList
|
3123
3545
|
)
|
@@ -3129,9 +3551,15 @@ if TYPE_CHECKING:
|
|
3129
3551
|
benchling_api_client.v2.stable.models.dna_consensus_alignment_create_new_sequence.DnaConsensusAlignmentCreateNewSequence
|
3130
3552
|
)
|
3131
3553
|
DnaOligo = benchling_api_client.v2.stable.models.dna_oligo.DnaOligo
|
3132
|
-
DnaOligoBulkUpdate =
|
3133
|
-
|
3134
|
-
|
3554
|
+
DnaOligoBulkUpdate = (
|
3555
|
+
benchling_api_client.v2.stable.models.dna_oligo_bulk_update.DnaOligoBulkUpdate
|
3556
|
+
)
|
3557
|
+
DnaOligoCreate = (
|
3558
|
+
benchling_api_client.v2.stable.models.dna_oligo_create.DnaOligoCreate
|
3559
|
+
)
|
3560
|
+
DnaOligoUpdate = (
|
3561
|
+
benchling_api_client.v2.stable.models.dna_oligo_update.DnaOligoUpdate
|
3562
|
+
)
|
3135
3563
|
DnaOligoWithEntityType = (
|
3136
3564
|
benchling_api_client.v2.stable.models.dna_oligo_with_entity_type.DnaOligoWithEntityType
|
3137
3565
|
)
|
@@ -3141,7 +3569,9 @@ if TYPE_CHECKING:
|
|
3141
3569
|
DnaOligosArchivalChange = (
|
3142
3570
|
benchling_api_client.v2.stable.models.dna_oligos_archival_change.DnaOligosArchivalChange
|
3143
3571
|
)
|
3144
|
-
DnaOligosArchive =
|
3572
|
+
DnaOligosArchive = (
|
3573
|
+
benchling_api_client.v2.stable.models.dna_oligos_archive.DnaOligosArchive
|
3574
|
+
)
|
3145
3575
|
DnaOligosBulkCreateRequest = (
|
3146
3576
|
benchling_api_client.v2.stable.models.dna_oligos_bulk_create_request.DnaOligosBulkCreateRequest
|
3147
3577
|
)
|
@@ -3154,7 +3584,9 @@ if TYPE_CHECKING:
|
|
3154
3584
|
DnaOligosPaginatedList = (
|
3155
3585
|
benchling_api_client.v2.stable.models.dna_oligos_paginated_list.DnaOligosPaginatedList
|
3156
3586
|
)
|
3157
|
-
DnaOligosUnarchive =
|
3587
|
+
DnaOligosUnarchive = (
|
3588
|
+
benchling_api_client.v2.stable.models.dna_oligos_unarchive.DnaOligosUnarchive
|
3589
|
+
)
|
3158
3590
|
DnaSequence = benchling_api_client.v2.stable.models.dna_sequence.DnaSequence
|
3159
3591
|
DnaSequenceBaseRequest = (
|
3160
3592
|
benchling_api_client.v2.stable.models.dna_sequence_base_request.DnaSequenceBaseRequest
|
@@ -3171,16 +3603,24 @@ if TYPE_CHECKING:
|
|
3171
3603
|
DnaSequenceBulkUpsertRequest = (
|
3172
3604
|
benchling_api_client.v2.stable.models.dna_sequence_bulk_upsert_request.DnaSequenceBulkUpsertRequest
|
3173
3605
|
)
|
3174
|
-
DnaSequenceCreate =
|
3175
|
-
|
3606
|
+
DnaSequenceCreate = (
|
3607
|
+
benchling_api_client.v2.stable.models.dna_sequence_create.DnaSequenceCreate
|
3608
|
+
)
|
3609
|
+
DnaSequencePart = (
|
3610
|
+
benchling_api_client.v2.stable.models.dna_sequence_part.DnaSequencePart
|
3611
|
+
)
|
3176
3612
|
DnaSequenceRequestRegistryFields = (
|
3177
3613
|
benchling_api_client.v2.stable.models.dna_sequence_request_registry_fields.DnaSequenceRequestRegistryFields
|
3178
3614
|
)
|
3179
|
-
DnaSequenceSummary =
|
3615
|
+
DnaSequenceSummary = (
|
3616
|
+
benchling_api_client.v2.stable.models.dna_sequence_summary.DnaSequenceSummary
|
3617
|
+
)
|
3180
3618
|
DnaSequenceSummaryEntityType = (
|
3181
3619
|
benchling_api_client.v2.stable.models.dna_sequence_summary_entity_type.DnaSequenceSummaryEntityType
|
3182
3620
|
)
|
3183
|
-
DnaSequenceUpdate =
|
3621
|
+
DnaSequenceUpdate = (
|
3622
|
+
benchling_api_client.v2.stable.models.dna_sequence_update.DnaSequenceUpdate
|
3623
|
+
)
|
3184
3624
|
DnaSequenceUpsertRequest = (
|
3185
3625
|
benchling_api_client.v2.stable.models.dna_sequence_upsert_request.DnaSequenceUpsertRequest
|
3186
3626
|
)
|
@@ -3193,11 +3633,15 @@ if TYPE_CHECKING:
|
|
3193
3633
|
DnaSequencesArchivalChange = (
|
3194
3634
|
benchling_api_client.v2.stable.models.dna_sequences_archival_change.DnaSequencesArchivalChange
|
3195
3635
|
)
|
3196
|
-
DnaSequencesArchive =
|
3636
|
+
DnaSequencesArchive = (
|
3637
|
+
benchling_api_client.v2.stable.models.dna_sequences_archive.DnaSequencesArchive
|
3638
|
+
)
|
3197
3639
|
DnaSequencesBulkCreateRequest = (
|
3198
3640
|
benchling_api_client.v2.stable.models.dna_sequences_bulk_create_request.DnaSequencesBulkCreateRequest
|
3199
3641
|
)
|
3200
|
-
DnaSequencesBulkGet =
|
3642
|
+
DnaSequencesBulkGet = (
|
3643
|
+
benchling_api_client.v2.stable.models.dna_sequences_bulk_get.DnaSequencesBulkGet
|
3644
|
+
)
|
3201
3645
|
DnaSequencesBulkUpdateRequest = (
|
3202
3646
|
benchling_api_client.v2.stable.models.dna_sequences_bulk_update_request.DnaSequencesBulkUpdateRequest
|
3203
3647
|
)
|
@@ -3220,7 +3664,9 @@ if TYPE_CHECKING:
|
|
3220
3664
|
benchling_api_client.v2.stable.models.dna_template_alignment_file.DnaTemplateAlignmentFile
|
3221
3665
|
)
|
3222
3666
|
Dropdown = benchling_api_client.v2.stable.models.dropdown.Dropdown
|
3223
|
-
DropdownCreate =
|
3667
|
+
DropdownCreate = (
|
3668
|
+
benchling_api_client.v2.stable.models.dropdown_create.DropdownCreate
|
3669
|
+
)
|
3224
3670
|
DropdownFieldDefinition = (
|
3225
3671
|
benchling_api_client.v2.stable.models.dropdown_field_definition.DropdownFieldDefinition
|
3226
3672
|
)
|
@@ -3239,9 +3685,15 @@ if TYPE_CHECKING:
|
|
3239
3685
|
DropdownMultiValueUiBlockUpdate = (
|
3240
3686
|
benchling_api_client.v2.stable.models.dropdown_multi_value_ui_block_update.DropdownMultiValueUiBlockUpdate
|
3241
3687
|
)
|
3242
|
-
DropdownOption =
|
3243
|
-
|
3244
|
-
|
3688
|
+
DropdownOption = (
|
3689
|
+
benchling_api_client.v2.stable.models.dropdown_option.DropdownOption
|
3690
|
+
)
|
3691
|
+
DropdownOptionCreate = (
|
3692
|
+
benchling_api_client.v2.stable.models.dropdown_option_create.DropdownOptionCreate
|
3693
|
+
)
|
3694
|
+
DropdownOptionUpdate = (
|
3695
|
+
benchling_api_client.v2.stable.models.dropdown_option_update.DropdownOptionUpdate
|
3696
|
+
)
|
3245
3697
|
DropdownOptionsArchivalChange = (
|
3246
3698
|
benchling_api_client.v2.stable.models.dropdown_options_archival_change.DropdownOptionsArchivalChange
|
3247
3699
|
)
|
@@ -3257,16 +3709,24 @@ if TYPE_CHECKING:
|
|
3257
3709
|
DropdownSummariesPaginatedList = (
|
3258
3710
|
benchling_api_client.v2.stable.models.dropdown_summaries_paginated_list.DropdownSummariesPaginatedList
|
3259
3711
|
)
|
3260
|
-
DropdownSummary =
|
3261
|
-
|
3712
|
+
DropdownSummary = (
|
3713
|
+
benchling_api_client.v2.stable.models.dropdown_summary.DropdownSummary
|
3714
|
+
)
|
3715
|
+
DropdownUiBlock = (
|
3716
|
+
benchling_api_client.v2.stable.models.dropdown_ui_block.DropdownUiBlock
|
3717
|
+
)
|
3262
3718
|
DropdownUiBlockCreate = (
|
3263
3719
|
benchling_api_client.v2.stable.models.dropdown_ui_block_create.DropdownUiBlockCreate
|
3264
3720
|
)
|
3265
|
-
DropdownUiBlockType =
|
3721
|
+
DropdownUiBlockType = (
|
3722
|
+
benchling_api_client.v2.stable.models.dropdown_ui_block_type.DropdownUiBlockType
|
3723
|
+
)
|
3266
3724
|
DropdownUiBlockUpdate = (
|
3267
3725
|
benchling_api_client.v2.stable.models.dropdown_ui_block_update.DropdownUiBlockUpdate
|
3268
3726
|
)
|
3269
|
-
DropdownUpdate =
|
3727
|
+
DropdownUpdate = (
|
3728
|
+
benchling_api_client.v2.stable.models.dropdown_update.DropdownUpdate
|
3729
|
+
)
|
3270
3730
|
DropdownsRegistryList = (
|
3271
3731
|
benchling_api_client.v2.stable.models.dropdowns_registry_list.DropdownsRegistryList
|
3272
3732
|
)
|
@@ -3275,7 +3735,9 @@ if TYPE_CHECKING:
|
|
3275
3735
|
benchling_api_client.v2.stable.models.entities_bulk_upsert_request.EntitiesBulkUpsertRequest
|
3276
3736
|
)
|
3277
3737
|
Entity = benchling_api_client.v2.stable.models.entity.Entity
|
3278
|
-
EntityArchiveReason =
|
3738
|
+
EntityArchiveReason = (
|
3739
|
+
benchling_api_client.v2.stable.models.entity_archive_reason.EntityArchiveReason
|
3740
|
+
)
|
3279
3741
|
EntityBulkUpsertBaseRequest = (
|
3280
3742
|
benchling_api_client.v2.stable.models.entity_bulk_upsert_base_request.EntityBulkUpsertBaseRequest
|
3281
3743
|
)
|
@@ -3302,7 +3764,9 @@ if TYPE_CHECKING:
|
|
3302
3764
|
EntitySchemaContainableType = (
|
3303
3765
|
benchling_api_client.v2.stable.models.entity_schema_containable_type.EntitySchemaContainableType
|
3304
3766
|
)
|
3305
|
-
EntitySchemaType =
|
3767
|
+
EntitySchemaType = (
|
3768
|
+
benchling_api_client.v2.stable.models.entity_schema_type.EntitySchemaType
|
3769
|
+
)
|
3306
3770
|
EntitySchemasPaginatedList = (
|
3307
3771
|
benchling_api_client.v2.stable.models.entity_schemas_paginated_list.EntitySchemasPaginatedList
|
3308
3772
|
)
|
@@ -3313,31 +3777,47 @@ if TYPE_CHECKING:
|
|
3313
3777
|
EntriesArchivalChange = (
|
3314
3778
|
benchling_api_client.v2.stable.models.entries_archival_change.EntriesArchivalChange
|
3315
3779
|
)
|
3316
|
-
EntriesArchive =
|
3317
|
-
|
3318
|
-
|
3319
|
-
|
3780
|
+
EntriesArchive = (
|
3781
|
+
benchling_api_client.v2.stable.models.entries_archive.EntriesArchive
|
3782
|
+
)
|
3783
|
+
EntriesArchiveReason = (
|
3784
|
+
benchling_api_client.v2.stable.models.entries_archive_reason.EntriesArchiveReason
|
3785
|
+
)
|
3786
|
+
EntriesPaginatedList = (
|
3787
|
+
benchling_api_client.v2.stable.models.entries_paginated_list.EntriesPaginatedList
|
3788
|
+
)
|
3789
|
+
EntriesUnarchive = (
|
3790
|
+
benchling_api_client.v2.stable.models.entries_unarchive.EntriesUnarchive
|
3791
|
+
)
|
3320
3792
|
Entry = benchling_api_client.v2.stable.models.entry.Entry
|
3321
3793
|
EntryById = benchling_api_client.v2.stable.models.entry_by_id.EntryById
|
3322
3794
|
EntryCreate = benchling_api_client.v2.stable.models.entry_create.EntryCreate
|
3323
|
-
EntryCreatedEvent =
|
3795
|
+
EntryCreatedEvent = (
|
3796
|
+
benchling_api_client.v2.stable.models.entry_created_event.EntryCreatedEvent
|
3797
|
+
)
|
3324
3798
|
EntryCreatedEventEventType = (
|
3325
3799
|
benchling_api_client.v2.stable.models.entry_created_event_event_type.EntryCreatedEventEventType
|
3326
3800
|
)
|
3327
3801
|
EntryDay = benchling_api_client.v2.stable.models.entry_day.EntryDay
|
3328
|
-
EntryExternalFile =
|
3802
|
+
EntryExternalFile = (
|
3803
|
+
benchling_api_client.v2.stable.models.entry_external_file.EntryExternalFile
|
3804
|
+
)
|
3329
3805
|
EntryExternalFileById = (
|
3330
3806
|
benchling_api_client.v2.stable.models.entry_external_file_by_id.EntryExternalFileById
|
3331
3807
|
)
|
3332
3808
|
EntryLink = benchling_api_client.v2.stable.models.entry_link.EntryLink
|
3333
3809
|
EntryLinkType = benchling_api_client.v2.stable.models.entry_link_type.EntryLinkType
|
3334
3810
|
EntryNotePart = benchling_api_client.v2.stable.models.entry_note_part.EntryNotePart
|
3335
|
-
EntryReviewRecord =
|
3811
|
+
EntryReviewRecord = (
|
3812
|
+
benchling_api_client.v2.stable.models.entry_review_record.EntryReviewRecord
|
3813
|
+
)
|
3336
3814
|
EntryReviewRecordStatus = (
|
3337
3815
|
benchling_api_client.v2.stable.models.entry_review_record_status.EntryReviewRecordStatus
|
3338
3816
|
)
|
3339
3817
|
EntrySchema = benchling_api_client.v2.stable.models.entry_schema.EntrySchema
|
3340
|
-
EntrySchemaDetailed =
|
3818
|
+
EntrySchemaDetailed = (
|
3819
|
+
benchling_api_client.v2.stable.models.entry_schema_detailed.EntrySchemaDetailed
|
3820
|
+
)
|
3341
3821
|
EntrySchemaDetailedType = (
|
3342
3822
|
benchling_api_client.v2.stable.models.entry_schema_detailed_type.EntrySchemaDetailedType
|
3343
3823
|
)
|
@@ -3345,11 +3825,17 @@ if TYPE_CHECKING:
|
|
3345
3825
|
benchling_api_client.v2.stable.models.entry_schemas_paginated_list.EntrySchemasPaginatedList
|
3346
3826
|
)
|
3347
3827
|
EntryTable = benchling_api_client.v2.stable.models.entry_table.EntryTable
|
3348
|
-
EntryTableCell =
|
3828
|
+
EntryTableCell = (
|
3829
|
+
benchling_api_client.v2.stable.models.entry_table_cell.EntryTableCell
|
3830
|
+
)
|
3349
3831
|
EntryTableRow = benchling_api_client.v2.stable.models.entry_table_row.EntryTableRow
|
3350
3832
|
EntryTemplate = benchling_api_client.v2.stable.models.entry_template.EntryTemplate
|
3351
|
-
EntryTemplateDay =
|
3352
|
-
|
3833
|
+
EntryTemplateDay = (
|
3834
|
+
benchling_api_client.v2.stable.models.entry_template_day.EntryTemplateDay
|
3835
|
+
)
|
3836
|
+
EntryTemplateUpdate = (
|
3837
|
+
benchling_api_client.v2.stable.models.entry_template_update.EntryTemplateUpdate
|
3838
|
+
)
|
3353
3839
|
EntryTemplatesPaginatedList = (
|
3354
3840
|
benchling_api_client.v2.stable.models.entry_templates_paginated_list.EntryTemplatesPaginatedList
|
3355
3841
|
)
|
@@ -3366,14 +3852,30 @@ if TYPE_CHECKING:
|
|
3366
3852
|
EntryUpdatedReviewRecordEventEventType = (
|
3367
3853
|
benchling_api_client.v2.stable.models.entry_updated_review_record_event_event_type.EntryUpdatedReviewRecordEventEventType
|
3368
3854
|
)
|
3855
|
+
EntryUpdatedReviewSnapshotBetaEvent = (
|
3856
|
+
benchling_api_client.v2.stable.models.entry_updated_review_snapshot_beta_event.EntryUpdatedReviewSnapshotBetaEvent
|
3857
|
+
)
|
3858
|
+
EntryUpdatedReviewSnapshotBetaEventEventType = (
|
3859
|
+
benchling_api_client.v2.stable.models.entry_updated_review_snapshot_beta_event_event_type.EntryUpdatedReviewSnapshotBetaEventEventType
|
3860
|
+
)
|
3369
3861
|
Enzyme = benchling_api_client.v2.stable.models.enzyme.Enzyme
|
3370
|
-
EnzymesPaginatedList =
|
3862
|
+
EnzymesPaginatedList = (
|
3863
|
+
benchling_api_client.v2.stable.models.enzymes_paginated_list.EnzymesPaginatedList
|
3864
|
+
)
|
3371
3865
|
Event = benchling_api_client.v2.stable.models.event.Event
|
3372
3866
|
EventBase = benchling_api_client.v2.stable.models.event_base.EventBase
|
3373
|
-
EventBaseSchema =
|
3374
|
-
|
3375
|
-
|
3376
|
-
|
3867
|
+
EventBaseSchema = (
|
3868
|
+
benchling_api_client.v2.stable.models.event_base_schema.EventBaseSchema
|
3869
|
+
)
|
3870
|
+
EventsPaginatedList = (
|
3871
|
+
benchling_api_client.v2.stable.models.events_paginated_list.EventsPaginatedList
|
3872
|
+
)
|
3873
|
+
ExecuteSampleGroups = (
|
3874
|
+
benchling_api_client.v2.stable.models.execute_sample_groups.ExecuteSampleGroups
|
3875
|
+
)
|
3876
|
+
ExperimentalWellRole = (
|
3877
|
+
benchling_api_client.v2.stable.models.experimental_well_role.ExperimentalWellRole
|
3878
|
+
)
|
3377
3879
|
ExperimentalWellRolePrimaryRole = (
|
3378
3880
|
benchling_api_client.v2.stable.models.experimental_well_role_primary_role.ExperimentalWellRolePrimaryRole
|
3379
3881
|
)
|
@@ -3383,18 +3885,26 @@ if TYPE_CHECKING:
|
|
3383
3885
|
ExportAuditLogAsyncTaskResponse = (
|
3384
3886
|
benchling_api_client.v2.stable.models.export_audit_log_async_task_response.ExportAuditLogAsyncTaskResponse
|
3385
3887
|
)
|
3386
|
-
ExportItemRequest =
|
3387
|
-
|
3888
|
+
ExportItemRequest = (
|
3889
|
+
benchling_api_client.v2.stable.models.export_item_request.ExportItemRequest
|
3890
|
+
)
|
3891
|
+
ExportsAsyncTask = (
|
3892
|
+
benchling_api_client.v2.stable.models.exports_async_task.ExportsAsyncTask
|
3893
|
+
)
|
3388
3894
|
ExportsAsyncTaskResponse = (
|
3389
3895
|
benchling_api_client.v2.stable.models.exports_async_task_response.ExportsAsyncTaskResponse
|
3390
3896
|
)
|
3391
|
-
ExternalFileNotePart =
|
3897
|
+
ExternalFileNotePart = (
|
3898
|
+
benchling_api_client.v2.stable.models.external_file_note_part.ExternalFileNotePart
|
3899
|
+
)
|
3392
3900
|
ExternalFileNotePartType = (
|
3393
3901
|
benchling_api_client.v2.stable.models.external_file_note_part_type.ExternalFileNotePartType
|
3394
3902
|
)
|
3395
3903
|
Feature = benchling_api_client.v2.stable.models.feature.Feature
|
3396
3904
|
FeatureBase = benchling_api_client.v2.stable.models.feature_base.FeatureBase
|
3397
|
-
FeatureBulkCreate =
|
3905
|
+
FeatureBulkCreate = (
|
3906
|
+
benchling_api_client.v2.stable.models.feature_bulk_create.FeatureBulkCreate
|
3907
|
+
)
|
3398
3908
|
FeatureCreate = benchling_api_client.v2.stable.models.feature_create.FeatureCreate
|
3399
3909
|
FeatureCreateMatchType = (
|
3400
3910
|
benchling_api_client.v2.stable.models.feature_create_match_type.FeatureCreateMatchType
|
@@ -3402,11 +3912,21 @@ if TYPE_CHECKING:
|
|
3402
3912
|
FeatureLibrariesPaginatedList = (
|
3403
3913
|
benchling_api_client.v2.stable.models.feature_libraries_paginated_list.FeatureLibrariesPaginatedList
|
3404
3914
|
)
|
3405
|
-
FeatureLibrary =
|
3406
|
-
|
3407
|
-
|
3408
|
-
|
3409
|
-
|
3915
|
+
FeatureLibrary = (
|
3916
|
+
benchling_api_client.v2.stable.models.feature_library.FeatureLibrary
|
3917
|
+
)
|
3918
|
+
FeatureLibraryBase = (
|
3919
|
+
benchling_api_client.v2.stable.models.feature_library_base.FeatureLibraryBase
|
3920
|
+
)
|
3921
|
+
FeatureLibraryCreate = (
|
3922
|
+
benchling_api_client.v2.stable.models.feature_library_create.FeatureLibraryCreate
|
3923
|
+
)
|
3924
|
+
FeatureLibraryUpdate = (
|
3925
|
+
benchling_api_client.v2.stable.models.feature_library_update.FeatureLibraryUpdate
|
3926
|
+
)
|
3927
|
+
FeatureMatchType = (
|
3928
|
+
benchling_api_client.v2.stable.models.feature_match_type.FeatureMatchType
|
3929
|
+
)
|
3410
3930
|
FeatureUpdate = benchling_api_client.v2.stable.models.feature_update.FeatureUpdate
|
3411
3931
|
FeaturesBulkCreateRequest = (
|
3412
3932
|
benchling_api_client.v2.stable.models.features_bulk_create_request.FeaturesBulkCreateRequest
|
@@ -3415,19 +3935,63 @@ if TYPE_CHECKING:
|
|
3415
3935
|
benchling_api_client.v2.stable.models.features_paginated_list.FeaturesPaginatedList
|
3416
3936
|
)
|
3417
3937
|
Field = benchling_api_client.v2.stable.models.field.Field
|
3418
|
-
FieldAppConfigItem =
|
3938
|
+
FieldAppConfigItem = (
|
3939
|
+
benchling_api_client.v2.stable.models.field_app_config_item.FieldAppConfigItem
|
3940
|
+
)
|
3419
3941
|
FieldAppConfigItemType = (
|
3420
3942
|
benchling_api_client.v2.stable.models.field_app_config_item_type.FieldAppConfigItemType
|
3421
3943
|
)
|
3422
|
-
FieldDefinition =
|
3944
|
+
FieldDefinition = (
|
3945
|
+
benchling_api_client.v2.stable.models.field_definition.FieldDefinition
|
3946
|
+
)
|
3423
3947
|
FieldType = benchling_api_client.v2.stable.models.field_type.FieldType
|
3424
3948
|
FieldValue = benchling_api_client.v2.stable.models.field_value.FieldValue
|
3425
3949
|
FieldValueWithResolution = (
|
3426
3950
|
benchling_api_client.v2.stable.models.field_value_with_resolution.FieldValueWithResolution
|
3427
3951
|
)
|
3428
|
-
FieldWithResolution =
|
3952
|
+
FieldWithResolution = (
|
3953
|
+
benchling_api_client.v2.stable.models.field_with_resolution.FieldWithResolution
|
3954
|
+
)
|
3429
3955
|
Fields = benchling_api_client.v2.stable.models.fields.Fields
|
3430
|
-
FieldsWithResolution =
|
3956
|
+
FieldsWithResolution = (
|
3957
|
+
benchling_api_client.v2.stable.models.fields_with_resolution.FieldsWithResolution
|
3958
|
+
)
|
3959
|
+
File = benchling_api_client.v2.stable.models.file.File
|
3960
|
+
FileCreate = benchling_api_client.v2.stable.models.file_create.FileCreate
|
3961
|
+
FileCreator = benchling_api_client.v2.stable.models.file_creator.FileCreator
|
3962
|
+
FileStatus = benchling_api_client.v2.stable.models.file_status.FileStatus
|
3963
|
+
FileStatusUploadStatus = (
|
3964
|
+
benchling_api_client.v2.stable.models.file_status_upload_status.FileStatusUploadStatus
|
3965
|
+
)
|
3966
|
+
FileUpdate = benchling_api_client.v2.stable.models.file_update.FileUpdate
|
3967
|
+
FileUpdateUploadStatus = (
|
3968
|
+
benchling_api_client.v2.stable.models.file_update_upload_status.FileUpdateUploadStatus
|
3969
|
+
)
|
3970
|
+
FileUploadUiBlock = (
|
3971
|
+
benchling_api_client.v2.stable.models.file_upload_ui_block.FileUploadUiBlock
|
3972
|
+
)
|
3973
|
+
FileUploadUiBlockCreate = (
|
3974
|
+
benchling_api_client.v2.stable.models.file_upload_ui_block_create.FileUploadUiBlockCreate
|
3975
|
+
)
|
3976
|
+
FileUploadUiBlockType = (
|
3977
|
+
benchling_api_client.v2.stable.models.file_upload_ui_block_type.FileUploadUiBlockType
|
3978
|
+
)
|
3979
|
+
FileUploadUiBlockUpdate = (
|
3980
|
+
benchling_api_client.v2.stable.models.file_upload_ui_block_update.FileUploadUiBlockUpdate
|
3981
|
+
)
|
3982
|
+
FilesArchivalChange = (
|
3983
|
+
benchling_api_client.v2.stable.models.files_archival_change.FilesArchivalChange
|
3984
|
+
)
|
3985
|
+
FilesArchive = benchling_api_client.v2.stable.models.files_archive.FilesArchive
|
3986
|
+
FilesArchiveReason = (
|
3987
|
+
benchling_api_client.v2.stable.models.files_archive_reason.FilesArchiveReason
|
3988
|
+
)
|
3989
|
+
FilesPaginatedList = (
|
3990
|
+
benchling_api_client.v2.stable.models.files_paginated_list.FilesPaginatedList
|
3991
|
+
)
|
3992
|
+
FilesUnarchive = (
|
3993
|
+
benchling_api_client.v2.stable.models.files_unarchive.FilesUnarchive
|
3994
|
+
)
|
3431
3995
|
FindMatchingRegionsAsyncTask = (
|
3432
3996
|
benchling_api_client.v2.stable.models.find_matching_regions_async_task.FindMatchingRegionsAsyncTask
|
3433
3997
|
)
|
@@ -3446,11 +4010,15 @@ if TYPE_CHECKING:
|
|
3446
4010
|
FindMatchingRegionsDnaAsyncTaskResponseDnaSequenceMatchesItem = (
|
3447
4011
|
benchling_api_client.v2.stable.models.find_matching_regions_dna_async_task_response_dna_sequence_matches_item.FindMatchingRegionsDnaAsyncTaskResponseDnaSequenceMatchesItem
|
3448
4012
|
)
|
3449
|
-
FloatAppConfigItem =
|
4013
|
+
FloatAppConfigItem = (
|
4014
|
+
benchling_api_client.v2.stable.models.float_app_config_item.FloatAppConfigItem
|
4015
|
+
)
|
3450
4016
|
FloatAppConfigItemType = (
|
3451
4017
|
benchling_api_client.v2.stable.models.float_app_config_item_type.FloatAppConfigItemType
|
3452
4018
|
)
|
3453
|
-
FloatFieldDefinition =
|
4019
|
+
FloatFieldDefinition = (
|
4020
|
+
benchling_api_client.v2.stable.models.float_field_definition.FloatFieldDefinition
|
4021
|
+
)
|
3454
4022
|
FloatFieldDefinitionType = (
|
3455
4023
|
benchling_api_client.v2.stable.models.float_field_definition_type.FloatFieldDefinitionType
|
3456
4024
|
)
|
@@ -3459,12 +4027,24 @@ if TYPE_CHECKING:
|
|
3459
4027
|
FoldersArchivalChange = (
|
3460
4028
|
benchling_api_client.v2.stable.models.folders_archival_change.FoldersArchivalChange
|
3461
4029
|
)
|
3462
|
-
FoldersArchive =
|
3463
|
-
|
3464
|
-
|
3465
|
-
|
3466
|
-
|
3467
|
-
|
4030
|
+
FoldersArchive = (
|
4031
|
+
benchling_api_client.v2.stable.models.folders_archive.FoldersArchive
|
4032
|
+
)
|
4033
|
+
FoldersArchiveReason = (
|
4034
|
+
benchling_api_client.v2.stable.models.folders_archive_reason.FoldersArchiveReason
|
4035
|
+
)
|
4036
|
+
FoldersPaginatedList = (
|
4037
|
+
benchling_api_client.v2.stable.models.folders_paginated_list.FoldersPaginatedList
|
4038
|
+
)
|
4039
|
+
FoldersUnarchive = (
|
4040
|
+
benchling_api_client.v2.stable.models.folders_unarchive.FoldersUnarchive
|
4041
|
+
)
|
4042
|
+
ForbiddenError = (
|
4043
|
+
benchling_api_client.v2.stable.models.forbidden_error.ForbiddenError
|
4044
|
+
)
|
4045
|
+
ForbiddenErrorError = (
|
4046
|
+
benchling_api_client.v2.stable.models.forbidden_error_error.ForbiddenErrorError
|
4047
|
+
)
|
3468
4048
|
ForbiddenRestrictedSampleError = (
|
3469
4049
|
benchling_api_client.v2.stable.models.forbidden_restricted_sample_error.ForbiddenRestrictedSampleError
|
3470
4050
|
)
|
@@ -3481,11 +4061,18 @@ if TYPE_CHECKING:
|
|
3481
4061
|
benchling_api_client.v2.stable.models.generic_api_identified_app_config_item_type.GenericApiIdentifiedAppConfigItemType
|
3482
4062
|
)
|
3483
4063
|
GenericEntity = benchling_api_client.v2.stable.models.generic_entity.GenericEntity
|
3484
|
-
GenericEntityCreator =
|
4064
|
+
GenericEntityCreator = (
|
4065
|
+
benchling_api_client.v2.stable.models.generic_entity_creator.GenericEntityCreator
|
4066
|
+
)
|
4067
|
+
GetDataFrameRowDataFormat = (
|
4068
|
+
benchling_api_client.v2.stable.models.get_data_frame_row_data_format.GetDataFrameRowDataFormat
|
4069
|
+
)
|
3485
4070
|
GetUserWarehouseLoginsResponse_200 = (
|
3486
4071
|
benchling_api_client.v2.stable.models.get_user_warehouse_logins_response_200.GetUserWarehouseLoginsResponse_200
|
3487
4072
|
)
|
3488
|
-
InaccessibleResource =
|
4073
|
+
InaccessibleResource = (
|
4074
|
+
benchling_api_client.v2.stable.models.inaccessible_resource.InaccessibleResource
|
4075
|
+
)
|
3489
4076
|
InaccessibleResourceResourceType = (
|
3490
4077
|
benchling_api_client.v2.stable.models.inaccessible_resource_resource_type.InaccessibleResourceResourceType
|
3491
4078
|
)
|
@@ -3500,14 +4087,18 @@ if TYPE_CHECKING:
|
|
3500
4087
|
benchling_api_client.v2.stable.models.ingredient_write_params.IngredientWriteParams
|
3501
4088
|
)
|
3502
4089
|
InitialTable = benchling_api_client.v2.stable.models.initial_table.InitialTable
|
3503
|
-
InstrumentQuery =
|
4090
|
+
InstrumentQuery = (
|
4091
|
+
benchling_api_client.v2.stable.models.instrument_query.InstrumentQuery
|
4092
|
+
)
|
3504
4093
|
InstrumentQueryParams = (
|
3505
4094
|
benchling_api_client.v2.stable.models.instrument_query_params.InstrumentQueryParams
|
3506
4095
|
)
|
3507
4096
|
InstrumentQueryValues = (
|
3508
4097
|
benchling_api_client.v2.stable.models.instrument_query_values.InstrumentQueryValues
|
3509
4098
|
)
|
3510
|
-
IntegerAppConfigItem =
|
4099
|
+
IntegerAppConfigItem = (
|
4100
|
+
benchling_api_client.v2.stable.models.integer_app_config_item.IntegerAppConfigItem
|
4101
|
+
)
|
3511
4102
|
IntegerAppConfigItemType = (
|
3512
4103
|
benchling_api_client.v2.stable.models.integer_app_config_item_type.IntegerAppConfigItemType
|
3513
4104
|
)
|
@@ -3517,7 +4108,9 @@ if TYPE_CHECKING:
|
|
3517
4108
|
IntegerFieldDefinitionType = (
|
3518
4109
|
benchling_api_client.v2.stable.models.integer_field_definition_type.IntegerFieldDefinitionType
|
3519
4110
|
)
|
3520
|
-
InteractiveUiBlock =
|
4111
|
+
InteractiveUiBlock = (
|
4112
|
+
benchling_api_client.v2.stable.models.interactive_ui_block.InteractiveUiBlock
|
4113
|
+
)
|
3521
4114
|
InventoryContainerTableNotePart = (
|
3522
4115
|
benchling_api_client.v2.stable.models.inventory_container_table_note_part.InventoryContainerTableNotePart
|
3523
4116
|
)
|
@@ -3536,7 +4129,9 @@ if TYPE_CHECKING:
|
|
3536
4129
|
InventoryPlateTableNotePartType = (
|
3537
4130
|
benchling_api_client.v2.stable.models.inventory_plate_table_note_part_type.InventoryPlateTableNotePartType
|
3538
4131
|
)
|
3539
|
-
JsonAppConfigItem =
|
4132
|
+
JsonAppConfigItem = (
|
4133
|
+
benchling_api_client.v2.stable.models.json_app_config_item.JsonAppConfigItem
|
4134
|
+
)
|
3540
4135
|
JsonAppConfigItemType = (
|
3541
4136
|
benchling_api_client.v2.stable.models.json_app_config_item_type.JsonAppConfigItemType
|
3542
4137
|
)
|
@@ -3559,15 +4154,27 @@ if TYPE_CHECKING:
|
|
3559
4154
|
benchling_api_client.v2.stable.models.lab_automation_transform_update.LabAutomationTransformUpdate
|
3560
4155
|
)
|
3561
4156
|
LabelTemplate = benchling_api_client.v2.stable.models.label_template.LabelTemplate
|
3562
|
-
LabelTemplatesList =
|
3563
|
-
|
3564
|
-
|
3565
|
-
|
3566
|
-
|
4157
|
+
LabelTemplatesList = (
|
4158
|
+
benchling_api_client.v2.stable.models.label_templates_list.LabelTemplatesList
|
4159
|
+
)
|
4160
|
+
LegacyWorkflow = (
|
4161
|
+
benchling_api_client.v2.stable.models.legacy_workflow.LegacyWorkflow
|
4162
|
+
)
|
4163
|
+
LegacyWorkflowList = (
|
4164
|
+
benchling_api_client.v2.stable.models.legacy_workflow_list.LegacyWorkflowList
|
4165
|
+
)
|
4166
|
+
LegacyWorkflowPatch = (
|
4167
|
+
benchling_api_client.v2.stable.models.legacy_workflow_patch.LegacyWorkflowPatch
|
4168
|
+
)
|
4169
|
+
LegacyWorkflowSample = (
|
4170
|
+
benchling_api_client.v2.stable.models.legacy_workflow_sample.LegacyWorkflowSample
|
4171
|
+
)
|
3567
4172
|
LegacyWorkflowSampleList = (
|
3568
4173
|
benchling_api_client.v2.stable.models.legacy_workflow_sample_list.LegacyWorkflowSampleList
|
3569
4174
|
)
|
3570
|
-
LegacyWorkflowStage =
|
4175
|
+
LegacyWorkflowStage = (
|
4176
|
+
benchling_api_client.v2.stable.models.legacy_workflow_stage.LegacyWorkflowStage
|
4177
|
+
)
|
3571
4178
|
LegacyWorkflowStageList = (
|
3572
4179
|
benchling_api_client.v2.stable.models.legacy_workflow_stage_list.LegacyWorkflowStageList
|
3573
4180
|
)
|
@@ -3589,16 +4196,24 @@ if TYPE_CHECKING:
|
|
3589
4196
|
LinkedAppConfigResourceSummary = (
|
3590
4197
|
benchling_api_client.v2.stable.models.linked_app_config_resource_summary.LinkedAppConfigResourceSummary
|
3591
4198
|
)
|
3592
|
-
ListAASequencesSort =
|
4199
|
+
ListAASequencesSort = (
|
4200
|
+
benchling_api_client.v2.stable.models.list_aa_sequences_sort.ListAASequencesSort
|
4201
|
+
)
|
3593
4202
|
ListAppCanvasesEnabled = (
|
3594
4203
|
benchling_api_client.v2.stable.models.list_app_canvases_enabled.ListAppCanvasesEnabled
|
3595
4204
|
)
|
3596
|
-
ListAppCanvasesSort =
|
4205
|
+
ListAppCanvasesSort = (
|
4206
|
+
benchling_api_client.v2.stable.models.list_app_canvases_sort.ListAppCanvasesSort
|
4207
|
+
)
|
3597
4208
|
ListAppConfigurationItemsSort = (
|
3598
4209
|
benchling_api_client.v2.stable.models.list_app_configuration_items_sort.ListAppConfigurationItemsSort
|
3599
4210
|
)
|
3600
|
-
ListAppSessionsSort =
|
3601
|
-
|
4211
|
+
ListAppSessionsSort = (
|
4212
|
+
benchling_api_client.v2.stable.models.list_app_sessions_sort.ListAppSessionsSort
|
4213
|
+
)
|
4214
|
+
ListAssayResultsSort = (
|
4215
|
+
benchling_api_client.v2.stable.models.list_assay_results_sort.ListAssayResultsSort
|
4216
|
+
)
|
3602
4217
|
ListBenchlingAppsSort = (
|
3603
4218
|
benchling_api_client.v2.stable.models.list_benchling_apps_sort.ListBenchlingAppsSort
|
3604
4219
|
)
|
@@ -3609,43 +4224,80 @@ if TYPE_CHECKING:
|
|
3609
4224
|
ListContainersCheckoutStatus = (
|
3610
4225
|
benchling_api_client.v2.stable.models.list_containers_checkout_status.ListContainersCheckoutStatus
|
3611
4226
|
)
|
3612
|
-
ListContainersSort =
|
4227
|
+
ListContainersSort = (
|
4228
|
+
benchling_api_client.v2.stable.models.list_containers_sort.ListContainersSort
|
4229
|
+
)
|
3613
4230
|
ListCustomEntitiesSort = (
|
3614
4231
|
benchling_api_client.v2.stable.models.list_custom_entities_sort.ListCustomEntitiesSort
|
3615
4232
|
)
|
4233
|
+
ListDatasetsSort = (
|
4234
|
+
benchling_api_client.v2.stable.models.list_datasets_sort.ListDatasetsSort
|
4235
|
+
)
|
3616
4236
|
ListDNAAlignmentsSort = (
|
3617
4237
|
benchling_api_client.v2.stable.models.list_dna_alignments_sort.ListDNAAlignmentsSort
|
3618
4238
|
)
|
3619
|
-
ListDNAOligosSort =
|
3620
|
-
|
4239
|
+
ListDNAOligosSort = (
|
4240
|
+
benchling_api_client.v2.stable.models.list_dna_oligos_sort.ListDNAOligosSort
|
4241
|
+
)
|
4242
|
+
ListDNASequencesSort = (
|
4243
|
+
benchling_api_client.v2.stable.models.list_dna_sequences_sort.ListDNASequencesSort
|
4244
|
+
)
|
3621
4245
|
ListEntriesReviewStatus = (
|
3622
4246
|
benchling_api_client.v2.stable.models.list_entries_review_status.ListEntriesReviewStatus
|
3623
4247
|
)
|
3624
|
-
ListEntriesSort =
|
3625
|
-
|
4248
|
+
ListEntriesSort = (
|
4249
|
+
benchling_api_client.v2.stable.models.list_entries_sort.ListEntriesSort
|
4250
|
+
)
|
4251
|
+
ListEnzymesSort = (
|
4252
|
+
benchling_api_client.v2.stable.models.list_enzymes_sort.ListEnzymesSort
|
4253
|
+
)
|
3626
4254
|
ListFeatureLibrariesSort = (
|
3627
4255
|
benchling_api_client.v2.stable.models.list_feature_libraries_sort.ListFeatureLibrariesSort
|
3628
4256
|
)
|
3629
4257
|
ListFeaturesMatchType = (
|
3630
4258
|
benchling_api_client.v2.stable.models.list_features_match_type.ListFeaturesMatchType
|
3631
4259
|
)
|
3632
|
-
|
3633
|
-
|
3634
|
-
|
3635
|
-
|
3636
|
-
|
4260
|
+
ListFilesSort = benchling_api_client.v2.stable.models.list_files_sort.ListFilesSort
|
4261
|
+
ListFoldersSection = (
|
4262
|
+
benchling_api_client.v2.stable.models.list_folders_section.ListFoldersSection
|
4263
|
+
)
|
4264
|
+
ListFoldersSort = (
|
4265
|
+
benchling_api_client.v2.stable.models.list_folders_sort.ListFoldersSort
|
4266
|
+
)
|
4267
|
+
ListLocationsSort = (
|
4268
|
+
benchling_api_client.v2.stable.models.list_locations_sort.ListLocationsSort
|
4269
|
+
)
|
4270
|
+
ListMixturesSort = (
|
4271
|
+
benchling_api_client.v2.stable.models.list_mixtures_sort.ListMixturesSort
|
4272
|
+
)
|
4273
|
+
ListMoleculesSort = (
|
4274
|
+
benchling_api_client.v2.stable.models.list_molecules_sort.ListMoleculesSort
|
4275
|
+
)
|
3637
4276
|
ListNucleotideAlignmentsSort = (
|
3638
4277
|
benchling_api_client.v2.stable.models.list_nucleotide_alignments_sort.ListNucleotideAlignmentsSort
|
3639
4278
|
)
|
3640
|
-
ListOligosSort =
|
4279
|
+
ListOligosSort = (
|
4280
|
+
benchling_api_client.v2.stable.models.list_oligos_sort.ListOligosSort
|
4281
|
+
)
|
3641
4282
|
ListOrganizationsSort = (
|
3642
4283
|
benchling_api_client.v2.stable.models.list_organizations_sort.ListOrganizationsSort
|
3643
4284
|
)
|
3644
|
-
ListPlatesSort =
|
3645
|
-
|
3646
|
-
|
3647
|
-
|
4285
|
+
ListPlatesSort = (
|
4286
|
+
benchling_api_client.v2.stable.models.list_plates_sort.ListPlatesSort
|
4287
|
+
)
|
4288
|
+
ListProjectsSort = (
|
4289
|
+
benchling_api_client.v2.stable.models.list_projects_sort.ListProjectsSort
|
4290
|
+
)
|
4291
|
+
ListRNAOligosSort = (
|
4292
|
+
benchling_api_client.v2.stable.models.list_rna_oligos_sort.ListRNAOligosSort
|
4293
|
+
)
|
4294
|
+
ListRNASequencesSort = (
|
4295
|
+
benchling_api_client.v2.stable.models.list_rna_sequences_sort.ListRNASequencesSort
|
4296
|
+
)
|
3648
4297
|
ListTeamsSort = benchling_api_client.v2.stable.models.list_teams_sort.ListTeamsSort
|
4298
|
+
ListTestOrdersSort = (
|
4299
|
+
benchling_api_client.v2.stable.models.list_test_orders_sort.ListTestOrdersSort
|
4300
|
+
)
|
3649
4301
|
ListUsersSort = benchling_api_client.v2.stable.models.list_users_sort.ListUsersSort
|
3650
4302
|
ListWorkflowFlowchartsSort = (
|
3651
4303
|
benchling_api_client.v2.stable.models.list_workflow_flowcharts_sort.ListWorkflowFlowchartsSort
|
@@ -3653,40 +4305,65 @@ if TYPE_CHECKING:
|
|
3653
4305
|
ListWorkflowTasksScheduledOn = (
|
3654
4306
|
benchling_api_client.v2.stable.models.list_workflow_tasks_scheduled_on.ListWorkflowTasksScheduledOn
|
3655
4307
|
)
|
4308
|
+
ListingError = benchling_api_client.v2.stable.models.listing_error.ListingError
|
3656
4309
|
Location = benchling_api_client.v2.stable.models.location.Location
|
3657
|
-
LocationCreate =
|
3658
|
-
|
3659
|
-
|
3660
|
-
|
4310
|
+
LocationCreate = (
|
4311
|
+
benchling_api_client.v2.stable.models.location_create.LocationCreate
|
4312
|
+
)
|
4313
|
+
LocationSchema = (
|
4314
|
+
benchling_api_client.v2.stable.models.location_schema.LocationSchema
|
4315
|
+
)
|
4316
|
+
LocationSchemaType = (
|
4317
|
+
benchling_api_client.v2.stable.models.location_schema_type.LocationSchemaType
|
4318
|
+
)
|
4319
|
+
LocationSchemasList = (
|
4320
|
+
benchling_api_client.v2.stable.models.location_schemas_list.LocationSchemasList
|
4321
|
+
)
|
3661
4322
|
LocationSchemasPaginatedList = (
|
3662
4323
|
benchling_api_client.v2.stable.models.location_schemas_paginated_list.LocationSchemasPaginatedList
|
3663
4324
|
)
|
3664
|
-
LocationUpdate =
|
4325
|
+
LocationUpdate = (
|
4326
|
+
benchling_api_client.v2.stable.models.location_update.LocationUpdate
|
4327
|
+
)
|
3665
4328
|
LocationsArchivalChange = (
|
3666
4329
|
benchling_api_client.v2.stable.models.locations_archival_change.LocationsArchivalChange
|
3667
4330
|
)
|
3668
|
-
LocationsArchive =
|
4331
|
+
LocationsArchive = (
|
4332
|
+
benchling_api_client.v2.stable.models.locations_archive.LocationsArchive
|
4333
|
+
)
|
3669
4334
|
LocationsArchiveReason = (
|
3670
4335
|
benchling_api_client.v2.stable.models.locations_archive_reason.LocationsArchiveReason
|
3671
4336
|
)
|
3672
|
-
LocationsBulkGet =
|
4337
|
+
LocationsBulkGet = (
|
4338
|
+
benchling_api_client.v2.stable.models.locations_bulk_get.LocationsBulkGet
|
4339
|
+
)
|
3673
4340
|
LocationsPaginatedList = (
|
3674
4341
|
benchling_api_client.v2.stable.models.locations_paginated_list.LocationsPaginatedList
|
3675
4342
|
)
|
3676
|
-
LocationsUnarchive =
|
3677
|
-
|
4343
|
+
LocationsUnarchive = (
|
4344
|
+
benchling_api_client.v2.stable.models.locations_unarchive.LocationsUnarchive
|
4345
|
+
)
|
4346
|
+
LookupTableNotePart = (
|
4347
|
+
benchling_api_client.v2.stable.models.lookup_table_note_part.LookupTableNotePart
|
4348
|
+
)
|
3678
4349
|
LookupTableNotePartType = (
|
3679
4350
|
benchling_api_client.v2.stable.models.lookup_table_note_part_type.LookupTableNotePartType
|
3680
4351
|
)
|
3681
|
-
MarkdownUiBlock =
|
4352
|
+
MarkdownUiBlock = (
|
4353
|
+
benchling_api_client.v2.stable.models.markdown_ui_block.MarkdownUiBlock
|
4354
|
+
)
|
3682
4355
|
MarkdownUiBlockCreate = (
|
3683
4356
|
benchling_api_client.v2.stable.models.markdown_ui_block_create.MarkdownUiBlockCreate
|
3684
4357
|
)
|
3685
|
-
MarkdownUiBlockType =
|
4358
|
+
MarkdownUiBlockType = (
|
4359
|
+
benchling_api_client.v2.stable.models.markdown_ui_block_type.MarkdownUiBlockType
|
4360
|
+
)
|
3686
4361
|
MarkdownUiBlockUpdate = (
|
3687
4362
|
benchling_api_client.v2.stable.models.markdown_ui_block_update.MarkdownUiBlockUpdate
|
3688
4363
|
)
|
3689
|
-
MatchBasesRequest =
|
4364
|
+
MatchBasesRequest = (
|
4365
|
+
benchling_api_client.v2.stable.models.match_bases_request.MatchBasesRequest
|
4366
|
+
)
|
3690
4367
|
MatchBasesRequestArchiveReason = (
|
3691
4368
|
benchling_api_client.v2.stable.models.match_bases_request_archive_reason.MatchBasesRequestArchiveReason
|
3692
4369
|
)
|
@@ -3695,18 +4372,32 @@ if TYPE_CHECKING:
|
|
3695
4372
|
)
|
3696
4373
|
Measurement = benchling_api_client.v2.stable.models.measurement.Measurement
|
3697
4374
|
Membership = benchling_api_client.v2.stable.models.membership.Membership
|
3698
|
-
MembershipCreate =
|
3699
|
-
|
3700
|
-
|
3701
|
-
|
3702
|
-
|
4375
|
+
MembershipCreate = (
|
4376
|
+
benchling_api_client.v2.stable.models.membership_create.MembershipCreate
|
4377
|
+
)
|
4378
|
+
MembershipCreateRole = (
|
4379
|
+
benchling_api_client.v2.stable.models.membership_create_role.MembershipCreateRole
|
4380
|
+
)
|
4381
|
+
MembershipRole = (
|
4382
|
+
benchling_api_client.v2.stable.models.membership_role.MembershipRole
|
4383
|
+
)
|
4384
|
+
MembershipUpdate = (
|
4385
|
+
benchling_api_client.v2.stable.models.membership_update.MembershipUpdate
|
4386
|
+
)
|
4387
|
+
MembershipUpdateRole = (
|
4388
|
+
benchling_api_client.v2.stable.models.membership_update_role.MembershipUpdateRole
|
4389
|
+
)
|
3703
4390
|
MembershipsPaginatedList = (
|
3704
4391
|
benchling_api_client.v2.stable.models.memberships_paginated_list.MembershipsPaginatedList
|
3705
4392
|
)
|
3706
4393
|
Mixture = benchling_api_client.v2.stable.models.mixture.Mixture
|
3707
|
-
MixtureBulkUpdate =
|
4394
|
+
MixtureBulkUpdate = (
|
4395
|
+
benchling_api_client.v2.stable.models.mixture_bulk_update.MixtureBulkUpdate
|
4396
|
+
)
|
3708
4397
|
MixtureCreate = benchling_api_client.v2.stable.models.mixture_create.MixtureCreate
|
3709
|
-
MixtureCreator =
|
4398
|
+
MixtureCreator = (
|
4399
|
+
benchling_api_client.v2.stable.models.mixture_creator.MixtureCreator
|
4400
|
+
)
|
3710
4401
|
MixtureMeasurementUnits = (
|
3711
4402
|
benchling_api_client.v2.stable.models.mixture_measurement_units.MixtureMeasurementUnits
|
3712
4403
|
)
|
@@ -3726,7 +4417,9 @@ if TYPE_CHECKING:
|
|
3726
4417
|
MixturesArchivalChange = (
|
3727
4418
|
benchling_api_client.v2.stable.models.mixtures_archival_change.MixturesArchivalChange
|
3728
4419
|
)
|
3729
|
-
MixturesArchive =
|
4420
|
+
MixturesArchive = (
|
4421
|
+
benchling_api_client.v2.stable.models.mixtures_archive.MixturesArchive
|
4422
|
+
)
|
3730
4423
|
MixturesBulkCreateRequest = (
|
3731
4424
|
benchling_api_client.v2.stable.models.mixtures_bulk_create_request.MixturesBulkCreateRequest
|
3732
4425
|
)
|
@@ -3736,29 +4429,43 @@ if TYPE_CHECKING:
|
|
3736
4429
|
MixturesPaginatedList = (
|
3737
4430
|
benchling_api_client.v2.stable.models.mixtures_paginated_list.MixturesPaginatedList
|
3738
4431
|
)
|
3739
|
-
MixturesUnarchive =
|
4432
|
+
MixturesUnarchive = (
|
4433
|
+
benchling_api_client.v2.stable.models.mixtures_unarchive.MixturesUnarchive
|
4434
|
+
)
|
3740
4435
|
Molecule = benchling_api_client.v2.stable.models.molecule.Molecule
|
3741
|
-
MoleculeBaseRequest =
|
4436
|
+
MoleculeBaseRequest = (
|
4437
|
+
benchling_api_client.v2.stable.models.molecule_base_request.MoleculeBaseRequest
|
4438
|
+
)
|
3742
4439
|
MoleculeBaseRequestForCreate = (
|
3743
4440
|
benchling_api_client.v2.stable.models.molecule_base_request_for_create.MoleculeBaseRequestForCreate
|
3744
4441
|
)
|
3745
|
-
MoleculeBulkUpdate =
|
4442
|
+
MoleculeBulkUpdate = (
|
4443
|
+
benchling_api_client.v2.stable.models.molecule_bulk_update.MoleculeBulkUpdate
|
4444
|
+
)
|
3746
4445
|
MoleculeBulkUpsertRequest = (
|
3747
4446
|
benchling_api_client.v2.stable.models.molecule_bulk_upsert_request.MoleculeBulkUpsertRequest
|
3748
4447
|
)
|
3749
|
-
MoleculeCreate =
|
3750
|
-
|
4448
|
+
MoleculeCreate = (
|
4449
|
+
benchling_api_client.v2.stable.models.molecule_create.MoleculeCreate
|
4450
|
+
)
|
4451
|
+
MoleculeStructure = (
|
4452
|
+
benchling_api_client.v2.stable.models.molecule_structure.MoleculeStructure
|
4453
|
+
)
|
3751
4454
|
MoleculeStructureStructureFormat = (
|
3752
4455
|
benchling_api_client.v2.stable.models.molecule_structure_structure_format.MoleculeStructureStructureFormat
|
3753
4456
|
)
|
3754
|
-
MoleculeUpdate =
|
4457
|
+
MoleculeUpdate = (
|
4458
|
+
benchling_api_client.v2.stable.models.molecule_update.MoleculeUpdate
|
4459
|
+
)
|
3755
4460
|
MoleculeUpsertRequest = (
|
3756
4461
|
benchling_api_client.v2.stable.models.molecule_upsert_request.MoleculeUpsertRequest
|
3757
4462
|
)
|
3758
4463
|
MoleculesArchivalChange = (
|
3759
4464
|
benchling_api_client.v2.stable.models.molecules_archival_change.MoleculesArchivalChange
|
3760
4465
|
)
|
3761
|
-
MoleculesArchive =
|
4466
|
+
MoleculesArchive = (
|
4467
|
+
benchling_api_client.v2.stable.models.molecules_archive.MoleculesArchive
|
4468
|
+
)
|
3762
4469
|
MoleculesArchiveReason = (
|
3763
4470
|
benchling_api_client.v2.stable.models.molecules_archive_reason.MoleculesArchiveReason
|
3764
4471
|
)
|
@@ -3774,38 +4481,59 @@ if TYPE_CHECKING:
|
|
3774
4481
|
MoleculesPaginatedList = (
|
3775
4482
|
benchling_api_client.v2.stable.models.molecules_paginated_list.MoleculesPaginatedList
|
3776
4483
|
)
|
3777
|
-
MoleculesUnarchive =
|
4484
|
+
MoleculesUnarchive = (
|
4485
|
+
benchling_api_client.v2.stable.models.molecules_unarchive.MoleculesUnarchive
|
4486
|
+
)
|
3778
4487
|
Monomer = benchling_api_client.v2.stable.models.monomer.Monomer
|
3779
|
-
MonomerBaseRequest =
|
4488
|
+
MonomerBaseRequest = (
|
4489
|
+
benchling_api_client.v2.stable.models.monomer_base_request.MonomerBaseRequest
|
4490
|
+
)
|
3780
4491
|
MonomerCreate = benchling_api_client.v2.stable.models.monomer_create.MonomerCreate
|
3781
|
-
MonomerPolymerType =
|
4492
|
+
MonomerPolymerType = (
|
4493
|
+
benchling_api_client.v2.stable.models.monomer_polymer_type.MonomerPolymerType
|
4494
|
+
)
|
3782
4495
|
MonomerType = benchling_api_client.v2.stable.models.monomer_type.MonomerType
|
3783
4496
|
MonomerUpdate = benchling_api_client.v2.stable.models.monomer_update.MonomerUpdate
|
3784
|
-
MonomerVisualSymbol =
|
4497
|
+
MonomerVisualSymbol = (
|
4498
|
+
benchling_api_client.v2.stable.models.monomer_visual_symbol.MonomerVisualSymbol
|
4499
|
+
)
|
3785
4500
|
MonomersArchivalChange = (
|
3786
4501
|
benchling_api_client.v2.stable.models.monomers_archival_change.MonomersArchivalChange
|
3787
4502
|
)
|
3788
|
-
MonomersArchive =
|
4503
|
+
MonomersArchive = (
|
4504
|
+
benchling_api_client.v2.stable.models.monomers_archive.MonomersArchive
|
4505
|
+
)
|
3789
4506
|
MonomersArchiveReason = (
|
3790
4507
|
benchling_api_client.v2.stable.models.monomers_archive_reason.MonomersArchiveReason
|
3791
4508
|
)
|
3792
4509
|
MonomersPaginatedList = (
|
3793
4510
|
benchling_api_client.v2.stable.models.monomers_paginated_list.MonomersPaginatedList
|
3794
4511
|
)
|
3795
|
-
MonomersUnarchive =
|
4512
|
+
MonomersUnarchive = (
|
4513
|
+
benchling_api_client.v2.stable.models.monomers_unarchive.MonomersUnarchive
|
4514
|
+
)
|
3796
4515
|
MultipleContainersTransfer = (
|
3797
4516
|
benchling_api_client.v2.stable.models.multiple_containers_transfer.MultipleContainersTransfer
|
3798
4517
|
)
|
3799
4518
|
MultipleContainersTransfersList = (
|
3800
4519
|
benchling_api_client.v2.stable.models.multiple_containers_transfers_list.MultipleContainersTransfersList
|
3801
4520
|
)
|
3802
|
-
|
4521
|
+
NameTemplatePart = (
|
4522
|
+
benchling_api_client.v2.stable.models.name_template_part.NameTemplatePart
|
4523
|
+
)
|
4524
|
+
NamingStrategy = (
|
4525
|
+
benchling_api_client.v2.stable.models.naming_strategy.NamingStrategy
|
4526
|
+
)
|
3803
4527
|
NotFoundError = benchling_api_client.v2.stable.models.not_found_error.NotFoundError
|
3804
|
-
NotFoundErrorError =
|
4528
|
+
NotFoundErrorError = (
|
4529
|
+
benchling_api_client.v2.stable.models.not_found_error_error.NotFoundErrorError
|
4530
|
+
)
|
3805
4531
|
NotFoundErrorErrorType = (
|
3806
4532
|
benchling_api_client.v2.stable.models.not_found_error_error_type.NotFoundErrorErrorType
|
3807
4533
|
)
|
3808
|
-
NucleotideAlignment =
|
4534
|
+
NucleotideAlignment = (
|
4535
|
+
benchling_api_client.v2.stable.models.nucleotide_alignment.NucleotideAlignment
|
4536
|
+
)
|
3809
4537
|
NucleotideAlignmentBase = (
|
3810
4538
|
benchling_api_client.v2.stable.models.nucleotide_alignment_base.NucleotideAlignmentBase
|
3811
4539
|
)
|
@@ -3848,7 +4576,9 @@ if TYPE_CHECKING:
|
|
3848
4576
|
NucleotideTemplateAlignmentCreate = (
|
3849
4577
|
benchling_api_client.v2.stable.models.nucleotide_template_alignment_create.NucleotideTemplateAlignmentCreate
|
3850
4578
|
)
|
3851
|
-
OAuthBadRequestError =
|
4579
|
+
OAuthBadRequestError = (
|
4580
|
+
benchling_api_client.v2.stable.models.o_auth_bad_request_error.OAuthBadRequestError
|
4581
|
+
)
|
3852
4582
|
OAuthBadRequestErrorError = (
|
3853
4583
|
benchling_api_client.v2.stable.models.o_auth_bad_request_error_error.OAuthBadRequestErrorError
|
3854
4584
|
)
|
@@ -3865,7 +4595,9 @@ if TYPE_CHECKING:
|
|
3865
4595
|
benchling_api_client.v2.stable.models.o_auth_unauthorized_error_error_type.OAuthUnauthorizedErrorErrorType
|
3866
4596
|
)
|
3867
4597
|
Oligo = benchling_api_client.v2.stable.models.oligo.Oligo
|
3868
|
-
OligoBaseRequest =
|
4598
|
+
OligoBaseRequest = (
|
4599
|
+
benchling_api_client.v2.stable.models.oligo_base_request.OligoBaseRequest
|
4600
|
+
)
|
3869
4601
|
OligoBaseRequestForCreate = (
|
3870
4602
|
benchling_api_client.v2.stable.models.oligo_base_request_for_create.OligoBaseRequestForCreate
|
3871
4603
|
)
|
@@ -3873,18 +4605,30 @@ if TYPE_CHECKING:
|
|
3873
4605
|
benchling_api_client.v2.stable.models.oligo_bulk_upsert_request.OligoBulkUpsertRequest
|
3874
4606
|
)
|
3875
4607
|
OligoCreate = benchling_api_client.v2.stable.models.oligo_create.OligoCreate
|
3876
|
-
OligoNucleotideType =
|
4608
|
+
OligoNucleotideType = (
|
4609
|
+
benchling_api_client.v2.stable.models.oligo_nucleotide_type.OligoNucleotideType
|
4610
|
+
)
|
3877
4611
|
OligoUpdate = benchling_api_client.v2.stable.models.oligo_update.OligoUpdate
|
3878
|
-
OligoUpsertRequest =
|
3879
|
-
|
4612
|
+
OligoUpsertRequest = (
|
4613
|
+
benchling_api_client.v2.stable.models.oligo_upsert_request.OligoUpsertRequest
|
4614
|
+
)
|
4615
|
+
OligosArchivalChange = (
|
4616
|
+
benchling_api_client.v2.stable.models.oligos_archival_change.OligosArchivalChange
|
4617
|
+
)
|
3880
4618
|
OligosArchive = benchling_api_client.v2.stable.models.oligos_archive.OligosArchive
|
3881
4619
|
OligosBulkCreateRequest = (
|
3882
4620
|
benchling_api_client.v2.stable.models.oligos_bulk_create_request.OligosBulkCreateRequest
|
3883
4621
|
)
|
3884
4622
|
OligosBulkGet = benchling_api_client.v2.stable.models.oligos_bulk_get.OligosBulkGet
|
3885
|
-
OligosPaginatedList =
|
3886
|
-
|
3887
|
-
|
4623
|
+
OligosPaginatedList = (
|
4624
|
+
benchling_api_client.v2.stable.models.oligos_paginated_list.OligosPaginatedList
|
4625
|
+
)
|
4626
|
+
OligosUnarchive = (
|
4627
|
+
benchling_api_client.v2.stable.models.oligos_unarchive.OligosUnarchive
|
4628
|
+
)
|
4629
|
+
OptimizeCodons = (
|
4630
|
+
benchling_api_client.v2.stable.models.optimize_codons.OptimizeCodons
|
4631
|
+
)
|
3888
4632
|
OptimizeCodonsGcContent = (
|
3889
4633
|
benchling_api_client.v2.stable.models.optimize_codons_gc_content.OptimizeCodonsGcContent
|
3890
4634
|
)
|
@@ -3892,7 +4636,9 @@ if TYPE_CHECKING:
|
|
3892
4636
|
benchling_api_client.v2.stable.models.optimize_codons_hairpin_parameters.OptimizeCodonsHairpinParameters
|
3893
4637
|
)
|
3894
4638
|
Organization = benchling_api_client.v2.stable.models.organization.Organization
|
3895
|
-
OrganizationSummary =
|
4639
|
+
OrganizationSummary = (
|
4640
|
+
benchling_api_client.v2.stable.models.organization_summary.OrganizationSummary
|
4641
|
+
)
|
3896
4642
|
OrganizationsPaginatedList = (
|
3897
4643
|
benchling_api_client.v2.stable.models.organizations_paginated_list.OrganizationsPaginatedList
|
3898
4644
|
)
|
@@ -3900,7 +4646,9 @@ if TYPE_CHECKING:
|
|
3900
4646
|
PartySummary = benchling_api_client.v2.stable.models.party_summary.PartySummary
|
3901
4647
|
Plate = benchling_api_client.v2.stable.models.plate.Plate
|
3902
4648
|
PlateCreate = benchling_api_client.v2.stable.models.plate_create.PlateCreate
|
3903
|
-
PlateCreateWells =
|
4649
|
+
PlateCreateWells = (
|
4650
|
+
benchling_api_client.v2.stable.models.plate_create_wells.PlateCreateWells
|
4651
|
+
)
|
3904
4652
|
PlateCreateWellsAdditionalProperty = (
|
3905
4653
|
benchling_api_client.v2.stable.models.plate_create_wells_additional_property.PlateCreateWellsAdditionalProperty
|
3906
4654
|
)
|
@@ -3914,20 +4662,32 @@ if TYPE_CHECKING:
|
|
3914
4662
|
PlateSchemaContainerSchema = (
|
3915
4663
|
benchling_api_client.v2.stable.models.plate_schema_container_schema.PlateSchemaContainerSchema
|
3916
4664
|
)
|
3917
|
-
PlateSchemaType =
|
3918
|
-
|
4665
|
+
PlateSchemaType = (
|
4666
|
+
benchling_api_client.v2.stable.models.plate_schema_type.PlateSchemaType
|
4667
|
+
)
|
4668
|
+
PlateSchemasList = (
|
4669
|
+
benchling_api_client.v2.stable.models.plate_schemas_list.PlateSchemasList
|
4670
|
+
)
|
3919
4671
|
PlateSchemasPaginatedList = (
|
3920
4672
|
benchling_api_client.v2.stable.models.plate_schemas_paginated_list.PlateSchemasPaginatedList
|
3921
4673
|
)
|
3922
4674
|
PlateType = benchling_api_client.v2.stable.models.plate_type.PlateType
|
3923
4675
|
PlateUpdate = benchling_api_client.v2.stable.models.plate_update.PlateUpdate
|
3924
4676
|
PlateWells = benchling_api_client.v2.stable.models.plate_wells.PlateWells
|
3925
|
-
PlatesArchivalChange =
|
4677
|
+
PlatesArchivalChange = (
|
4678
|
+
benchling_api_client.v2.stable.models.plates_archival_change.PlatesArchivalChange
|
4679
|
+
)
|
3926
4680
|
PlatesArchive = benchling_api_client.v2.stable.models.plates_archive.PlatesArchive
|
3927
|
-
PlatesArchiveReason =
|
4681
|
+
PlatesArchiveReason = (
|
4682
|
+
benchling_api_client.v2.stable.models.plates_archive_reason.PlatesArchiveReason
|
4683
|
+
)
|
3928
4684
|
PlatesBulkGet = benchling_api_client.v2.stable.models.plates_bulk_get.PlatesBulkGet
|
3929
|
-
PlatesPaginatedList =
|
3930
|
-
|
4685
|
+
PlatesPaginatedList = (
|
4686
|
+
benchling_api_client.v2.stable.models.plates_paginated_list.PlatesPaginatedList
|
4687
|
+
)
|
4688
|
+
PlatesUnarchive = (
|
4689
|
+
benchling_api_client.v2.stable.models.plates_unarchive.PlatesUnarchive
|
4690
|
+
)
|
3931
4691
|
Primer = benchling_api_client.v2.stable.models.primer.Primer
|
3932
4692
|
PrintLabels = benchling_api_client.v2.stable.models.print_labels.PrintLabels
|
3933
4693
|
Printer = benchling_api_client.v2.stable.models.printer.Printer
|
@@ -3936,43 +4696,67 @@ if TYPE_CHECKING:
|
|
3936
4696
|
ProjectsArchivalChange = (
|
3937
4697
|
benchling_api_client.v2.stable.models.projects_archival_change.ProjectsArchivalChange
|
3938
4698
|
)
|
3939
|
-
ProjectsArchive =
|
4699
|
+
ProjectsArchive = (
|
4700
|
+
benchling_api_client.v2.stable.models.projects_archive.ProjectsArchive
|
4701
|
+
)
|
3940
4702
|
ProjectsArchiveReason = (
|
3941
4703
|
benchling_api_client.v2.stable.models.projects_archive_reason.ProjectsArchiveReason
|
3942
4704
|
)
|
3943
4705
|
ProjectsPaginatedList = (
|
3944
4706
|
benchling_api_client.v2.stable.models.projects_paginated_list.ProjectsPaginatedList
|
3945
4707
|
)
|
3946
|
-
ProjectsUnarchive =
|
3947
|
-
|
3948
|
-
|
4708
|
+
ProjectsUnarchive = (
|
4709
|
+
benchling_api_client.v2.stable.models.projects_unarchive.ProjectsUnarchive
|
4710
|
+
)
|
4711
|
+
ReducedPattern = (
|
4712
|
+
benchling_api_client.v2.stable.models.reduced_pattern.ReducedPattern
|
4713
|
+
)
|
4714
|
+
RegisterEntities = (
|
4715
|
+
benchling_api_client.v2.stable.models.register_entities.RegisterEntities
|
4716
|
+
)
|
3949
4717
|
RegisteredEntitiesList = (
|
3950
4718
|
benchling_api_client.v2.stable.models.registered_entities_list.RegisteredEntitiesList
|
3951
4719
|
)
|
3952
|
-
RegistrationOrigin =
|
4720
|
+
RegistrationOrigin = (
|
4721
|
+
benchling_api_client.v2.stable.models.registration_origin.RegistrationOrigin
|
4722
|
+
)
|
3953
4723
|
RegistrationTableNotePart = (
|
3954
4724
|
benchling_api_client.v2.stable.models.registration_table_note_part.RegistrationTableNotePart
|
3955
4725
|
)
|
3956
4726
|
RegistrationTableNotePartType = (
|
3957
4727
|
benchling_api_client.v2.stable.models.registration_table_note_part_type.RegistrationTableNotePartType
|
3958
4728
|
)
|
3959
|
-
RegistriesList =
|
4729
|
+
RegistriesList = (
|
4730
|
+
benchling_api_client.v2.stable.models.registries_list.RegistriesList
|
4731
|
+
)
|
3960
4732
|
Registry = benchling_api_client.v2.stable.models.registry.Registry
|
3961
|
-
RegistrySchema =
|
4733
|
+
RegistrySchema = (
|
4734
|
+
benchling_api_client.v2.stable.models.registry_schema.RegistrySchema
|
4735
|
+
)
|
3962
4736
|
Request = benchling_api_client.v2.stable.models.request.Request
|
3963
4737
|
RequestBase = benchling_api_client.v2.stable.models.request_base.RequestBase
|
3964
4738
|
RequestCreate = benchling_api_client.v2.stable.models.request_create.RequestCreate
|
3965
|
-
RequestCreatedEvent =
|
4739
|
+
RequestCreatedEvent = (
|
4740
|
+
benchling_api_client.v2.stable.models.request_created_event.RequestCreatedEvent
|
4741
|
+
)
|
3966
4742
|
RequestCreatedEventEventType = (
|
3967
4743
|
benchling_api_client.v2.stable.models.request_created_event_event_type.RequestCreatedEventEventType
|
3968
4744
|
)
|
3969
|
-
RequestCreator =
|
3970
|
-
|
4745
|
+
RequestCreator = (
|
4746
|
+
benchling_api_client.v2.stable.models.request_creator.RequestCreator
|
4747
|
+
)
|
4748
|
+
RequestFulfillment = (
|
4749
|
+
benchling_api_client.v2.stable.models.request_fulfillment.RequestFulfillment
|
4750
|
+
)
|
3971
4751
|
RequestFulfillmentsPaginatedList = (
|
3972
4752
|
benchling_api_client.v2.stable.models.request_fulfillments_paginated_list.RequestFulfillmentsPaginatedList
|
3973
4753
|
)
|
3974
|
-
RequestRequestor =
|
3975
|
-
|
4754
|
+
RequestRequestor = (
|
4755
|
+
benchling_api_client.v2.stable.models.request_requestor.RequestRequestor
|
4756
|
+
)
|
4757
|
+
RequestResponse = (
|
4758
|
+
benchling_api_client.v2.stable.models.request_response.RequestResponse
|
4759
|
+
)
|
3976
4760
|
RequestResponseSamplesItem = (
|
3977
4761
|
benchling_api_client.v2.stable.models.request_response_samples_item.RequestResponseSamplesItem
|
3978
4762
|
)
|
@@ -3985,7 +4769,9 @@ if TYPE_CHECKING:
|
|
3985
4769
|
RequestResponseSamplesItemStatus = (
|
3986
4770
|
benchling_api_client.v2.stable.models.request_response_samples_item_status.RequestResponseSamplesItemStatus
|
3987
4771
|
)
|
3988
|
-
RequestSampleGroup =
|
4772
|
+
RequestSampleGroup = (
|
4773
|
+
benchling_api_client.v2.stable.models.request_sample_group.RequestSampleGroup
|
4774
|
+
)
|
3989
4775
|
RequestSampleGroupCreate = (
|
3990
4776
|
benchling_api_client.v2.stable.models.request_sample_group_create.RequestSampleGroupCreate
|
3991
4777
|
)
|
@@ -4005,17 +4791,23 @@ if TYPE_CHECKING:
|
|
4005
4791
|
RequestSchemaProperty = (
|
4006
4792
|
benchling_api_client.v2.stable.models.request_schema_property.RequestSchemaProperty
|
4007
4793
|
)
|
4008
|
-
RequestSchemaType =
|
4794
|
+
RequestSchemaType = (
|
4795
|
+
benchling_api_client.v2.stable.models.request_schema_type.RequestSchemaType
|
4796
|
+
)
|
4009
4797
|
RequestSchemasPaginatedList = (
|
4010
4798
|
benchling_api_client.v2.stable.models.request_schemas_paginated_list.RequestSchemasPaginatedList
|
4011
4799
|
)
|
4012
4800
|
RequestStatus = benchling_api_client.v2.stable.models.request_status.RequestStatus
|
4013
4801
|
RequestTask = benchling_api_client.v2.stable.models.request_task.RequestTask
|
4014
|
-
RequestTaskBase =
|
4802
|
+
RequestTaskBase = (
|
4803
|
+
benchling_api_client.v2.stable.models.request_task_base.RequestTaskBase
|
4804
|
+
)
|
4015
4805
|
RequestTaskBaseFields = (
|
4016
4806
|
benchling_api_client.v2.stable.models.request_task_base_fields.RequestTaskBaseFields
|
4017
4807
|
)
|
4018
|
-
RequestTaskSchema =
|
4808
|
+
RequestTaskSchema = (
|
4809
|
+
benchling_api_client.v2.stable.models.request_task_schema.RequestTaskSchema
|
4810
|
+
)
|
4019
4811
|
RequestTaskSchemaOrganization = (
|
4020
4812
|
benchling_api_client.v2.stable.models.request_task_schema_organization.RequestTaskSchemaOrganization
|
4021
4813
|
)
|
@@ -4040,7 +4832,9 @@ if TYPE_CHECKING:
|
|
4040
4832
|
RequestTasksBulkUpdateResponse = (
|
4041
4833
|
benchling_api_client.v2.stable.models.request_tasks_bulk_update_response.RequestTasksBulkUpdateResponse
|
4042
4834
|
)
|
4043
|
-
RequestTeamAssignee =
|
4835
|
+
RequestTeamAssignee = (
|
4836
|
+
benchling_api_client.v2.stable.models.request_team_assignee.RequestTeamAssignee
|
4837
|
+
)
|
4044
4838
|
RequestUpdate = benchling_api_client.v2.stable.models.request_update.RequestUpdate
|
4045
4839
|
RequestUpdatedFieldsEvent = (
|
4046
4840
|
benchling_api_client.v2.stable.models.request_updated_fields_event.RequestUpdatedFieldsEvent
|
@@ -4048,27 +4842,41 @@ if TYPE_CHECKING:
|
|
4048
4842
|
RequestUpdatedFieldsEventEventType = (
|
4049
4843
|
benchling_api_client.v2.stable.models.request_updated_fields_event_event_type.RequestUpdatedFieldsEventEventType
|
4050
4844
|
)
|
4051
|
-
RequestUserAssignee =
|
4052
|
-
|
4845
|
+
RequestUserAssignee = (
|
4846
|
+
benchling_api_client.v2.stable.models.request_user_assignee.RequestUserAssignee
|
4847
|
+
)
|
4848
|
+
RequestWriteBase = (
|
4849
|
+
benchling_api_client.v2.stable.models.request_write_base.RequestWriteBase
|
4850
|
+
)
|
4053
4851
|
RequestWriteTeamAssignee = (
|
4054
4852
|
benchling_api_client.v2.stable.models.request_write_team_assignee.RequestWriteTeamAssignee
|
4055
4853
|
)
|
4056
4854
|
RequestWriteUserAssignee = (
|
4057
4855
|
benchling_api_client.v2.stable.models.request_write_user_assignee.RequestWriteUserAssignee
|
4058
4856
|
)
|
4059
|
-
RequestsBulkGet =
|
4857
|
+
RequestsBulkGet = (
|
4858
|
+
benchling_api_client.v2.stable.models.requests_bulk_get.RequestsBulkGet
|
4859
|
+
)
|
4060
4860
|
RequestsPaginatedList = (
|
4061
4861
|
benchling_api_client.v2.stable.models.requests_paginated_list.RequestsPaginatedList
|
4062
4862
|
)
|
4063
|
-
ResultsTableNotePart =
|
4863
|
+
ResultsTableNotePart = (
|
4864
|
+
benchling_api_client.v2.stable.models.results_table_note_part.ResultsTableNotePart
|
4865
|
+
)
|
4064
4866
|
ResultsTableNotePartType = (
|
4065
4867
|
benchling_api_client.v2.stable.models.results_table_note_part_type.ResultsTableNotePartType
|
4066
4868
|
)
|
4067
4869
|
RnaAnnotation = benchling_api_client.v2.stable.models.rna_annotation.RnaAnnotation
|
4068
4870
|
RnaOligo = benchling_api_client.v2.stable.models.rna_oligo.RnaOligo
|
4069
|
-
RnaOligoBulkUpdate =
|
4070
|
-
|
4071
|
-
|
4871
|
+
RnaOligoBulkUpdate = (
|
4872
|
+
benchling_api_client.v2.stable.models.rna_oligo_bulk_update.RnaOligoBulkUpdate
|
4873
|
+
)
|
4874
|
+
RnaOligoCreate = (
|
4875
|
+
benchling_api_client.v2.stable.models.rna_oligo_create.RnaOligoCreate
|
4876
|
+
)
|
4877
|
+
RnaOligoUpdate = (
|
4878
|
+
benchling_api_client.v2.stable.models.rna_oligo_update.RnaOligoUpdate
|
4879
|
+
)
|
4072
4880
|
RnaOligoWithEntityType = (
|
4073
4881
|
benchling_api_client.v2.stable.models.rna_oligo_with_entity_type.RnaOligoWithEntityType
|
4074
4882
|
)
|
@@ -4078,7 +4886,9 @@ if TYPE_CHECKING:
|
|
4078
4886
|
RnaOligosArchivalChange = (
|
4079
4887
|
benchling_api_client.v2.stable.models.rna_oligos_archival_change.RnaOligosArchivalChange
|
4080
4888
|
)
|
4081
|
-
RnaOligosArchive =
|
4889
|
+
RnaOligosArchive = (
|
4890
|
+
benchling_api_client.v2.stable.models.rna_oligos_archive.RnaOligosArchive
|
4891
|
+
)
|
4082
4892
|
RnaOligosBulkCreateRequest = (
|
4083
4893
|
benchling_api_client.v2.stable.models.rna_oligos_bulk_create_request.RnaOligosBulkCreateRequest
|
4084
4894
|
)
|
@@ -4091,7 +4901,9 @@ if TYPE_CHECKING:
|
|
4091
4901
|
RnaOligosPaginatedList = (
|
4092
4902
|
benchling_api_client.v2.stable.models.rna_oligos_paginated_list.RnaOligosPaginatedList
|
4093
4903
|
)
|
4094
|
-
RnaOligosUnarchive =
|
4904
|
+
RnaOligosUnarchive = (
|
4905
|
+
benchling_api_client.v2.stable.models.rna_oligos_unarchive.RnaOligosUnarchive
|
4906
|
+
)
|
4095
4907
|
RnaSequence = benchling_api_client.v2.stable.models.rna_sequence.RnaSequence
|
4096
4908
|
RnaSequenceBaseRequest = (
|
4097
4909
|
benchling_api_client.v2.stable.models.rna_sequence_base_request.RnaSequenceBaseRequest
|
@@ -4105,20 +4917,30 @@ if TYPE_CHECKING:
|
|
4105
4917
|
RnaSequenceBulkUpdate = (
|
4106
4918
|
benchling_api_client.v2.stable.models.rna_sequence_bulk_update.RnaSequenceBulkUpdate
|
4107
4919
|
)
|
4108
|
-
RnaSequenceCreate =
|
4109
|
-
|
4920
|
+
RnaSequenceCreate = (
|
4921
|
+
benchling_api_client.v2.stable.models.rna_sequence_create.RnaSequenceCreate
|
4922
|
+
)
|
4923
|
+
RnaSequencePart = (
|
4924
|
+
benchling_api_client.v2.stable.models.rna_sequence_part.RnaSequencePart
|
4925
|
+
)
|
4110
4926
|
RnaSequenceRequestRegistryFields = (
|
4111
4927
|
benchling_api_client.v2.stable.models.rna_sequence_request_registry_fields.RnaSequenceRequestRegistryFields
|
4112
4928
|
)
|
4113
|
-
RnaSequenceUpdate =
|
4929
|
+
RnaSequenceUpdate = (
|
4930
|
+
benchling_api_client.v2.stable.models.rna_sequence_update.RnaSequenceUpdate
|
4931
|
+
)
|
4114
4932
|
RnaSequencesArchivalChange = (
|
4115
4933
|
benchling_api_client.v2.stable.models.rna_sequences_archival_change.RnaSequencesArchivalChange
|
4116
4934
|
)
|
4117
|
-
RnaSequencesArchive =
|
4935
|
+
RnaSequencesArchive = (
|
4936
|
+
benchling_api_client.v2.stable.models.rna_sequences_archive.RnaSequencesArchive
|
4937
|
+
)
|
4118
4938
|
RnaSequencesBulkCreateRequest = (
|
4119
4939
|
benchling_api_client.v2.stable.models.rna_sequences_bulk_create_request.RnaSequencesBulkCreateRequest
|
4120
4940
|
)
|
4121
|
-
RnaSequencesBulkGet =
|
4941
|
+
RnaSequencesBulkGet = (
|
4942
|
+
benchling_api_client.v2.stable.models.rna_sequences_bulk_get.RnaSequencesBulkGet
|
4943
|
+
)
|
4122
4944
|
RnaSequencesBulkUpdateRequest = (
|
4123
4945
|
benchling_api_client.v2.stable.models.rna_sequences_bulk_update_request.RnaSequencesBulkUpdateRequest
|
4124
4946
|
)
|
@@ -4129,8 +4951,12 @@ if TYPE_CHECKING:
|
|
4129
4951
|
benchling_api_client.v2.stable.models.rna_sequences_unarchive.RnaSequencesUnarchive
|
4130
4952
|
)
|
4131
4953
|
SampleGroup = benchling_api_client.v2.stable.models.sample_group.SampleGroup
|
4132
|
-
SampleGroupSamples =
|
4133
|
-
|
4954
|
+
SampleGroupSamples = (
|
4955
|
+
benchling_api_client.v2.stable.models.sample_group_samples.SampleGroupSamples
|
4956
|
+
)
|
4957
|
+
SampleGroupStatus = (
|
4958
|
+
benchling_api_client.v2.stable.models.sample_group_status.SampleGroupStatus
|
4959
|
+
)
|
4134
4960
|
SampleGroupStatusUpdate = (
|
4135
4961
|
benchling_api_client.v2.stable.models.sample_group_status_update.SampleGroupStatusUpdate
|
4136
4962
|
)
|
@@ -4154,7 +4980,9 @@ if TYPE_CHECKING:
|
|
4154
4980
|
benchling_api_client.v2.stable.models.schema_link_field_definition_type.SchemaLinkFieldDefinitionType
|
4155
4981
|
)
|
4156
4982
|
SchemaSummary = benchling_api_client.v2.stable.models.schema_summary.SchemaSummary
|
4157
|
-
SearchBasesRequest =
|
4983
|
+
SearchBasesRequest = (
|
4984
|
+
benchling_api_client.v2.stable.models.search_bases_request.SearchBasesRequest
|
4985
|
+
)
|
4158
4986
|
SearchBasesRequestArchiveReason = (
|
4159
4987
|
benchling_api_client.v2.stable.models.search_bases_request_archive_reason.SearchBasesRequestArchiveReason
|
4160
4988
|
)
|
@@ -4173,7 +5001,9 @@ if TYPE_CHECKING:
|
|
4173
5001
|
SearchInputMultiValueUiBlockUpdate = (
|
4174
5002
|
benchling_api_client.v2.stable.models.search_input_multi_value_ui_block_update.SearchInputMultiValueUiBlockUpdate
|
4175
5003
|
)
|
4176
|
-
SearchInputUiBlock =
|
5004
|
+
SearchInputUiBlock = (
|
5005
|
+
benchling_api_client.v2.stable.models.search_input_ui_block.SearchInputUiBlock
|
5006
|
+
)
|
4177
5007
|
SearchInputUiBlockCreate = (
|
4178
5008
|
benchling_api_client.v2.stable.models.search_input_ui_block_create.SearchInputUiBlockCreate
|
4179
5009
|
)
|
@@ -4186,10 +5016,18 @@ if TYPE_CHECKING:
|
|
4186
5016
|
SearchInputUiBlockUpdate = (
|
4187
5017
|
benchling_api_client.v2.stable.models.search_input_ui_block_update.SearchInputUiBlockUpdate
|
4188
5018
|
)
|
4189
|
-
SectionUiBlock =
|
4190
|
-
|
4191
|
-
|
4192
|
-
|
5019
|
+
SectionUiBlock = (
|
5020
|
+
benchling_api_client.v2.stable.models.section_ui_block.SectionUiBlock
|
5021
|
+
)
|
5022
|
+
SectionUiBlockCreate = (
|
5023
|
+
benchling_api_client.v2.stable.models.section_ui_block_create.SectionUiBlockCreate
|
5024
|
+
)
|
5025
|
+
SectionUiBlockType = (
|
5026
|
+
benchling_api_client.v2.stable.models.section_ui_block_type.SectionUiBlockType
|
5027
|
+
)
|
5028
|
+
SectionUiBlockUpdate = (
|
5029
|
+
benchling_api_client.v2.stable.models.section_ui_block_update.SectionUiBlockUpdate
|
5030
|
+
)
|
4193
5031
|
SecureTextAppConfigItem = (
|
4194
5032
|
benchling_api_client.v2.stable.models.secure_text_app_config_item.SecureTextAppConfigItem
|
4195
5033
|
)
|
@@ -4208,7 +5046,9 @@ if TYPE_CHECKING:
|
|
4208
5046
|
SelectorInputMultiValueUiBlockUpdate = (
|
4209
5047
|
benchling_api_client.v2.stable.models.selector_input_multi_value_ui_block_update.SelectorInputMultiValueUiBlockUpdate
|
4210
5048
|
)
|
4211
|
-
SelectorInputUiBlock =
|
5049
|
+
SelectorInputUiBlock = (
|
5050
|
+
benchling_api_client.v2.stable.models.selector_input_ui_block.SelectorInputUiBlock
|
5051
|
+
)
|
4212
5052
|
SelectorInputUiBlockCreate = (
|
4213
5053
|
benchling_api_client.v2.stable.models.selector_input_ui_block_create.SelectorInputUiBlockCreate
|
4214
5054
|
)
|
@@ -4218,7 +5058,9 @@ if TYPE_CHECKING:
|
|
4218
5058
|
SelectorInputUiBlockUpdate = (
|
4219
5059
|
benchling_api_client.v2.stable.models.selector_input_ui_block_update.SelectorInputUiBlockUpdate
|
4220
5060
|
)
|
4221
|
-
SequenceFeatureBase =
|
5061
|
+
SequenceFeatureBase = (
|
5062
|
+
benchling_api_client.v2.stable.models.sequence_feature_base.SequenceFeatureBase
|
5063
|
+
)
|
4222
5064
|
SequenceFeatureCustomField = (
|
4223
5065
|
benchling_api_client.v2.stable.models.sequence_feature_custom_field.SequenceFeatureCustomField
|
4224
5066
|
)
|
@@ -4228,8 +5070,12 @@ if TYPE_CHECKING:
|
|
4228
5070
|
SimpleFieldDefinitionType = (
|
4229
5071
|
benchling_api_client.v2.stable.models.simple_field_definition_type.SimpleFieldDefinitionType
|
4230
5072
|
)
|
4231
|
-
SimpleNotePart =
|
4232
|
-
|
5073
|
+
SimpleNotePart = (
|
5074
|
+
benchling_api_client.v2.stable.models.simple_note_part.SimpleNotePart
|
5075
|
+
)
|
5076
|
+
SimpleNotePartType = (
|
5077
|
+
benchling_api_client.v2.stable.models.simple_note_part_type.SimpleNotePartType
|
5078
|
+
)
|
4233
5079
|
StageEntry = benchling_api_client.v2.stable.models.stage_entry.StageEntry
|
4234
5080
|
StageEntryCreatedEvent = (
|
4235
5081
|
benchling_api_client.v2.stable.models.stage_entry_created_event.StageEntryCreatedEvent
|
@@ -4259,9 +5105,13 @@ if TYPE_CHECKING:
|
|
4259
5105
|
benchling_api_client.v2.stable.models.structured_table_column_info.StructuredTableColumnInfo
|
4260
5106
|
)
|
4261
5107
|
TableNotePart = benchling_api_client.v2.stable.models.table_note_part.TableNotePart
|
4262
|
-
TableNotePartType =
|
5108
|
+
TableNotePartType = (
|
5109
|
+
benchling_api_client.v2.stable.models.table_note_part_type.TableNotePartType
|
5110
|
+
)
|
4263
5111
|
TableUiBlock = benchling_api_client.v2.stable.models.table_ui_block.TableUiBlock
|
4264
|
-
TableUiBlockCreate =
|
5112
|
+
TableUiBlockCreate = (
|
5113
|
+
benchling_api_client.v2.stable.models.table_ui_block_create.TableUiBlockCreate
|
5114
|
+
)
|
4265
5115
|
TableUiBlockDataFrameSource = (
|
4266
5116
|
benchling_api_client.v2.stable.models.table_ui_block_data_frame_source.TableUiBlockDataFrameSource
|
4267
5117
|
)
|
@@ -4274,35 +5124,76 @@ if TYPE_CHECKING:
|
|
4274
5124
|
TableUiBlockDatasetSourceType = (
|
4275
5125
|
benchling_api_client.v2.stable.models.table_ui_block_dataset_source_type.TableUiBlockDatasetSourceType
|
4276
5126
|
)
|
4277
|
-
TableUiBlockSource =
|
4278
|
-
|
4279
|
-
|
5127
|
+
TableUiBlockSource = (
|
5128
|
+
benchling_api_client.v2.stable.models.table_ui_block_source.TableUiBlockSource
|
5129
|
+
)
|
5130
|
+
TableUiBlockType = (
|
5131
|
+
benchling_api_client.v2.stable.models.table_ui_block_type.TableUiBlockType
|
5132
|
+
)
|
5133
|
+
TableUiBlockUpdate = (
|
5134
|
+
benchling_api_client.v2.stable.models.table_ui_block_update.TableUiBlockUpdate
|
5135
|
+
)
|
4280
5136
|
Team = benchling_api_client.v2.stable.models.team.Team
|
4281
5137
|
TeamCreate = benchling_api_client.v2.stable.models.team_create.TeamCreate
|
4282
5138
|
TeamSummary = benchling_api_client.v2.stable.models.team_summary.TeamSummary
|
4283
5139
|
TeamUpdate = benchling_api_client.v2.stable.models.team_update.TeamUpdate
|
4284
|
-
TeamsPaginatedList =
|
4285
|
-
|
5140
|
+
TeamsPaginatedList = (
|
5141
|
+
benchling_api_client.v2.stable.models.teams_paginated_list.TeamsPaginatedList
|
5142
|
+
)
|
5143
|
+
TestDefinition = (
|
5144
|
+
benchling_api_client.v2.stable.models.test_definition.TestDefinition
|
5145
|
+
)
|
5146
|
+
TestOrder = benchling_api_client.v2.stable.models.test_order.TestOrder
|
5147
|
+
TestOrderBulkUpdate = (
|
5148
|
+
benchling_api_client.v2.stable.models.test_order_bulk_update.TestOrderBulkUpdate
|
5149
|
+
)
|
5150
|
+
TestOrderStatus = (
|
5151
|
+
benchling_api_client.v2.stable.models.test_order_status.TestOrderStatus
|
5152
|
+
)
|
5153
|
+
TestOrderUpdate = (
|
5154
|
+
benchling_api_client.v2.stable.models.test_order_update.TestOrderUpdate
|
5155
|
+
)
|
5156
|
+
TestOrdersBulkUpdateRequest = (
|
5157
|
+
benchling_api_client.v2.stable.models.test_orders_bulk_update_request.TestOrdersBulkUpdateRequest
|
5158
|
+
)
|
5159
|
+
TestOrdersPaginatedList = (
|
5160
|
+
benchling_api_client.v2.stable.models.test_orders_paginated_list.TestOrdersPaginatedList
|
5161
|
+
)
|
5162
|
+
TextAppConfigItem = (
|
5163
|
+
benchling_api_client.v2.stable.models.text_app_config_item.TextAppConfigItem
|
5164
|
+
)
|
4286
5165
|
TextAppConfigItemType = (
|
4287
5166
|
benchling_api_client.v2.stable.models.text_app_config_item_type.TextAppConfigItemType
|
4288
5167
|
)
|
4289
|
-
TextBoxNotePart =
|
4290
|
-
|
4291
|
-
|
5168
|
+
TextBoxNotePart = (
|
5169
|
+
benchling_api_client.v2.stable.models.text_box_note_part.TextBoxNotePart
|
5170
|
+
)
|
5171
|
+
TextBoxNotePartType = (
|
5172
|
+
benchling_api_client.v2.stable.models.text_box_note_part_type.TextBoxNotePartType
|
5173
|
+
)
|
5174
|
+
TextInputUiBlock = (
|
5175
|
+
benchling_api_client.v2.stable.models.text_input_ui_block.TextInputUiBlock
|
5176
|
+
)
|
4292
5177
|
TextInputUiBlockCreate = (
|
4293
5178
|
benchling_api_client.v2.stable.models.text_input_ui_block_create.TextInputUiBlockCreate
|
4294
5179
|
)
|
4295
|
-
TextInputUiBlockType =
|
5180
|
+
TextInputUiBlockType = (
|
5181
|
+
benchling_api_client.v2.stable.models.text_input_ui_block_type.TextInputUiBlockType
|
5182
|
+
)
|
4296
5183
|
TextInputUiBlockUpdate = (
|
4297
5184
|
benchling_api_client.v2.stable.models.text_input_ui_block_update.TextInputUiBlockUpdate
|
4298
5185
|
)
|
4299
5186
|
TokenCreate = benchling_api_client.v2.stable.models.token_create.TokenCreate
|
4300
|
-
TokenCreateGrantType =
|
5187
|
+
TokenCreateGrantType = (
|
5188
|
+
benchling_api_client.v2.stable.models.token_create_grant_type.TokenCreateGrantType
|
5189
|
+
)
|
4301
5190
|
TokenResponse = benchling_api_client.v2.stable.models.token_response.TokenResponse
|
4302
5191
|
TokenResponseTokenType = (
|
4303
5192
|
benchling_api_client.v2.stable.models.token_response_token_type.TokenResponseTokenType
|
4304
5193
|
)
|
4305
|
-
TransfersAsyncTask =
|
5194
|
+
TransfersAsyncTask = (
|
5195
|
+
benchling_api_client.v2.stable.models.transfers_async_task.TransfersAsyncTask
|
5196
|
+
)
|
4306
5197
|
TransfersAsyncTaskResponse = (
|
4307
5198
|
benchling_api_client.v2.stable.models.transfers_async_task_response.TransfersAsyncTaskResponse
|
4308
5199
|
)
|
@@ -4314,14 +5205,20 @@ if TYPE_CHECKING:
|
|
4314
5205
|
benchling_api_client.v2.stable.models.translation_regions_item.TranslationRegionsItem
|
4315
5206
|
)
|
4316
5207
|
UnitSummary = benchling_api_client.v2.stable.models.unit_summary.UnitSummary
|
4317
|
-
UnregisterEntities =
|
4318
|
-
|
5208
|
+
UnregisterEntities = (
|
5209
|
+
benchling_api_client.v2.stable.models.unregister_entities.UnregisterEntities
|
5210
|
+
)
|
5211
|
+
UpdateEventMixin = (
|
5212
|
+
benchling_api_client.v2.stable.models.update_event_mixin.UpdateEventMixin
|
5213
|
+
)
|
4319
5214
|
User = benchling_api_client.v2.stable.models.user.User
|
4320
5215
|
UserActivity = benchling_api_client.v2.stable.models.user_activity.UserActivity
|
4321
5216
|
UserBulkCreateRequest = (
|
4322
5217
|
benchling_api_client.v2.stable.models.user_bulk_create_request.UserBulkCreateRequest
|
4323
5218
|
)
|
4324
|
-
UserBulkUpdate =
|
5219
|
+
UserBulkUpdate = (
|
5220
|
+
benchling_api_client.v2.stable.models.user_bulk_update.UserBulkUpdate
|
5221
|
+
)
|
4325
5222
|
UserBulkUpdateRequest = (
|
4326
5223
|
benchling_api_client.v2.stable.models.user_bulk_update_request.UserBulkUpdateRequest
|
4327
5224
|
)
|
@@ -4329,18 +5226,26 @@ if TYPE_CHECKING:
|
|
4329
5226
|
UserInputMultiValueUiBlock = (
|
4330
5227
|
benchling_api_client.v2.stable.models.user_input_multi_value_ui_block.UserInputMultiValueUiBlock
|
4331
5228
|
)
|
4332
|
-
UserInputUiBlock =
|
5229
|
+
UserInputUiBlock = (
|
5230
|
+
benchling_api_client.v2.stable.models.user_input_ui_block.UserInputUiBlock
|
5231
|
+
)
|
4333
5232
|
UserSummary = benchling_api_client.v2.stable.models.user_summary.UserSummary
|
4334
5233
|
UserUpdate = benchling_api_client.v2.stable.models.user_update.UserUpdate
|
4335
|
-
UserValidation =
|
5234
|
+
UserValidation = (
|
5235
|
+
benchling_api_client.v2.stable.models.user_validation.UserValidation
|
5236
|
+
)
|
4336
5237
|
UserValidationValidationStatus = (
|
4337
5238
|
benchling_api_client.v2.stable.models.user_validation_validation_status.UserValidationValidationStatus
|
4338
5239
|
)
|
4339
|
-
UsersPaginatedList =
|
5240
|
+
UsersPaginatedList = (
|
5241
|
+
benchling_api_client.v2.stable.models.users_paginated_list.UsersPaginatedList
|
5242
|
+
)
|
4340
5243
|
WarehouseCredentialSummary = (
|
4341
5244
|
benchling_api_client.v2.stable.models.warehouse_credential_summary.WarehouseCredentialSummary
|
4342
5245
|
)
|
4343
|
-
WarehouseCredentials =
|
5246
|
+
WarehouseCredentials = (
|
5247
|
+
benchling_api_client.v2.stable.models.warehouse_credentials.WarehouseCredentials
|
5248
|
+
)
|
4344
5249
|
WarehouseCredentialsCreate = (
|
4345
5250
|
benchling_api_client.v2.stable.models.warehouse_credentials_create.WarehouseCredentialsCreate
|
4346
5251
|
)
|
@@ -4348,14 +5253,18 @@ if TYPE_CHECKING:
|
|
4348
5253
|
WellOrInaccessibleResource = (
|
4349
5254
|
benchling_api_client.v2.stable.models.well_or_inaccessible_resource.WellOrInaccessibleResource
|
4350
5255
|
)
|
4351
|
-
WellResourceType =
|
5256
|
+
WellResourceType = (
|
5257
|
+
benchling_api_client.v2.stable.models.well_resource_type.WellResourceType
|
5258
|
+
)
|
4352
5259
|
WorkflowEndNodeDetails = (
|
4353
5260
|
benchling_api_client.v2.stable.models.workflow_end_node_details.WorkflowEndNodeDetails
|
4354
5261
|
)
|
4355
5262
|
WorkflowEndNodeDetailsNodeType = (
|
4356
5263
|
benchling_api_client.v2.stable.models.workflow_end_node_details_node_type.WorkflowEndNodeDetailsNodeType
|
4357
5264
|
)
|
4358
|
-
WorkflowFlowchart =
|
5265
|
+
WorkflowFlowchart = (
|
5266
|
+
benchling_api_client.v2.stable.models.workflow_flowchart.WorkflowFlowchart
|
5267
|
+
)
|
4359
5268
|
WorkflowFlowchartConfigSummary = (
|
4360
5269
|
benchling_api_client.v2.stable.models.workflow_flowchart_config_summary.WorkflowFlowchartConfigSummary
|
4361
5270
|
)
|
@@ -4378,7 +5287,9 @@ if TYPE_CHECKING:
|
|
4378
5287
|
WorkflowNodeTaskGroupSummary = (
|
4379
5288
|
benchling_api_client.v2.stable.models.workflow_node_task_group_summary.WorkflowNodeTaskGroupSummary
|
4380
5289
|
)
|
4381
|
-
WorkflowOutput =
|
5290
|
+
WorkflowOutput = (
|
5291
|
+
benchling_api_client.v2.stable.models.workflow_output.WorkflowOutput
|
5292
|
+
)
|
4382
5293
|
WorkflowOutputArchiveReason = (
|
4383
5294
|
benchling_api_client.v2.stable.models.workflow_output_archive_reason.WorkflowOutputArchiveReason
|
4384
5295
|
)
|
@@ -4388,7 +5299,9 @@ if TYPE_CHECKING:
|
|
4388
5299
|
WorkflowOutputBulkUpdate = (
|
4389
5300
|
benchling_api_client.v2.stable.models.workflow_output_bulk_update.WorkflowOutputBulkUpdate
|
4390
5301
|
)
|
4391
|
-
WorkflowOutputCreate =
|
5302
|
+
WorkflowOutputCreate = (
|
5303
|
+
benchling_api_client.v2.stable.models.workflow_output_create.WorkflowOutputCreate
|
5304
|
+
)
|
4392
5305
|
WorkflowOutputCreatedEvent = (
|
4393
5306
|
benchling_api_client.v2.stable.models.workflow_output_created_event.WorkflowOutputCreatedEvent
|
4394
5307
|
)
|
@@ -4401,11 +5314,15 @@ if TYPE_CHECKING:
|
|
4401
5314
|
WorkflowOutputNodeDetailsNodeType = (
|
4402
5315
|
benchling_api_client.v2.stable.models.workflow_output_node_details_node_type.WorkflowOutputNodeDetailsNodeType
|
4403
5316
|
)
|
4404
|
-
WorkflowOutputSchema =
|
5317
|
+
WorkflowOutputSchema = (
|
5318
|
+
benchling_api_client.v2.stable.models.workflow_output_schema.WorkflowOutputSchema
|
5319
|
+
)
|
4405
5320
|
WorkflowOutputSummary = (
|
4406
5321
|
benchling_api_client.v2.stable.models.workflow_output_summary.WorkflowOutputSummary
|
4407
5322
|
)
|
4408
|
-
WorkflowOutputUpdate =
|
5323
|
+
WorkflowOutputUpdate = (
|
5324
|
+
benchling_api_client.v2.stable.models.workflow_output_update.WorkflowOutputUpdate
|
5325
|
+
)
|
4409
5326
|
WorkflowOutputUpdatedFieldsEvent = (
|
4410
5327
|
benchling_api_client.v2.stable.models.workflow_output_updated_fields_event.WorkflowOutputUpdatedFieldsEvent
|
4411
5328
|
)
|
@@ -4449,12 +5366,22 @@ if TYPE_CHECKING:
|
|
4449
5366
|
WorkflowRouterNodeDetailsNodeType = (
|
4450
5367
|
benchling_api_client.v2.stable.models.workflow_router_node_details_node_type.WorkflowRouterNodeDetailsNodeType
|
4451
5368
|
)
|
4452
|
-
WorkflowSample =
|
4453
|
-
|
5369
|
+
WorkflowSample = (
|
5370
|
+
benchling_api_client.v2.stable.models.workflow_sample.WorkflowSample
|
5371
|
+
)
|
5372
|
+
WorkflowSampleList = (
|
5373
|
+
benchling_api_client.v2.stable.models.workflow_sample_list.WorkflowSampleList
|
5374
|
+
)
|
4454
5375
|
WorkflowStage = benchling_api_client.v2.stable.models.workflow_stage.WorkflowStage
|
4455
|
-
WorkflowStageList =
|
4456
|
-
|
4457
|
-
|
5376
|
+
WorkflowStageList = (
|
5377
|
+
benchling_api_client.v2.stable.models.workflow_stage_list.WorkflowStageList
|
5378
|
+
)
|
5379
|
+
WorkflowStageRun = (
|
5380
|
+
benchling_api_client.v2.stable.models.workflow_stage_run.WorkflowStageRun
|
5381
|
+
)
|
5382
|
+
WorkflowStageRunList = (
|
5383
|
+
benchling_api_client.v2.stable.models.workflow_stage_run_list.WorkflowStageRunList
|
5384
|
+
)
|
4458
5385
|
WorkflowStageRunStatus = (
|
4459
5386
|
benchling_api_client.v2.stable.models.workflow_stage_run_status.WorkflowStageRunStatus
|
4460
5387
|
)
|
@@ -4462,14 +5389,18 @@ if TYPE_CHECKING:
|
|
4462
5389
|
WorkflowTaskArchiveReason = (
|
4463
5390
|
benchling_api_client.v2.stable.models.workflow_task_archive_reason.WorkflowTaskArchiveReason
|
4464
5391
|
)
|
4465
|
-
WorkflowTaskBase =
|
5392
|
+
WorkflowTaskBase = (
|
5393
|
+
benchling_api_client.v2.stable.models.workflow_task_base.WorkflowTaskBase
|
5394
|
+
)
|
4466
5395
|
WorkflowTaskBulkCreate = (
|
4467
5396
|
benchling_api_client.v2.stable.models.workflow_task_bulk_create.WorkflowTaskBulkCreate
|
4468
5397
|
)
|
4469
5398
|
WorkflowTaskBulkUpdate = (
|
4470
5399
|
benchling_api_client.v2.stable.models.workflow_task_bulk_update.WorkflowTaskBulkUpdate
|
4471
5400
|
)
|
4472
|
-
WorkflowTaskCreate =
|
5401
|
+
WorkflowTaskCreate = (
|
5402
|
+
benchling_api_client.v2.stable.models.workflow_task_create.WorkflowTaskCreate
|
5403
|
+
)
|
4473
5404
|
WorkflowTaskCreatedEvent = (
|
4474
5405
|
benchling_api_client.v2.stable.models.workflow_task_created_event.WorkflowTaskCreatedEvent
|
4475
5406
|
)
|
@@ -4485,7 +5416,9 @@ if TYPE_CHECKING:
|
|
4485
5416
|
WorkflowTaskExecutionType = (
|
4486
5417
|
benchling_api_client.v2.stable.models.workflow_task_execution_type.WorkflowTaskExecutionType
|
4487
5418
|
)
|
4488
|
-
WorkflowTaskGroup =
|
5419
|
+
WorkflowTaskGroup = (
|
5420
|
+
benchling_api_client.v2.stable.models.workflow_task_group.WorkflowTaskGroup
|
5421
|
+
)
|
4489
5422
|
WorkflowTaskGroupArchiveReason = (
|
4490
5423
|
benchling_api_client.v2.stable.models.workflow_task_group_archive_reason.WorkflowTaskGroupArchiveReason
|
4491
5424
|
)
|
@@ -4543,7 +5476,9 @@ if TYPE_CHECKING:
|
|
4543
5476
|
WorkflowTaskNodeDetailsNodeType = (
|
4544
5477
|
benchling_api_client.v2.stable.models.workflow_task_node_details_node_type.WorkflowTaskNodeDetailsNodeType
|
4545
5478
|
)
|
4546
|
-
WorkflowTaskSchema =
|
5479
|
+
WorkflowTaskSchema = (
|
5480
|
+
benchling_api_client.v2.stable.models.workflow_task_schema.WorkflowTaskSchema
|
5481
|
+
)
|
4547
5482
|
WorkflowTaskSchemaBase = (
|
4548
5483
|
benchling_api_client.v2.stable.models.workflow_task_schema_base.WorkflowTaskSchemaBase
|
4549
5484
|
)
|
@@ -4556,7 +5491,9 @@ if TYPE_CHECKING:
|
|
4556
5491
|
WorkflowTaskSchemasPaginatedList = (
|
4557
5492
|
benchling_api_client.v2.stable.models.workflow_task_schemas_paginated_list.WorkflowTaskSchemasPaginatedList
|
4558
5493
|
)
|
4559
|
-
WorkflowTaskStatus =
|
5494
|
+
WorkflowTaskStatus = (
|
5495
|
+
benchling_api_client.v2.stable.models.workflow_task_status.WorkflowTaskStatus
|
5496
|
+
)
|
4560
5497
|
WorkflowTaskStatusLifecycle = (
|
4561
5498
|
benchling_api_client.v2.stable.models.workflow_task_status_lifecycle.WorkflowTaskStatusLifecycle
|
4562
5499
|
)
|
@@ -4566,8 +5503,12 @@ if TYPE_CHECKING:
|
|
4566
5503
|
WorkflowTaskStatusStatusType = (
|
4567
5504
|
benchling_api_client.v2.stable.models.workflow_task_status_status_type.WorkflowTaskStatusStatusType
|
4568
5505
|
)
|
4569
|
-
WorkflowTaskSummary =
|
4570
|
-
|
5506
|
+
WorkflowTaskSummary = (
|
5507
|
+
benchling_api_client.v2.stable.models.workflow_task_summary.WorkflowTaskSummary
|
5508
|
+
)
|
5509
|
+
WorkflowTaskUpdate = (
|
5510
|
+
benchling_api_client.v2.stable.models.workflow_task_update.WorkflowTaskUpdate
|
5511
|
+
)
|
4571
5512
|
WorkflowTaskUpdatedAssigneeEvent = (
|
4572
5513
|
benchling_api_client.v2.stable.models.workflow_task_updated_assignee_event.WorkflowTaskUpdatedAssigneeEvent
|
4573
5514
|
)
|
@@ -4598,7 +5539,9 @@ if TYPE_CHECKING:
|
|
4598
5539
|
WorkflowTasksArchivalChange = (
|
4599
5540
|
benchling_api_client.v2.stable.models.workflow_tasks_archival_change.WorkflowTasksArchivalChange
|
4600
5541
|
)
|
4601
|
-
WorkflowTasksArchive =
|
5542
|
+
WorkflowTasksArchive = (
|
5543
|
+
benchling_api_client.v2.stable.models.workflow_tasks_archive.WorkflowTasksArchive
|
5544
|
+
)
|
4602
5545
|
WorkflowTasksBulkCopyRequest = (
|
4603
5546
|
benchling_api_client.v2.stable.models.workflow_tasks_bulk_copy_request.WorkflowTasksBulkCopyRequest
|
4604
5547
|
)
|
@@ -4659,6 +5602,8 @@ else:
|
|
4659
5602
|
"AppCanvasCreateBase": "benchling_api_client.v2.stable.models.app_canvas_create_base",
|
4660
5603
|
"AppCanvasCreateUiBlockList": "benchling_api_client.v2.stable.models.app_canvas_create_ui_block_list",
|
4661
5604
|
"AppCanvasLeafNodeUiBlockList": "benchling_api_client.v2.stable.models.app_canvas_leaf_node_ui_block_list",
|
5605
|
+
"AppCanvasNotePart": "benchling_api_client.v2.stable.models.app_canvas_note_part",
|
5606
|
+
"AppCanvasNotePartType": "benchling_api_client.v2.stable.models.app_canvas_note_part_type",
|
4662
5607
|
"AppCanvasUiBlockList": "benchling_api_client.v2.stable.models.app_canvas_ui_block_list",
|
4663
5608
|
"AppCanvasUpdate": "benchling_api_client.v2.stable.models.app_canvas_update",
|
4664
5609
|
"AppCanvasUpdateBase": "benchling_api_client.v2.stable.models.app_canvas_update_base",
|
@@ -4783,9 +5728,12 @@ else:
|
|
4783
5728
|
"AssayRunsUnarchive": "benchling_api_client.v2.stable.models.assay_runs_unarchive",
|
4784
5729
|
"AsyncTask": "benchling_api_client.v2.stable.models.async_task",
|
4785
5730
|
"AsyncTaskErrors": "benchling_api_client.v2.stable.models.async_task_errors",
|
5731
|
+
"AsyncTaskErrorsItem": "benchling_api_client.v2.stable.models.async_task_errors_item",
|
4786
5732
|
"AsyncTaskLink": "benchling_api_client.v2.stable.models.async_task_link",
|
4787
5733
|
"AsyncTaskResponse": "benchling_api_client.v2.stable.models.async_task_response",
|
4788
5734
|
"AsyncTaskStatus": "benchling_api_client.v2.stable.models.async_task_status",
|
5735
|
+
"AuditLogExport": "benchling_api_client.v2.stable.models.audit_log_export",
|
5736
|
+
"AuditLogExportFormat": "benchling_api_client.v2.stable.models.audit_log_export_format",
|
4789
5737
|
"AutoAnnotateAaSequences": "benchling_api_client.v2.stable.models.auto_annotate_aa_sequences",
|
4790
5738
|
"AutoAnnotateDnaSequences": "benchling_api_client.v2.stable.models.auto_annotate_dna_sequences",
|
4791
5739
|
"AutoAnnotateRnaSequences": "benchling_api_client.v2.stable.models.auto_annotate_rna_sequences",
|
@@ -4960,6 +5908,10 @@ else:
|
|
4960
5908
|
"ContainersList": "benchling_api_client.v2.stable.models.containers_list",
|
4961
5909
|
"ContainersPaginatedList": "benchling_api_client.v2.stable.models.containers_paginated_list",
|
4962
5910
|
"ContainersUnarchive": "benchling_api_client.v2.stable.models.containers_unarchive",
|
5911
|
+
"ConvertToASM": "benchling_api_client.v2.stable.models.convert_to_asm",
|
5912
|
+
"ConvertToASMResponse_200": "benchling_api_client.v2.stable.models.convert_to_asm_response_200",
|
5913
|
+
"ConvertToCSV": "benchling_api_client.v2.stable.models.convert_to_csv",
|
5914
|
+
"ConvertToCSVResponse_200Item": "benchling_api_client.v2.stable.models.convert_to_csv_response_200_item",
|
4963
5915
|
"CreateConsensusAlignmentAsyncTask": "benchling_api_client.v2.stable.models.create_consensus_alignment_async_task",
|
4964
5916
|
"CreateEntityIntoRegistry": "benchling_api_client.v2.stable.models.create_entity_into_registry",
|
4965
5917
|
"CreateNucleotideConsensusAlignmentAsyncTask": "benchling_api_client.v2.stable.models.create_nucleotide_consensus_alignment_async_task",
|
@@ -4992,8 +5944,31 @@ else:
|
|
4992
5944
|
"CustomField": "benchling_api_client.v2.stable.models.custom_field",
|
4993
5945
|
"CustomFields": "benchling_api_client.v2.stable.models.custom_fields",
|
4994
5946
|
"CustomNotation": "benchling_api_client.v2.stable.models.custom_notation",
|
5947
|
+
"CustomNotationAlias": "benchling_api_client.v2.stable.models.custom_notation_alias",
|
4995
5948
|
"CustomNotationRequest": "benchling_api_client.v2.stable.models.custom_notation_request",
|
4996
5949
|
"CustomNotationsPaginatedList": "benchling_api_client.v2.stable.models.custom_notations_paginated_list",
|
5950
|
+
"DataFrame": "benchling_api_client.v2.stable.models.data_frame",
|
5951
|
+
"DataFrameColumnMetadata": "benchling_api_client.v2.stable.models.data_frame_column_metadata",
|
5952
|
+
"DataFrameColumnTypeMetadata": "benchling_api_client.v2.stable.models.data_frame_column_type_metadata",
|
5953
|
+
"DataFrameColumnTypeMetadataTarget": "benchling_api_client.v2.stable.models.data_frame_column_type_metadata_target",
|
5954
|
+
"DataFrameColumnTypeNameEnum": "benchling_api_client.v2.stable.models.data_frame_column_type_name_enum",
|
5955
|
+
"DataFrameColumnTypeNameEnumName": "benchling_api_client.v2.stable.models.data_frame_column_type_name_enum_name",
|
5956
|
+
"DataFrameCreate": "benchling_api_client.v2.stable.models.data_frame_create",
|
5957
|
+
"DataFrameCreateManifest": "benchling_api_client.v2.stable.models.data_frame_create_manifest",
|
5958
|
+
"DataFrameCreateManifestManifestItem": "benchling_api_client.v2.stable.models.data_frame_create_manifest_manifest_item",
|
5959
|
+
"DataFrameManifest": "benchling_api_client.v2.stable.models.data_frame_manifest",
|
5960
|
+
"DataFrameManifestManifestItem": "benchling_api_client.v2.stable.models.data_frame_manifest_manifest_item",
|
5961
|
+
"DataFrameUpdate": "benchling_api_client.v2.stable.models.data_frame_update",
|
5962
|
+
"DataFrameUpdateUploadStatus": "benchling_api_client.v2.stable.models.data_frame_update_upload_status",
|
5963
|
+
"Dataset": "benchling_api_client.v2.stable.models.dataset",
|
5964
|
+
"DatasetCreate": "benchling_api_client.v2.stable.models.dataset_create",
|
5965
|
+
"DatasetCreator": "benchling_api_client.v2.stable.models.dataset_creator",
|
5966
|
+
"DatasetUpdate": "benchling_api_client.v2.stable.models.dataset_update",
|
5967
|
+
"DatasetsArchivalChange": "benchling_api_client.v2.stable.models.datasets_archival_change",
|
5968
|
+
"DatasetsArchive": "benchling_api_client.v2.stable.models.datasets_archive",
|
5969
|
+
"DatasetsArchiveReason": "benchling_api_client.v2.stable.models.datasets_archive_reason",
|
5970
|
+
"DatasetsPaginatedList": "benchling_api_client.v2.stable.models.datasets_paginated_list",
|
5971
|
+
"DatasetsUnarchive": "benchling_api_client.v2.stable.models.datasets_unarchive",
|
4997
5972
|
"DateAppConfigItem": "benchling_api_client.v2.stable.models.date_app_config_item",
|
4998
5973
|
"DateAppConfigItemType": "benchling_api_client.v2.stable.models.date_app_config_item_type",
|
4999
5974
|
"DatetimeAppConfigItem": "benchling_api_client.v2.stable.models.datetime_app_config_item",
|
@@ -5128,6 +6103,8 @@ else:
|
|
5128
6103
|
"EntryUpdatedFieldsEventEventType": "benchling_api_client.v2.stable.models.entry_updated_fields_event_event_type",
|
5129
6104
|
"EntryUpdatedReviewRecordEvent": "benchling_api_client.v2.stable.models.entry_updated_review_record_event",
|
5130
6105
|
"EntryUpdatedReviewRecordEventEventType": "benchling_api_client.v2.stable.models.entry_updated_review_record_event_event_type",
|
6106
|
+
"EntryUpdatedReviewSnapshotBetaEvent": "benchling_api_client.v2.stable.models.entry_updated_review_snapshot_beta_event",
|
6107
|
+
"EntryUpdatedReviewSnapshotBetaEventEventType": "benchling_api_client.v2.stable.models.entry_updated_review_snapshot_beta_event_event_type",
|
5131
6108
|
"Enzyme": "benchling_api_client.v2.stable.models.enzyme",
|
5132
6109
|
"EnzymesPaginatedList": "benchling_api_client.v2.stable.models.enzymes_paginated_list",
|
5133
6110
|
"Event": "benchling_api_client.v2.stable.models.event",
|
@@ -5168,6 +6145,22 @@ else:
|
|
5168
6145
|
"FieldWithResolution": "benchling_api_client.v2.stable.models.field_with_resolution",
|
5169
6146
|
"Fields": "benchling_api_client.v2.stable.models.fields",
|
5170
6147
|
"FieldsWithResolution": "benchling_api_client.v2.stable.models.fields_with_resolution",
|
6148
|
+
"File": "benchling_api_client.v2.stable.models.file",
|
6149
|
+
"FileCreate": "benchling_api_client.v2.stable.models.file_create",
|
6150
|
+
"FileCreator": "benchling_api_client.v2.stable.models.file_creator",
|
6151
|
+
"FileStatus": "benchling_api_client.v2.stable.models.file_status",
|
6152
|
+
"FileStatusUploadStatus": "benchling_api_client.v2.stable.models.file_status_upload_status",
|
6153
|
+
"FileUpdate": "benchling_api_client.v2.stable.models.file_update",
|
6154
|
+
"FileUpdateUploadStatus": "benchling_api_client.v2.stable.models.file_update_upload_status",
|
6155
|
+
"FileUploadUiBlock": "benchling_api_client.v2.stable.models.file_upload_ui_block",
|
6156
|
+
"FileUploadUiBlockCreate": "benchling_api_client.v2.stable.models.file_upload_ui_block_create",
|
6157
|
+
"FileUploadUiBlockType": "benchling_api_client.v2.stable.models.file_upload_ui_block_type",
|
6158
|
+
"FileUploadUiBlockUpdate": "benchling_api_client.v2.stable.models.file_upload_ui_block_update",
|
6159
|
+
"FilesArchivalChange": "benchling_api_client.v2.stable.models.files_archival_change",
|
6160
|
+
"FilesArchive": "benchling_api_client.v2.stable.models.files_archive",
|
6161
|
+
"FilesArchiveReason": "benchling_api_client.v2.stable.models.files_archive_reason",
|
6162
|
+
"FilesPaginatedList": "benchling_api_client.v2.stable.models.files_paginated_list",
|
6163
|
+
"FilesUnarchive": "benchling_api_client.v2.stable.models.files_unarchive",
|
5171
6164
|
"FindMatchingRegionsAsyncTask": "benchling_api_client.v2.stable.models.find_matching_regions_async_task",
|
5172
6165
|
"FindMatchingRegionsAsyncTaskResponse": "benchling_api_client.v2.stable.models.find_matching_regions_async_task_response",
|
5173
6166
|
"FindMatchingRegionsAsyncTaskResponseAaSequenceMatchesItem": "benchling_api_client.v2.stable.models.find_matching_regions_async_task_response_aa_sequence_matches_item",
|
@@ -5194,6 +6187,7 @@ else:
|
|
5194
6187
|
"GenericApiIdentifiedAppConfigItemType": "benchling_api_client.v2.stable.models.generic_api_identified_app_config_item_type",
|
5195
6188
|
"GenericEntity": "benchling_api_client.v2.stable.models.generic_entity",
|
5196
6189
|
"GenericEntityCreator": "benchling_api_client.v2.stable.models.generic_entity_creator",
|
6190
|
+
"GetDataFrameRowDataFormat": "benchling_api_client.v2.stable.models.get_data_frame_row_data_format",
|
5197
6191
|
"GetUserWarehouseLoginsResponse_200": "benchling_api_client.v2.stable.models.get_user_warehouse_logins_response_200",
|
5198
6192
|
"InaccessibleResource": "benchling_api_client.v2.stable.models.inaccessible_resource",
|
5199
6193
|
"InaccessibleResourceResourceType": "benchling_api_client.v2.stable.models.inaccessible_resource_resource_type",
|
@@ -5251,6 +6245,7 @@ else:
|
|
5251
6245
|
"ListContainersCheckoutStatus": "benchling_api_client.v2.stable.models.list_containers_checkout_status",
|
5252
6246
|
"ListContainersSort": "benchling_api_client.v2.stable.models.list_containers_sort",
|
5253
6247
|
"ListCustomEntitiesSort": "benchling_api_client.v2.stable.models.list_custom_entities_sort",
|
6248
|
+
"ListDatasetsSort": "benchling_api_client.v2.stable.models.list_datasets_sort",
|
5254
6249
|
"ListDNAAlignmentsSort": "benchling_api_client.v2.stable.models.list_dna_alignments_sort",
|
5255
6250
|
"ListDNAOligosSort": "benchling_api_client.v2.stable.models.list_dna_oligos_sort",
|
5256
6251
|
"ListDNASequencesSort": "benchling_api_client.v2.stable.models.list_dna_sequences_sort",
|
@@ -5259,6 +6254,7 @@ else:
|
|
5259
6254
|
"ListEnzymesSort": "benchling_api_client.v2.stable.models.list_enzymes_sort",
|
5260
6255
|
"ListFeatureLibrariesSort": "benchling_api_client.v2.stable.models.list_feature_libraries_sort",
|
5261
6256
|
"ListFeaturesMatchType": "benchling_api_client.v2.stable.models.list_features_match_type",
|
6257
|
+
"ListFilesSort": "benchling_api_client.v2.stable.models.list_files_sort",
|
5262
6258
|
"ListFoldersSection": "benchling_api_client.v2.stable.models.list_folders_section",
|
5263
6259
|
"ListFoldersSort": "benchling_api_client.v2.stable.models.list_folders_sort",
|
5264
6260
|
"ListLocationsSort": "benchling_api_client.v2.stable.models.list_locations_sort",
|
@@ -5272,9 +6268,11 @@ else:
|
|
5272
6268
|
"ListRNAOligosSort": "benchling_api_client.v2.stable.models.list_rna_oligos_sort",
|
5273
6269
|
"ListRNASequencesSort": "benchling_api_client.v2.stable.models.list_rna_sequences_sort",
|
5274
6270
|
"ListTeamsSort": "benchling_api_client.v2.stable.models.list_teams_sort",
|
6271
|
+
"ListTestOrdersSort": "benchling_api_client.v2.stable.models.list_test_orders_sort",
|
5275
6272
|
"ListUsersSort": "benchling_api_client.v2.stable.models.list_users_sort",
|
5276
6273
|
"ListWorkflowFlowchartsSort": "benchling_api_client.v2.stable.models.list_workflow_flowcharts_sort",
|
5277
6274
|
"ListWorkflowTasksScheduledOn": "benchling_api_client.v2.stable.models.list_workflow_tasks_scheduled_on",
|
6275
|
+
"ListingError": "benchling_api_client.v2.stable.models.listing_error",
|
5278
6276
|
"Location": "benchling_api_client.v2.stable.models.location",
|
5279
6277
|
"LocationCreate": "benchling_api_client.v2.stable.models.location_create",
|
5280
6278
|
"LocationSchema": "benchling_api_client.v2.stable.models.location_schema",
|
@@ -5353,6 +6351,7 @@ else:
|
|
5353
6351
|
"MonomersUnarchive": "benchling_api_client.v2.stable.models.monomers_unarchive",
|
5354
6352
|
"MultipleContainersTransfer": "benchling_api_client.v2.stable.models.multiple_containers_transfer",
|
5355
6353
|
"MultipleContainersTransfersList": "benchling_api_client.v2.stable.models.multiple_containers_transfers_list",
|
6354
|
+
"NameTemplatePart": "benchling_api_client.v2.stable.models.name_template_part",
|
5356
6355
|
"NamingStrategy": "benchling_api_client.v2.stable.models.naming_strategy",
|
5357
6356
|
"NotFoundError": "benchling_api_client.v2.stable.models.not_found_error",
|
5358
6357
|
"NotFoundErrorError": "benchling_api_client.v2.stable.models.not_found_error_error",
|
@@ -5588,6 +6587,13 @@ else:
|
|
5588
6587
|
"TeamSummary": "benchling_api_client.v2.stable.models.team_summary",
|
5589
6588
|
"TeamUpdate": "benchling_api_client.v2.stable.models.team_update",
|
5590
6589
|
"TeamsPaginatedList": "benchling_api_client.v2.stable.models.teams_paginated_list",
|
6590
|
+
"TestDefinition": "benchling_api_client.v2.stable.models.test_definition",
|
6591
|
+
"TestOrder": "benchling_api_client.v2.stable.models.test_order",
|
6592
|
+
"TestOrderBulkUpdate": "benchling_api_client.v2.stable.models.test_order_bulk_update",
|
6593
|
+
"TestOrderStatus": "benchling_api_client.v2.stable.models.test_order_status",
|
6594
|
+
"TestOrderUpdate": "benchling_api_client.v2.stable.models.test_order_update",
|
6595
|
+
"TestOrdersBulkUpdateRequest": "benchling_api_client.v2.stable.models.test_orders_bulk_update_request",
|
6596
|
+
"TestOrdersPaginatedList": "benchling_api_client.v2.stable.models.test_orders_paginated_list",
|
5591
6597
|
"TextAppConfigItem": "benchling_api_client.v2.stable.models.text_app_config_item",
|
5592
6598
|
"TextAppConfigItemType": "benchling_api_client.v2.stable.models.text_app_config_item_type",
|
5593
6599
|
"TextBoxNotePart": "benchling_api_client.v2.stable.models.text_box_note_part",
|