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