benchling-v3-sdk-python 5.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- benchling_v3_sdk/__init__.py +9254 -0
- benchling_v3_sdk/_async_tasks/__init__.py +22 -0
- benchling_v3_sdk/_async_tasks/adapters/__init__.py +17 -0
- benchling_v3_sdk/_async_tasks/adapters/base.py +100 -0
- benchling_v3_sdk/_async_tasks/adapters/binding.py +73 -0
- benchling_v3_sdk/_async_tasks/adapters/bulk.py +62 -0
- benchling_v3_sdk/_async_tasks/adapters/operation_scoped.py +54 -0
- benchling_v3_sdk/_async_tasks/client_validation.py +22 -0
- benchling_v3_sdk/_async_tasks/completion.py +23 -0
- benchling_v3_sdk/_async_tasks/constants.py +41 -0
- benchling_v3_sdk/_async_tasks/engine.py +122 -0
- benchling_v3_sdk/_async_tasks/errors.py +140 -0
- benchling_v3_sdk/_async_tasks/link_validation.py +60 -0
- benchling_v3_sdk/_async_tasks/path_parser.py +120 -0
- benchling_v3_sdk/_async_tasks/presigned_file_streaming.py +36 -0
- benchling_v3_sdk/_async_tasks/registry.py +68 -0
- benchling_v3_sdk/_async_tasks/wait.py +122 -0
- benchling_v3_sdk/_default_clients.py +32 -0
- benchling_v3_sdk/aa_monomer/__init__.py +38 -0
- benchling_v3_sdk/aa_monomer/client.py +1030 -0
- benchling_v3_sdk/aa_monomer/raw_client.py +2074 -0
- benchling_v3_sdk/aa_monomer/types/__init__.py +40 -0
- benchling_v3_sdk/aa_monomer/types/batch_create_aa_monomer_response.py +20 -0
- benchling_v3_sdk/aa_monomer/types/batch_update_aa_monomer_response.py +20 -0
- benchling_v3_sdk/aa_monomer/types/list_aa_monomer_request_sort.py +7 -0
- benchling_v3_sdk/aa_sequence/__init__.py +49 -0
- benchling_v3_sdk/aa_sequence/client.py +1661 -0
- benchling_v3_sdk/aa_sequence/raw_client.py +2857 -0
- benchling_v3_sdk/aa_sequence/types/__init__.py +47 -0
- benchling_v3_sdk/aa_sequence/types/batch_create_aa_sequence_response.py +20 -0
- benchling_v3_sdk/aa_sequence/types/batch_update_aa_sequence_response.py +20 -0
- benchling_v3_sdk/aa_sequence/types/list_aa_sequence_request_sort.py +7 -0
- benchling_v3_sdk/aa_sequence/types/update_aa_sequence_input_naming_strategy.py +16 -0
- benchling_v3_sdk/aa_sequence_schema/__init__.py +67 -0
- benchling_v3_sdk/aa_sequence_schema/client.py +1930 -0
- benchling_v3_sdk/aa_sequence_schema/raw_client.py +3878 -0
- benchling_v3_sdk/aa_sequence_schema/types/__init__.py +75 -0
- benchling_v3_sdk/aa_sequence_schema/types/aa_sequence_schema_set_field_definitions_input_field_definitions_item.py +127 -0
- benchling_v3_sdk/aa_sequence_schema/types/batch_create_aa_sequence_schema_response.py +20 -0
- benchling_v3_sdk/aa_sequence_schema/types/batch_update_aa_sequence_schema_response.py +20 -0
- benchling_v3_sdk/aa_sequence_schema/types/get_task_for_apply_fieldset_aa_sequence_schema_response.py +25 -0
- benchling_v3_sdk/aa_sequence_schema/types/get_task_for_apply_fieldset_aa_sequence_schema_response_status.py +7 -0
- benchling_v3_sdk/aa_sequence_schema/types/get_task_for_set_field_definitions_aa_sequence_schema_response.py +25 -0
- benchling_v3_sdk/aa_sequence_schema/types/get_task_for_set_field_definitions_aa_sequence_schema_response_status.py +7 -0
- benchling_v3_sdk/aa_sequence_schema/types/list_aa_sequence_schema_request_sort.py +7 -0
- benchling_v3_sdk/aa_sequence_schema/types/update_aa_sequence_schema_input_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/aa_sequence_schema/types/update_aa_sequence_schema_input_icon_id.py +7 -0
- benchling_v3_sdk/agent/__init__.py +64 -0
- benchling_v3_sdk/agent/client.py +271 -0
- benchling_v3_sdk/agent/raw_client.py +540 -0
- benchling_v3_sdk/agent/types/__init__.py +62 -0
- benchling_v3_sdk/agent/types/create_agent_input_agent.py +5 -0
- benchling_v3_sdk/agent/types/create_agent_response.py +26 -0
- benchling_v3_sdk/agent/types/get_task_agent_response.py +45 -0
- benchling_v3_sdk/agent/types/get_task_agent_response_agent.py +7 -0
- benchling_v3_sdk/agent/types/get_task_agent_response_artifacts_item.py +38 -0
- benchling_v3_sdk/agent/types/get_task_agent_response_artifacts_item_type.py +5 -0
- benchling_v3_sdk/agent/types/get_task_agent_response_content_item.py +25 -0
- benchling_v3_sdk/agent/types/get_task_agent_response_content_item_content_type.py +5 -0
- benchling_v3_sdk/agent/types/get_task_agent_response_status.py +5 -0
- benchling_v3_sdk/analysis/__init__.py +34 -0
- benchling_v3_sdk/analysis/client.py +483 -0
- benchling_v3_sdk/analysis/raw_client.py +902 -0
- benchling_v3_sdk/analysis/types/__init__.py +34 -0
- benchling_v3_sdk/analysis/types/list_analysis_request_sort.py +7 -0
- benchling_v3_sdk/app_canvas/__init__.py +37 -0
- benchling_v3_sdk/app_canvas/client.py +795 -0
- benchling_v3_sdk/app_canvas/raw_client.py +1653 -0
- benchling_v3_sdk/app_canvas/types/__init__.py +38 -0
- benchling_v3_sdk/app_canvas/types/batch_create_app_canvas_response.py +20 -0
- benchling_v3_sdk/app_canvas/types/batch_update_app_canvas_response.py +20 -0
- benchling_v3_sdk/app_config_value/__init__.py +34 -0
- benchling_v3_sdk/app_config_value/client.py +368 -0
- benchling_v3_sdk/app_config_value/raw_client.py +641 -0
- benchling_v3_sdk/app_config_value/types/__init__.py +34 -0
- benchling_v3_sdk/app_config_value/types/list_app_config_value_request_sort.py +7 -0
- benchling_v3_sdk/app_installation/__init__.py +34 -0
- benchling_v3_sdk/app_installation/client.py +497 -0
- benchling_v3_sdk/app_installation/raw_client.py +918 -0
- benchling_v3_sdk/app_installation/types/__init__.py +34 -0
- benchling_v3_sdk/app_installation/types/list_app_installation_request_sort.py +7 -0
- benchling_v3_sdk/app_session/__init__.py +49 -0
- benchling_v3_sdk/app_session/client.py +940 -0
- benchling_v3_sdk/app_session/raw_client.py +1982 -0
- benchling_v3_sdk/app_session/types/__init__.py +47 -0
- benchling_v3_sdk/app_session/types/batch_create_app_session_response.py +20 -0
- benchling_v3_sdk/app_session/types/batch_update_app_session_response.py +20 -0
- benchling_v3_sdk/app_session/types/list_app_session_request_sort.py +7 -0
- benchling_v3_sdk/app_session/types/update_app_session_input_status.py +5 -0
- benchling_v3_sdk/apps/__init__.py +5 -0
- benchling_v3_sdk/apps/helpers/__init__.py +1 -0
- benchling_v3_sdk/apps/helpers/webhook_helpers.py +229 -0
- benchling_v3_sdk/apps/helpers/webhook_verification.py +301 -0
- benchling_v3_sdk/assembly/__init__.py +34 -0
- benchling_v3_sdk/assembly/client.py +406 -0
- benchling_v3_sdk/assembly/raw_client.py +705 -0
- benchling_v3_sdk/assembly/types/__init__.py +34 -0
- benchling_v3_sdk/assembly/types/list_assembly_request_sort.py +7 -0
- benchling_v3_sdk/attachment/__init__.py +34 -0
- benchling_v3_sdk/attachment/client.py +410 -0
- benchling_v3_sdk/attachment/raw_client.py +910 -0
- benchling_v3_sdk/attachment/types/__init__.py +34 -0
- benchling_v3_sdk/attachment/types/batch_create_attachment_response.py +20 -0
- benchling_v3_sdk/audit_log/__init__.py +49 -0
- benchling_v3_sdk/audit_log/client.py +540 -0
- benchling_v3_sdk/audit_log/raw_client.py +1085 -0
- benchling_v3_sdk/audit_log/types/__init__.py +47 -0
- benchling_v3_sdk/audit_log/types/audit_log_export_input_format.py +5 -0
- benchling_v3_sdk/audit_log/types/get_task_for_export_audit_log_response.py +23 -0
- benchling_v3_sdk/audit_log/types/get_task_for_export_audit_log_response_status.py +7 -0
- benchling_v3_sdk/audit_log/types/list_audit_log_request_sort.py +5 -0
- benchling_v3_sdk/automation_template/__init__.py +34 -0
- benchling_v3_sdk/automation_template/client.py +655 -0
- benchling_v3_sdk/automation_template/raw_client.py +1314 -0
- benchling_v3_sdk/automation_template/types/__init__.py +36 -0
- benchling_v3_sdk/automation_template/types/list_automation_template_request_sort.py +7 -0
- benchling_v3_sdk/automation_template_data_frame_variable/__init__.py +34 -0
- benchling_v3_sdk/automation_template_data_frame_variable/client.py +392 -0
- benchling_v3_sdk/automation_template_data_frame_variable/raw_client.py +677 -0
- benchling_v3_sdk/automation_template_data_frame_variable/types/__init__.py +38 -0
- benchling_v3_sdk/automation_template_data_frame_variable/types/list_automation_template_data_frame_variable_request_sort.py +7 -0
- benchling_v3_sdk/automation_template_variable/__init__.py +34 -0
- benchling_v3_sdk/automation_template_variable/client.py +388 -0
- benchling_v3_sdk/automation_template_variable/raw_client.py +673 -0
- benchling_v3_sdk/automation_template_variable/types/__init__.py +36 -0
- benchling_v3_sdk/automation_template_variable/types/list_automation_template_variable_request_sort.py +7 -0
- benchling_v3_sdk/base_client.py +3479 -0
- benchling_v3_sdk/benchling_logging.py +62 -0
- benchling_v3_sdk/box/__init__.py +38 -0
- benchling_v3_sdk/box/client.py +1061 -0
- benchling_v3_sdk/box/raw_client.py +2167 -0
- benchling_v3_sdk/box/types/__init__.py +40 -0
- benchling_v3_sdk/box/types/batch_create_box_response.py +20 -0
- benchling_v3_sdk/box/types/batch_update_box_response.py +20 -0
- benchling_v3_sdk/box/types/list_box_request_sort.py +7 -0
- benchling_v3_sdk/box_schema/__init__.py +38 -0
- benchling_v3_sdk/box_schema/client.py +1186 -0
- benchling_v3_sdk/box_schema/raw_client.py +2366 -0
- benchling_v3_sdk/box_schema/types/__init__.py +40 -0
- benchling_v3_sdk/box_schema/types/batch_create_box_schema_response.py +20 -0
- benchling_v3_sdk/box_schema/types/batch_update_box_schema_response.py +20 -0
- benchling_v3_sdk/box_schema/types/list_box_schema_request_sort.py +7 -0
- benchling_v3_sdk/bulk_export/__init__.py +55 -0
- benchling_v3_sdk/bulk_export/client.py +289 -0
- benchling_v3_sdk/bulk_export/raw_client.py +644 -0
- benchling_v3_sdk/bulk_export/types/__init__.py +55 -0
- benchling_v3_sdk/bulk_export/types/create_bulk_export_response.py +26 -0
- benchling_v3_sdk/bulk_export/types/get_successful_results_bulk_export_response.py +26 -0
- benchling_v3_sdk/bulk_export/types/get_task_bulk_export_response.py +29 -0
- benchling_v3_sdk/bulk_export/types/get_task_bulk_export_response_status.py +5 -0
- benchling_v3_sdk/bulk_export/types/get_task_bulk_export_response_status_by_model_value.py +30 -0
- benchling_v3_sdk/bulk_export/types/get_task_bulk_export_response_status_by_model_value_status.py +7 -0
- benchling_v3_sdk/bulk_task/__init__.py +55 -0
- benchling_v3_sdk/bulk_task/client.py +272 -0
- benchling_v3_sdk/bulk_task/raw_client.py +625 -0
- benchling_v3_sdk/bulk_task/types/__init__.py +53 -0
- benchling_v3_sdk/bulk_task/types/get_bulk_task_response.py +27 -0
- benchling_v3_sdk/bulk_task/types/get_bulk_task_response_progress.py +26 -0
- benchling_v3_sdk/bulk_task/types/get_bulk_task_response_result.py +24 -0
- benchling_v3_sdk/bulk_task/types/get_bulk_task_response_status.py +7 -0
- benchling_v3_sdk/bulk_task/types/get_errors_bulk_task_response.py +31 -0
- benchling_v3_sdk/bulk_task/types/get_successful_results_bulk_task_response.py +38 -0
- benchling_v3_sdk/chart/__init__.py +38 -0
- benchling_v3_sdk/chart/client.py +1043 -0
- benchling_v3_sdk/chart/raw_client.py +2113 -0
- benchling_v3_sdk/chart/types/__init__.py +40 -0
- benchling_v3_sdk/chart/types/batch_create_chart_response.py +20 -0
- benchling_v3_sdk/chart/types/batch_update_chart_response.py +20 -0
- benchling_v3_sdk/chart/types/list_chart_request_sort.py +7 -0
- benchling_v3_sdk/client.py +225 -0
- benchling_v3_sdk/collaboration/__init__.py +52 -0
- benchling_v3_sdk/collaboration/client.py +1131 -0
- benchling_v3_sdk/collaboration/raw_client.py +2407 -0
- benchling_v3_sdk/collaboration/types/__init__.py +50 -0
- benchling_v3_sdk/collaboration/types/batch_create_collaboration_response.py +20 -0
- benchling_v3_sdk/collaboration/types/batch_delete_collaboration_response.py +20 -0
- benchling_v3_sdk/collaboration/types/batch_delete_collaboration_response_items_item.py +19 -0
- benchling_v3_sdk/collaboration/types/batch_update_collaboration_response.py +20 -0
- benchling_v3_sdk/collaboration/types/list_collaboration_request_sort.py +7 -0
- benchling_v3_sdk/config_import_history_entry/__init__.py +34 -0
- benchling_v3_sdk/config_import_history_entry/client.py +328 -0
- benchling_v3_sdk/config_import_history_entry/raw_client.py +593 -0
- benchling_v3_sdk/config_import_history_entry/types/__init__.py +36 -0
- benchling_v3_sdk/config_import_history_entry/types/list_config_import_history_entry_request_sort.py +5 -0
- benchling_v3_sdk/container/__init__.py +55 -0
- benchling_v3_sdk/container/client.py +1502 -0
- benchling_v3_sdk/container/raw_client.py +3116 -0
- benchling_v3_sdk/container/types/__init__.py +53 -0
- benchling_v3_sdk/container/types/batch_create_container_response.py +20 -0
- benchling_v3_sdk/container/types/batch_update_container_response.py +20 -0
- benchling_v3_sdk/container/types/get_task_for_transfer_container_response.py +23 -0
- benchling_v3_sdk/container/types/get_task_for_transfer_container_response_status.py +7 -0
- benchling_v3_sdk/container/types/list_container_request_sort.py +7 -0
- benchling_v3_sdk/container/types/update_container_input_restriction_status.py +7 -0
- benchling_v3_sdk/container_schema/__init__.py +42 -0
- benchling_v3_sdk/container_schema/client.py +1129 -0
- benchling_v3_sdk/container_schema/raw_client.py +2316 -0
- benchling_v3_sdk/container_schema/types/__init__.py +40 -0
- benchling_v3_sdk/container_schema/types/batch_create_container_schema_response.py +20 -0
- benchling_v3_sdk/container_schema/types/batch_update_container_schema_response.py +20 -0
- benchling_v3_sdk/container_schema/types/list_container_schema_request_sort.py +7 -0
- benchling_v3_sdk/core/__init__.py +132 -0
- benchling_v3_sdk/core/api_error.py +23 -0
- benchling_v3_sdk/core/client_wrapper.py +172 -0
- benchling_v3_sdk/core/datetime_utils.py +70 -0
- benchling_v3_sdk/core/file.py +67 -0
- benchling_v3_sdk/core/force_multipart.py +18 -0
- benchling_v3_sdk/core/http_client.py +940 -0
- benchling_v3_sdk/core/http_response.py +63 -0
- benchling_v3_sdk/core/http_sse/__init__.py +42 -0
- benchling_v3_sdk/core/http_sse/_api.py +455 -0
- benchling_v3_sdk/core/http_sse/_decoders.py +74 -0
- benchling_v3_sdk/core/http_sse/_exceptions.py +7 -0
- benchling_v3_sdk/core/http_sse/_models.py +17 -0
- benchling_v3_sdk/core/jsonable_encoder.py +133 -0
- benchling_v3_sdk/core/logging.py +107 -0
- benchling_v3_sdk/core/oauth_token_provider.py +77 -0
- benchling_v3_sdk/core/pagination.py +82 -0
- benchling_v3_sdk/core/parse_error.py +36 -0
- benchling_v3_sdk/core/pydantic_utilities.py +486 -0
- benchling_v3_sdk/core/query_encoder.py +58 -0
- benchling_v3_sdk/core/remove_none_from_dict.py +11 -0
- benchling_v3_sdk/core/request_options.py +40 -0
- benchling_v3_sdk/core/serialization.py +347 -0
- benchling_v3_sdk/custom_entity/__init__.py +49 -0
- benchling_v3_sdk/custom_entity/client.py +1301 -0
- benchling_v3_sdk/custom_entity/raw_client.py +2542 -0
- benchling_v3_sdk/custom_entity/types/__init__.py +47 -0
- benchling_v3_sdk/custom_entity/types/batch_create_custom_entity_response.py +20 -0
- benchling_v3_sdk/custom_entity/types/batch_update_custom_entity_response.py +20 -0
- benchling_v3_sdk/custom_entity/types/list_custom_entity_request_sort.py +7 -0
- benchling_v3_sdk/custom_entity/types/update_custom_entity_input_naming_strategy.py +16 -0
- benchling_v3_sdk/custom_entity_schema/__init__.py +67 -0
- benchling_v3_sdk/custom_entity_schema/client.py +1858 -0
- benchling_v3_sdk/custom_entity_schema/raw_client.py +3806 -0
- benchling_v3_sdk/custom_entity_schema/types/__init__.py +77 -0
- benchling_v3_sdk/custom_entity_schema/types/batch_create_custom_entity_schema_response.py +20 -0
- benchling_v3_sdk/custom_entity_schema/types/batch_update_custom_entity_schema_response.py +20 -0
- benchling_v3_sdk/custom_entity_schema/types/custom_entity_schema_set_field_definitions_input_field_definitions_item.py +123 -0
- benchling_v3_sdk/custom_entity_schema/types/get_task_for_apply_fieldset_custom_entity_schema_response.py +25 -0
- benchling_v3_sdk/custom_entity_schema/types/get_task_for_apply_fieldset_custom_entity_schema_response_status.py +7 -0
- benchling_v3_sdk/custom_entity_schema/types/get_task_for_set_field_definitions_custom_entity_schema_response.py +25 -0
- benchling_v3_sdk/custom_entity_schema/types/get_task_for_set_field_definitions_custom_entity_schema_response_status.py +7 -0
- benchling_v3_sdk/custom_entity_schema/types/list_custom_entity_schema_request_sort.py +7 -0
- benchling_v3_sdk/custom_entity_schema/types/update_custom_entity_schema_input_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/custom_entity_schema/types/update_custom_entity_schema_input_icon_id.py +87 -0
- benchling_v3_sdk/data_frame/__init__.py +34 -0
- benchling_v3_sdk/data_frame/client.py +460 -0
- benchling_v3_sdk/data_frame/raw_client.py +753 -0
- benchling_v3_sdk/data_frame/types/__init__.py +34 -0
- benchling_v3_sdk/data_frame/types/list_data_frame_request_sort.py +7 -0
- benchling_v3_sdk/dataset/__init__.py +34 -0
- benchling_v3_sdk/dataset/client.py +436 -0
- benchling_v3_sdk/dataset/raw_client.py +749 -0
- benchling_v3_sdk/dataset/types/__init__.py +34 -0
- benchling_v3_sdk/dataset/types/list_dataset_request_sort.py +7 -0
- benchling_v3_sdk/dna_oligo/__init__.py +49 -0
- benchling_v3_sdk/dna_oligo/client.py +1815 -0
- benchling_v3_sdk/dna_oligo/raw_client.py +3217 -0
- benchling_v3_sdk/dna_oligo/types/__init__.py +47 -0
- benchling_v3_sdk/dna_oligo/types/batch_create_dna_oligo_response.py +20 -0
- benchling_v3_sdk/dna_oligo/types/batch_update_dna_oligo_response.py +20 -0
- benchling_v3_sdk/dna_oligo/types/list_dna_oligo_request_sort.py +7 -0
- benchling_v3_sdk/dna_oligo/types/update_dna_oligo_input_naming_strategy.py +16 -0
- benchling_v3_sdk/dna_oligo_schema/__init__.py +67 -0
- benchling_v3_sdk/dna_oligo_schema/client.py +1873 -0
- benchling_v3_sdk/dna_oligo_schema/raw_client.py +3826 -0
- benchling_v3_sdk/dna_oligo_schema/types/__init__.py +75 -0
- benchling_v3_sdk/dna_oligo_schema/types/batch_create_dna_oligo_schema_response.py +20 -0
- benchling_v3_sdk/dna_oligo_schema/types/batch_update_dna_oligo_schema_response.py +20 -0
- benchling_v3_sdk/dna_oligo_schema/types/dna_oligo_schema_set_field_definitions_input_field_definitions_item.py +123 -0
- benchling_v3_sdk/dna_oligo_schema/types/get_task_for_apply_fieldset_dna_oligo_schema_response.py +25 -0
- benchling_v3_sdk/dna_oligo_schema/types/get_task_for_apply_fieldset_dna_oligo_schema_response_status.py +7 -0
- benchling_v3_sdk/dna_oligo_schema/types/get_task_for_set_field_definitions_dna_oligo_schema_response.py +25 -0
- benchling_v3_sdk/dna_oligo_schema/types/get_task_for_set_field_definitions_dna_oligo_schema_response_status.py +7 -0
- benchling_v3_sdk/dna_oligo_schema/types/list_dna_oligo_schema_request_sort.py +7 -0
- benchling_v3_sdk/dna_oligo_schema/types/update_dna_oligo_schema_input_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/dna_oligo_schema/types/update_dna_oligo_schema_input_icon_id.py +7 -0
- benchling_v3_sdk/dna_sequence/__init__.py +49 -0
- benchling_v3_sdk/dna_sequence/client.py +2517 -0
- benchling_v3_sdk/dna_sequence/raw_client.py +3923 -0
- benchling_v3_sdk/dna_sequence/types/__init__.py +47 -0
- benchling_v3_sdk/dna_sequence/types/batch_create_dna_sequence_response.py +20 -0
- benchling_v3_sdk/dna_sequence/types/batch_update_dna_sequence_response.py +20 -0
- benchling_v3_sdk/dna_sequence/types/list_dna_sequence_request_sort.py +7 -0
- benchling_v3_sdk/dna_sequence/types/update_dna_sequence_input_naming_strategy.py +16 -0
- benchling_v3_sdk/dna_sequence_schema/__init__.py +67 -0
- benchling_v3_sdk/dna_sequence_schema/client.py +1882 -0
- benchling_v3_sdk/dna_sequence_schema/raw_client.py +3830 -0
- benchling_v3_sdk/dna_sequence_schema/types/__init__.py +77 -0
- benchling_v3_sdk/dna_sequence_schema/types/batch_create_dna_sequence_schema_response.py +20 -0
- benchling_v3_sdk/dna_sequence_schema/types/batch_update_dna_sequence_schema_response.py +20 -0
- benchling_v3_sdk/dna_sequence_schema/types/dna_sequence_schema_set_field_definitions_input_field_definitions_item.py +135 -0
- benchling_v3_sdk/dna_sequence_schema/types/get_task_for_apply_fieldset_dna_sequence_schema_response.py +25 -0
- benchling_v3_sdk/dna_sequence_schema/types/get_task_for_apply_fieldset_dna_sequence_schema_response_status.py +7 -0
- benchling_v3_sdk/dna_sequence_schema/types/get_task_for_set_field_definitions_dna_sequence_schema_response.py +25 -0
- benchling_v3_sdk/dna_sequence_schema/types/get_task_for_set_field_definitions_dna_sequence_schema_response_status.py +7 -0
- benchling_v3_sdk/dna_sequence_schema/types/list_dna_sequence_schema_request_sort.py +7 -0
- benchling_v3_sdk/dna_sequence_schema/types/update_dna_sequence_schema_input_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/dna_sequence_schema/types/update_dna_sequence_schema_input_icon_id.py +8 -0
- benchling_v3_sdk/document_export/__init__.py +49 -0
- benchling_v3_sdk/document_export/client.py +301 -0
- benchling_v3_sdk/document_export/raw_client.py +656 -0
- benchling_v3_sdk/document_export/types/__init__.py +47 -0
- benchling_v3_sdk/document_export/types/create_document_export_request_format.py +5 -0
- benchling_v3_sdk/document_export/types/create_document_export_response.py +22 -0
- benchling_v3_sdk/document_export/types/get_task_document_export_response.py +42 -0
- benchling_v3_sdk/document_export/types/get_task_document_export_response_status.py +7 -0
- benchling_v3_sdk/document_part_unstructured_table/__init__.py +88 -0
- benchling_v3_sdk/document_part_unstructured_table/client.py +431 -0
- benchling_v3_sdk/document_part_unstructured_table/raw_client.py +608 -0
- benchling_v3_sdk/document_part_unstructured_table/types/__init__.py +116 -0
- benchling_v3_sdk/document_part_unstructured_table/types/get_document_part_unstructured_table_response.py +69 -0
- benchling_v3_sdk/document_part_unstructured_table/types/update_document_part_unstructured_table_request_caption.py +35 -0
- benchling_v3_sdk/document_part_unstructured_table/types/update_document_part_unstructured_table_request_caption_formats_item.py +34 -0
- benchling_v3_sdk/document_part_unstructured_table/types/update_document_part_unstructured_table_request_caption_formats_item_properties_item.py +7 -0
- benchling_v3_sdk/document_part_unstructured_table/types/update_document_part_unstructured_table_request_caption_links_item.py +21 -0
- benchling_v3_sdk/document_part_unstructured_table/types/update_document_part_unstructured_table_request_caption_mentions_item.py +24 -0
- benchling_v3_sdk/document_part_unstructured_table/types/update_document_part_unstructured_table_request_column_definitions_item.py +25 -0
- benchling_v3_sdk/document_part_unstructured_table/types/update_document_part_unstructured_table_request_rows_item.py +22 -0
- benchling_v3_sdk/document_part_unstructured_table/types/update_document_part_unstructured_table_request_rows_item_cells_item.py +94 -0
- benchling_v3_sdk/document_part_unstructured_table/types/update_document_part_unstructured_table_request_rows_item_cells_item_format.py +53 -0
- benchling_v3_sdk/document_part_unstructured_table/types/update_document_part_unstructured_table_request_rows_item_cells_item_format_alignment.py +7 -0
- benchling_v3_sdk/document_part_unstructured_table/types/update_document_part_unstructured_table_request_rows_item_cells_item_format_properties_item.py +7 -0
- benchling_v3_sdk/document_part_unstructured_table/types/update_document_part_unstructured_table_request_rows_item_cells_item_input_value.py +27 -0
- benchling_v3_sdk/document_part_unstructured_table/types/update_document_part_unstructured_table_request_rows_item_cells_item_input_value_type.py +7 -0
- benchling_v3_sdk/document_part_unstructured_table/types/update_document_part_unstructured_table_request_rows_item_cells_item_merge_range.py +30 -0
- benchling_v3_sdk/document_part_unstructured_table/types/update_document_part_unstructured_table_request_rows_item_cells_item_merge_range_parent.py +24 -0
- benchling_v3_sdk/document_part_unstructured_table/types/update_document_part_unstructured_table_response.py +47 -0
- benchling_v3_sdk/dropdown/__init__.py +38 -0
- benchling_v3_sdk/dropdown/client.py +976 -0
- benchling_v3_sdk/dropdown/raw_client.py +2128 -0
- benchling_v3_sdk/dropdown/types/__init__.py +40 -0
- benchling_v3_sdk/dropdown/types/batch_create_dropdown_response.py +20 -0
- benchling_v3_sdk/dropdown/types/batch_update_dropdown_response.py +20 -0
- benchling_v3_sdk/dropdown/types/update_dropdown_input_options_item.py +8 -0
- benchling_v3_sdk/dropdown_link_field_definition/__init__.py +34 -0
- benchling_v3_sdk/dropdown_link_field_definition/client.py +408 -0
- benchling_v3_sdk/dropdown_link_field_definition/raw_client.py +705 -0
- benchling_v3_sdk/dropdown_link_field_definition/types/__init__.py +36 -0
- benchling_v3_sdk/dropdown_link_field_definition/types/list_dropdown_link_field_definition_request_sort.py +7 -0
- benchling_v3_sdk/dropdown_option/__init__.py +4 -0
- benchling_v3_sdk/dropdown_option/client.py +277 -0
- benchling_v3_sdk/dropdown_option/raw_client.py +532 -0
- benchling_v3_sdk/entity_schema/__init__.py +34 -0
- benchling_v3_sdk/entity_schema/client.py +485 -0
- benchling_v3_sdk/entity_schema/raw_client.py +902 -0
- benchling_v3_sdk/entity_schema/types/__init__.py +34 -0
- benchling_v3_sdk/entity_schema/types/list_entity_schema_request_sort.py +7 -0
- benchling_v3_sdk/entry/__init__.py +44 -0
- benchling_v3_sdk/entry/client.py +2141 -0
- benchling_v3_sdk/entry/raw_client.py +2983 -0
- benchling_v3_sdk/entry/types/__init__.py +42 -0
- benchling_v3_sdk/entry/types/batch_create_entry_response.py +20 -0
- benchling_v3_sdk/entry/types/batch_update_entry_response.py +20 -0
- benchling_v3_sdk/entry/types/list_entry_request_sort.py +7 -0
- benchling_v3_sdk/entry/types/list_parts_entry_request_sort.py +5 -0
- benchling_v3_sdk/entry_schema/__init__.py +55 -0
- benchling_v3_sdk/entry_schema/client.py +1309 -0
- benchling_v3_sdk/entry_schema/raw_client.py +2734 -0
- benchling_v3_sdk/entry_schema/types/__init__.py +59 -0
- benchling_v3_sdk/entry_schema/types/batch_create_entry_schema_response.py +20 -0
- benchling_v3_sdk/entry_schema/types/batch_update_entry_schema_response.py +20 -0
- benchling_v3_sdk/entry_schema/types/entry_schema_set_field_definitions_input_field_definitions_item.py +123 -0
- benchling_v3_sdk/entry_schema/types/get_task_for_set_field_definitions_entry_schema_response.py +25 -0
- benchling_v3_sdk/entry_schema/types/get_task_for_set_field_definitions_entry_schema_response_status.py +7 -0
- benchling_v3_sdk/entry_schema/types/list_entry_schema_request_sort.py +7 -0
- benchling_v3_sdk/entry_subtemplate/__init__.py +34 -0
- benchling_v3_sdk/entry_subtemplate/client.py +418 -0
- benchling_v3_sdk/entry_subtemplate/raw_client.py +721 -0
- benchling_v3_sdk/entry_subtemplate/types/__init__.py +34 -0
- benchling_v3_sdk/entry_subtemplate/types/list_entry_subtemplate_request_sort.py +7 -0
- benchling_v3_sdk/entry_template/__init__.py +34 -0
- benchling_v3_sdk/entry_template/client.py +418 -0
- benchling_v3_sdk/entry_template/raw_client.py +721 -0
- benchling_v3_sdk/entry_template/types/__init__.py +34 -0
- benchling_v3_sdk/entry_template/types/list_entry_template_request_sort.py +7 -0
- benchling_v3_sdk/environment.py +7 -0
- benchling_v3_sdk/enzyme/__init__.py +4 -0
- benchling_v3_sdk/enzyme/client.py +372 -0
- benchling_v3_sdk/enzyme/raw_client.py +761 -0
- benchling_v3_sdk/enzyme_list/__init__.py +38 -0
- benchling_v3_sdk/enzyme_list/client.py +1023 -0
- benchling_v3_sdk/enzyme_list/raw_client.py +2169 -0
- benchling_v3_sdk/enzyme_list/types/__init__.py +40 -0
- benchling_v3_sdk/enzyme_list/types/batch_create_enzyme_list_response.py +20 -0
- benchling_v3_sdk/enzyme_list/types/batch_update_enzyme_list_response.py +20 -0
- benchling_v3_sdk/enzyme_list/types/list_enzyme_list_request_sort.py +7 -0
- benchling_v3_sdk/equipment_schema/__init__.py +67 -0
- benchling_v3_sdk/equipment_schema/client.py +1849 -0
- benchling_v3_sdk/equipment_schema/raw_client.py +3802 -0
- benchling_v3_sdk/equipment_schema/types/__init__.py +75 -0
- benchling_v3_sdk/equipment_schema/types/batch_create_equipment_schema_response.py +20 -0
- benchling_v3_sdk/equipment_schema/types/batch_update_equipment_schema_response.py +20 -0
- benchling_v3_sdk/equipment_schema/types/equipment_schema_set_field_definitions_input_field_definitions_item.py +123 -0
- benchling_v3_sdk/equipment_schema/types/get_task_for_apply_fieldset_equipment_schema_response.py +25 -0
- benchling_v3_sdk/equipment_schema/types/get_task_for_apply_fieldset_equipment_schema_response_status.py +7 -0
- benchling_v3_sdk/equipment_schema/types/get_task_for_set_field_definitions_equipment_schema_response.py +25 -0
- benchling_v3_sdk/equipment_schema/types/get_task_for_set_field_definitions_equipment_schema_response_status.py +7 -0
- benchling_v3_sdk/equipment_schema/types/list_equipment_schema_request_sort.py +7 -0
- benchling_v3_sdk/equipment_schema/types/update_equipment_schema_input_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/equipment_schema/types/update_equipment_schema_input_icon_id.py +7 -0
- benchling_v3_sdk/errors/__init__.py +56 -0
- benchling_v3_sdk/errors/bad_request_error.py +10 -0
- benchling_v3_sdk/errors/conflict_error.py +11 -0
- benchling_v3_sdk/errors/forbidden_error.py +11 -0
- benchling_v3_sdk/errors/internal_server_error.py +11 -0
- benchling_v3_sdk/errors/not_found_error.py +11 -0
- benchling_v3_sdk/errors/payment_required_error.py +11 -0
- benchling_v3_sdk/errors/too_many_requests_error.py +11 -0
- benchling_v3_sdk/event_subscription/__init__.py +34 -0
- benchling_v3_sdk/event_subscription/client.py +328 -0
- benchling_v3_sdk/event_subscription/raw_client.py +593 -0
- benchling_v3_sdk/event_subscription/types/__init__.py +34 -0
- benchling_v3_sdk/event_subscription/types/list_event_subscription_request_sort.py +5 -0
- benchling_v3_sdk/feature_library/__init__.py +49 -0
- benchling_v3_sdk/feature_library/client.py +1163 -0
- benchling_v3_sdk/feature_library/raw_client.py +2364 -0
- benchling_v3_sdk/feature_library/types/__init__.py +47 -0
- benchling_v3_sdk/feature_library/types/batch_create_feature_library_response.py +20 -0
- benchling_v3_sdk/feature_library/types/batch_update_feature_library_response.py +20 -0
- benchling_v3_sdk/feature_library/types/list_feature_library_request_sort.py +7 -0
- benchling_v3_sdk/feature_library/types/list_features_feature_library_request_sort.py +7 -0
- benchling_v3_sdk/feature_library_item/__init__.py +46 -0
- benchling_v3_sdk/feature_library_item/client.py +1025 -0
- benchling_v3_sdk/feature_library_item/raw_client.py +2035 -0
- benchling_v3_sdk/feature_library_item/types/__init__.py +44 -0
- benchling_v3_sdk/feature_library_item/types/batch_create_feature_library_item_response.py +20 -0
- benchling_v3_sdk/feature_library_item/types/batch_update_feature_library_item_response.py +20 -0
- benchling_v3_sdk/feature_library_item/types/list_feature_library_item_request_sort.py +7 -0
- benchling_v3_sdk/fieldset/__init__.py +61 -0
- benchling_v3_sdk/fieldset/client.py +1444 -0
- benchling_v3_sdk/fieldset/raw_client.py +3018 -0
- benchling_v3_sdk/fieldset/types/__init__.py +65 -0
- benchling_v3_sdk/fieldset/types/batch_create_fieldset_response.py +20 -0
- benchling_v3_sdk/fieldset/types/batch_update_fieldset_response.py +20 -0
- benchling_v3_sdk/fieldset/types/fieldset_set_field_definitions_input_field_definitions_item.py +123 -0
- benchling_v3_sdk/fieldset/types/get_task_for_set_field_definitions_fieldset_response.py +25 -0
- benchling_v3_sdk/fieldset/types/get_task_for_set_field_definitions_fieldset_response_status.py +7 -0
- benchling_v3_sdk/fieldset/types/list_fieldset_request_sort.py +7 -0
- benchling_v3_sdk/fieldset/types/update_fieldset_input_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/fieldset/types/update_fieldset_input_item_type.py +23 -0
- benchling_v3_sdk/file/__init__.py +38 -0
- benchling_v3_sdk/file/client.py +984 -0
- benchling_v3_sdk/file/raw_client.py +2066 -0
- benchling_v3_sdk/file/types/__init__.py +40 -0
- benchling_v3_sdk/file/types/batch_create_file_response.py +20 -0
- benchling_v3_sdk/file/types/batch_update_file_response.py +20 -0
- benchling_v3_sdk/file/types/list_file_request_sort.py +7 -0
- benchling_v3_sdk/folder/__init__.py +55 -0
- benchling_v3_sdk/folder/client.py +1402 -0
- benchling_v3_sdk/folder/raw_client.py +3006 -0
- benchling_v3_sdk/folder/types/__init__.py +53 -0
- benchling_v3_sdk/folder/types/batch_create_folder_response.py +20 -0
- benchling_v3_sdk/folder/types/batch_delete_folder_response.py +20 -0
- benchling_v3_sdk/folder/types/batch_delete_folder_response_items_item.py +19 -0
- benchling_v3_sdk/folder/types/batch_update_folder_response.py +20 -0
- benchling_v3_sdk/folder/types/list_children_folder_request_sort.py +5 -0
- benchling_v3_sdk/folder/types/list_folder_request_sort.py +5 -0
- benchling_v3_sdk/germline/__init__.py +4 -0
- benchling_v3_sdk/germline/client.py +275 -0
- benchling_v3_sdk/germline/raw_client.py +532 -0
- benchling_v3_sdk/group_membership/__init__.py +34 -0
- benchling_v3_sdk/group_membership/client.py +388 -0
- benchling_v3_sdk/group_membership/raw_client.py +665 -0
- benchling_v3_sdk/group_membership/types/__init__.py +34 -0
- benchling_v3_sdk/group_membership/types/list_group_membership_request_sort.py +7 -0
- benchling_v3_sdk/label_template/__init__.py +34 -0
- benchling_v3_sdk/label_template/client.py +388 -0
- benchling_v3_sdk/label_template/raw_client.py +673 -0
- benchling_v3_sdk/label_template/types/__init__.py +34 -0
- benchling_v3_sdk/label_template/types/list_label_template_request_sort.py +7 -0
- benchling_v3_sdk/legacy_app_installation/__init__.py +34 -0
- benchling_v3_sdk/legacy_app_installation/client.py +499 -0
- benchling_v3_sdk/legacy_app_installation/raw_client.py +918 -0
- benchling_v3_sdk/legacy_app_installation/types/__init__.py +36 -0
- benchling_v3_sdk/legacy_app_installation/types/list_legacy_app_installation_request_sort.py +7 -0
- benchling_v3_sdk/library_parameter_definition/__init__.py +46 -0
- benchling_v3_sdk/library_parameter_definition/client.py +1116 -0
- benchling_v3_sdk/library_parameter_definition/raw_client.py +2163 -0
- benchling_v3_sdk/library_parameter_definition/types/__init__.py +44 -0
- benchling_v3_sdk/library_parameter_definition/types/batch_create_library_parameter_definition_response.py +20 -0
- benchling_v3_sdk/library_parameter_definition/types/batch_update_library_parameter_definition_response.py +20 -0
- benchling_v3_sdk/library_parameter_definition/types/list_library_parameter_definition_request_sort.py +7 -0
- benchling_v3_sdk/limits/__init__.py +34 -0
- benchling_v3_sdk/limits/client.py +104 -0
- benchling_v3_sdk/limits/raw_client.py +103 -0
- benchling_v3_sdk/limits/types/__init__.py +34 -0
- benchling_v3_sdk/limits/types/get_limits_response.py +35 -0
- benchling_v3_sdk/location/__init__.py +38 -0
- benchling_v3_sdk/location/client.py +1051 -0
- benchling_v3_sdk/location/raw_client.py +2151 -0
- benchling_v3_sdk/location/types/__init__.py +40 -0
- benchling_v3_sdk/location/types/batch_create_location_response.py +20 -0
- benchling_v3_sdk/location/types/batch_update_location_response.py +20 -0
- benchling_v3_sdk/location/types/list_location_request_sort.py +7 -0
- benchling_v3_sdk/location_schema/__init__.py +42 -0
- benchling_v3_sdk/location_schema/client.py +1129 -0
- benchling_v3_sdk/location_schema/raw_client.py +2316 -0
- benchling_v3_sdk/location_schema/types/__init__.py +40 -0
- benchling_v3_sdk/location_schema/types/batch_create_location_schema_response.py +20 -0
- benchling_v3_sdk/location_schema/types/batch_update_location_schema_response.py +20 -0
- benchling_v3_sdk/location_schema/types/list_location_schema_request_sort.py +7 -0
- benchling_v3_sdk/matrix_plate/__init__.py +38 -0
- benchling_v3_sdk/matrix_plate/client.py +1069 -0
- benchling_v3_sdk/matrix_plate/raw_client.py +2158 -0
- benchling_v3_sdk/matrix_plate/types/__init__.py +40 -0
- benchling_v3_sdk/matrix_plate/types/batch_create_matrix_plate_response.py +20 -0
- benchling_v3_sdk/matrix_plate/types/batch_update_matrix_plate_response.py +20 -0
- benchling_v3_sdk/matrix_plate/types/list_matrix_plate_request_sort.py +7 -0
- benchling_v3_sdk/matrix_plate_schema/__init__.py +46 -0
- benchling_v3_sdk/matrix_plate_schema/client.py +1210 -0
- benchling_v3_sdk/matrix_plate_schema/raw_client.py +2384 -0
- benchling_v3_sdk/matrix_plate_schema/types/__init__.py +44 -0
- benchling_v3_sdk/matrix_plate_schema/types/batch_create_matrix_plate_schema_response.py +20 -0
- benchling_v3_sdk/matrix_plate_schema/types/batch_update_matrix_plate_schema_response.py +20 -0
- benchling_v3_sdk/matrix_plate_schema/types/list_matrix_plate_schema_request_sort.py +7 -0
- benchling_v3_sdk/mixture/__init__.py +34 -0
- benchling_v3_sdk/mixture/client.py +593 -0
- benchling_v3_sdk/mixture/raw_client.py +1062 -0
- benchling_v3_sdk/mixture/types/__init__.py +34 -0
- benchling_v3_sdk/mixture/types/list_mixture_request_sort.py +7 -0
- benchling_v3_sdk/mixture_schema/__init__.py +67 -0
- benchling_v3_sdk/mixture_schema/client.py +1933 -0
- benchling_v3_sdk/mixture_schema/raw_client.py +3878 -0
- benchling_v3_sdk/mixture_schema/types/__init__.py +75 -0
- benchling_v3_sdk/mixture_schema/types/batch_create_mixture_schema_response.py +20 -0
- benchling_v3_sdk/mixture_schema/types/batch_update_mixture_schema_response.py +20 -0
- benchling_v3_sdk/mixture_schema/types/get_task_for_apply_fieldset_mixture_schema_response.py +25 -0
- benchling_v3_sdk/mixture_schema/types/get_task_for_apply_fieldset_mixture_schema_response_status.py +7 -0
- benchling_v3_sdk/mixture_schema/types/get_task_for_set_field_definitions_mixture_schema_response.py +25 -0
- benchling_v3_sdk/mixture_schema/types/get_task_for_set_field_definitions_mixture_schema_response_status.py +7 -0
- benchling_v3_sdk/mixture_schema/types/list_mixture_schema_request_sort.py +7 -0
- benchling_v3_sdk/mixture_schema/types/mixture_schema_set_field_definitions_input_field_definitions_item.py +123 -0
- benchling_v3_sdk/mixture_schema/types/update_mixture_schema_input_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/mixture_schema/types/update_mixture_schema_input_icon_id.py +8 -0
- benchling_v3_sdk/molecule/__init__.py +49 -0
- benchling_v3_sdk/molecule/client.py +1403 -0
- benchling_v3_sdk/molecule/raw_client.py +2763 -0
- benchling_v3_sdk/molecule/types/__init__.py +47 -0
- benchling_v3_sdk/molecule/types/batch_create_molecule_response.py +20 -0
- benchling_v3_sdk/molecule/types/batch_update_molecule_response.py +20 -0
- benchling_v3_sdk/molecule/types/list_molecule_request_sort.py +7 -0
- benchling_v3_sdk/molecule/types/update_molecule_input_naming_strategy.py +16 -0
- benchling_v3_sdk/molecule_schema/__init__.py +67 -0
- benchling_v3_sdk/molecule_schema/client.py +1849 -0
- benchling_v3_sdk/molecule_schema/raw_client.py +3806 -0
- benchling_v3_sdk/molecule_schema/types/__init__.py +75 -0
- benchling_v3_sdk/molecule_schema/types/batch_create_molecule_schema_response.py +20 -0
- benchling_v3_sdk/molecule_schema/types/batch_update_molecule_schema_response.py +20 -0
- benchling_v3_sdk/molecule_schema/types/get_task_for_apply_fieldset_molecule_schema_response.py +25 -0
- benchling_v3_sdk/molecule_schema/types/get_task_for_apply_fieldset_molecule_schema_response_status.py +7 -0
- benchling_v3_sdk/molecule_schema/types/get_task_for_set_field_definitions_molecule_schema_response.py +25 -0
- benchling_v3_sdk/molecule_schema/types/get_task_for_set_field_definitions_molecule_schema_response_status.py +7 -0
- benchling_v3_sdk/molecule_schema/types/list_molecule_schema_request_sort.py +7 -0
- benchling_v3_sdk/molecule_schema/types/molecule_schema_set_field_definitions_input_field_definitions_item.py +123 -0
- benchling_v3_sdk/molecule_schema/types/update_molecule_schema_input_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/molecule_schema/types/update_molecule_schema_input_icon_id.py +7 -0
- benchling_v3_sdk/nucleotide_alignment/__init__.py +64 -0
- benchling_v3_sdk/nucleotide_alignment/client.py +1155 -0
- benchling_v3_sdk/nucleotide_alignment/raw_client.py +2331 -0
- benchling_v3_sdk/nucleotide_alignment/types/__init__.py +70 -0
- benchling_v3_sdk/nucleotide_alignment/types/batch_delete_nucleotide_alignment_response.py +20 -0
- benchling_v3_sdk/nucleotide_alignment/types/batch_delete_nucleotide_alignment_response_items_item.py +19 -0
- benchling_v3_sdk/nucleotide_alignment/types/create_consensus_alignment_input_algorithm.py +5 -0
- benchling_v3_sdk/nucleotide_alignment/types/create_template_alignment_input_algorithm.py +5 -0
- benchling_v3_sdk/nucleotide_alignment/types/get_task_for_create_consensus_alignment_nucleotide_alignment_response.py +25 -0
- benchling_v3_sdk/nucleotide_alignment/types/get_task_for_create_consensus_alignment_nucleotide_alignment_response_status.py +7 -0
- benchling_v3_sdk/nucleotide_alignment/types/get_task_for_create_template_alignment_nucleotide_alignment_response.py +25 -0
- benchling_v3_sdk/nucleotide_alignment/types/get_task_for_create_template_alignment_nucleotide_alignment_response_status.py +7 -0
- benchling_v3_sdk/nucleotide_alignment/types/list_nucleotide_alignment_request_sort.py +7 -0
- benchling_v3_sdk/nucleotide_monomer/__init__.py +34 -0
- benchling_v3_sdk/nucleotide_monomer/client.py +408 -0
- benchling_v3_sdk/nucleotide_monomer/raw_client.py +705 -0
- benchling_v3_sdk/nucleotide_monomer/types/__init__.py +34 -0
- benchling_v3_sdk/nucleotide_monomer/types/list_nucleotide_monomer_request_sort.py +7 -0
- benchling_v3_sdk/oauth/__init__.py +47 -0
- benchling_v3_sdk/oauth/client.py +214 -0
- benchling_v3_sdk/oauth/errors/__init__.py +38 -0
- benchling_v3_sdk/oauth/errors/bad_request_error.py +10 -0
- benchling_v3_sdk/oauth/errors/unauthorized_error.py +10 -0
- benchling_v3_sdk/oauth/raw_client.py +261 -0
- benchling_v3_sdk/oauth/types/__init__.py +40 -0
- benchling_v3_sdk/oauth/types/get_token_oauth_request_grant_type.py +7 -0
- benchling_v3_sdk/oauth/types/get_token_oauth_response.py +36 -0
- benchling_v3_sdk/oauth/types/get_token_oauth_response_token_type.py +5 -0
- benchling_v3_sdk/oligo_conjugate/__init__.py +49 -0
- benchling_v3_sdk/oligo_conjugate/client.py +1342 -0
- benchling_v3_sdk/oligo_conjugate/raw_client.py +2576 -0
- benchling_v3_sdk/oligo_conjugate/types/__init__.py +47 -0
- benchling_v3_sdk/oligo_conjugate/types/batch_create_oligo_conjugate_response.py +20 -0
- benchling_v3_sdk/oligo_conjugate/types/batch_update_oligo_conjugate_response.py +20 -0
- benchling_v3_sdk/oligo_conjugate/types/list_oligo_conjugate_request_sort.py +7 -0
- benchling_v3_sdk/oligo_conjugate/types/oligo_conjugate_update_naming_strategy.py +16 -0
- benchling_v3_sdk/oligo_conjugate_schema/__init__.py +67 -0
- benchling_v3_sdk/oligo_conjugate_schema/client.py +1926 -0
- benchling_v3_sdk/oligo_conjugate_schema/raw_client.py +3839 -0
- benchling_v3_sdk/oligo_conjugate_schema/types/__init__.py +77 -0
- benchling_v3_sdk/oligo_conjugate_schema/types/batch_create_oligo_conjugate_schema_response.py +20 -0
- benchling_v3_sdk/oligo_conjugate_schema/types/batch_update_oligo_conjugate_schema_response.py +20 -0
- benchling_v3_sdk/oligo_conjugate_schema/types/get_task_for_apply_fieldset_oligo_conjugate_schema_response.py +25 -0
- benchling_v3_sdk/oligo_conjugate_schema/types/get_task_for_apply_fieldset_oligo_conjugate_schema_response_status.py +7 -0
- benchling_v3_sdk/oligo_conjugate_schema/types/get_task_for_set_field_definitions_oligo_conjugate_schema_response.py +25 -0
- benchling_v3_sdk/oligo_conjugate_schema/types/get_task_for_set_field_definitions_oligo_conjugate_schema_response_status.py +7 -0
- benchling_v3_sdk/oligo_conjugate_schema/types/list_oligo_conjugate_schema_request_sort.py +7 -0
- benchling_v3_sdk/oligo_conjugate_schema/types/oligo_conjugate_schema_set_field_definitions_input_field_definitions_item.py +123 -0
- benchling_v3_sdk/oligo_conjugate_schema/types/update_oligo_conjugate_schema_input_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/oligo_conjugate_schema/types/update_oligo_conjugate_schema_input_icon_id.py +19 -0
- benchling_v3_sdk/oligo_duplex/__init__.py +49 -0
- benchling_v3_sdk/oligo_duplex/client.py +1366 -0
- benchling_v3_sdk/oligo_duplex/raw_client.py +2596 -0
- benchling_v3_sdk/oligo_duplex/types/__init__.py +47 -0
- benchling_v3_sdk/oligo_duplex/types/batch_create_oligo_duplex_response.py +20 -0
- benchling_v3_sdk/oligo_duplex/types/batch_update_oligo_duplex_response.py +20 -0
- benchling_v3_sdk/oligo_duplex/types/list_oligo_duplex_request_sort.py +7 -0
- benchling_v3_sdk/oligo_duplex/types/oligo_duplex_update_naming_strategy.py +16 -0
- benchling_v3_sdk/oligo_duplex_schema/__init__.py +67 -0
- benchling_v3_sdk/oligo_duplex_schema/client.py +1950 -0
- benchling_v3_sdk/oligo_duplex_schema/raw_client.py +3855 -0
- benchling_v3_sdk/oligo_duplex_schema/types/__init__.py +77 -0
- benchling_v3_sdk/oligo_duplex_schema/types/batch_create_oligo_duplex_schema_response.py +20 -0
- benchling_v3_sdk/oligo_duplex_schema/types/batch_update_oligo_duplex_schema_response.py +20 -0
- benchling_v3_sdk/oligo_duplex_schema/types/get_task_for_apply_fieldset_oligo_duplex_schema_response.py +25 -0
- benchling_v3_sdk/oligo_duplex_schema/types/get_task_for_apply_fieldset_oligo_duplex_schema_response_status.py +7 -0
- benchling_v3_sdk/oligo_duplex_schema/types/get_task_for_set_field_definitions_oligo_duplex_schema_response.py +25 -0
- benchling_v3_sdk/oligo_duplex_schema/types/get_task_for_set_field_definitions_oligo_duplex_schema_response_status.py +7 -0
- benchling_v3_sdk/oligo_duplex_schema/types/list_oligo_duplex_schema_request_sort.py +7 -0
- benchling_v3_sdk/oligo_duplex_schema/types/oligo_duplex_schema_set_field_definitions_input_field_definitions_item.py +123 -0
- benchling_v3_sdk/oligo_duplex_schema/types/update_oligo_duplex_schema_input_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/oligo_duplex_schema/types/update_oligo_duplex_schema_input_icon_id.py +7 -0
- benchling_v3_sdk/organization/__init__.py +38 -0
- benchling_v3_sdk/organization/client.py +932 -0
- benchling_v3_sdk/organization/raw_client.py +2107 -0
- benchling_v3_sdk/organization/types/__init__.py +40 -0
- benchling_v3_sdk/organization/types/batch_create_organization_response.py +20 -0
- benchling_v3_sdk/organization/types/batch_update_organization_response.py +20 -0
- benchling_v3_sdk/organization/types/list_organization_request_sort.py +5 -0
- benchling_v3_sdk/pipeline_step/__init__.py +34 -0
- benchling_v3_sdk/pipeline_step/client.py +521 -0
- benchling_v3_sdk/pipeline_step/raw_client.py +1034 -0
- benchling_v3_sdk/pipeline_step/types/__init__.py +34 -0
- benchling_v3_sdk/pipeline_step/types/list_pipeline_step_request_sort.py +7 -0
- benchling_v3_sdk/pipeline_step_data/__init__.py +34 -0
- benchling_v3_sdk/pipeline_step_data/client.py +368 -0
- benchling_v3_sdk/pipeline_step_data/raw_client.py +641 -0
- benchling_v3_sdk/pipeline_step_data/types/__init__.py +34 -0
- benchling_v3_sdk/pipeline_step_data/types/list_pipeline_step_data_request_sort.py +7 -0
- benchling_v3_sdk/plate/__init__.py +34 -0
- benchling_v3_sdk/plate/client.py +543 -0
- benchling_v3_sdk/plate/raw_client.py +990 -0
- benchling_v3_sdk/plate/types/__init__.py +34 -0
- benchling_v3_sdk/plate/types/list_plate_request_sort.py +7 -0
- benchling_v3_sdk/plate_design_template/__init__.py +46 -0
- benchling_v3_sdk/plate_design_template/client.py +948 -0
- benchling_v3_sdk/plate_design_template/raw_client.py +1992 -0
- benchling_v3_sdk/plate_design_template/types/__init__.py +44 -0
- benchling_v3_sdk/plate_design_template/types/batch_create_plate_design_template_response.py +20 -0
- benchling_v3_sdk/plate_design_template/types/batch_update_plate_design_template_response.py +20 -0
- benchling_v3_sdk/plate_design_template/types/list_plate_design_template_request_sort.py +7 -0
- benchling_v3_sdk/plate_record/__init__.py +52 -0
- benchling_v3_sdk/plate_record/client.py +1574 -0
- benchling_v3_sdk/plate_record/raw_client.py +3157 -0
- benchling_v3_sdk/plate_record/types/__init__.py +52 -0
- benchling_v3_sdk/plate_record/types/batch_create_plate_record_response.py +20 -0
- benchling_v3_sdk/plate_record/types/batch_update_plate_record_response.py +20 -0
- benchling_v3_sdk/plate_record/types/get_task_for_transfer_async_plate_record_response.py +23 -0
- benchling_v3_sdk/plate_record/types/get_task_for_transfer_async_plate_record_response_status.py +7 -0
- benchling_v3_sdk/plate_record/types/list_plate_record_request_sort.py +7 -0
- benchling_v3_sdk/plate_schema/__init__.py +34 -0
- benchling_v3_sdk/plate_schema/client.py +485 -0
- benchling_v3_sdk/plate_schema/raw_client.py +902 -0
- benchling_v3_sdk/plate_schema/types/__init__.py +34 -0
- benchling_v3_sdk/plate_schema/types/list_plate_schema_request_sort.py +7 -0
- benchling_v3_sdk/policy/__init__.py +34 -0
- benchling_v3_sdk/policy/client.py +386 -0
- benchling_v3_sdk/policy/raw_client.py +673 -0
- benchling_v3_sdk/policy/types/__init__.py +34 -0
- benchling_v3_sdk/policy/types/list_policy_request_sort.py +7 -0
- benchling_v3_sdk/prediction_batch/__init__.py +46 -0
- benchling_v3_sdk/prediction_batch/client.py +957 -0
- benchling_v3_sdk/prediction_batch/raw_client.py +1751 -0
- benchling_v3_sdk/prediction_batch/types/__init__.py +44 -0
- benchling_v3_sdk/prediction_batch/types/batch_create_prediction_batch_response.py +20 -0
- benchling_v3_sdk/prediction_batch/types/list_prediction_batch_request_sort.py +7 -0
- benchling_v3_sdk/prediction_batch/types/list_prediction_jobs_prediction_batch_request_sort.py +7 -0
- benchling_v3_sdk/prediction_job/__init__.py +34 -0
- benchling_v3_sdk/prediction_job/client.py +378 -0
- benchling_v3_sdk/prediction_job/raw_client.py +653 -0
- benchling_v3_sdk/prediction_job/types/__init__.py +34 -0
- benchling_v3_sdk/prediction_job/types/list_prediction_job_request_sort.py +7 -0
- benchling_v3_sdk/printer/__init__.py +34 -0
- benchling_v3_sdk/printer/client.py +386 -0
- benchling_v3_sdk/printer/raw_client.py +673 -0
- benchling_v3_sdk/printer/types/__init__.py +34 -0
- benchling_v3_sdk/printer/types/list_printer_request_sort.py +7 -0
- benchling_v3_sdk/procedure/__init__.py +34 -0
- benchling_v3_sdk/procedure/client.py +416 -0
- benchling_v3_sdk/procedure/raw_client.py +721 -0
- benchling_v3_sdk/procedure/types/__init__.py +34 -0
- benchling_v3_sdk/procedure/types/list_procedure_request_sort.py +7 -0
- benchling_v3_sdk/procedure_flowchart/__init__.py +34 -0
- benchling_v3_sdk/procedure_flowchart/client.py +388 -0
- benchling_v3_sdk/procedure_flowchart/raw_client.py +673 -0
- benchling_v3_sdk/procedure_flowchart/types/__init__.py +36 -0
- benchling_v3_sdk/procedure_flowchart/types/list_procedure_flowchart_request_sort.py +7 -0
- benchling_v3_sdk/procedure_flowchart_config_version_proxy/__init__.py +34 -0
- benchling_v3_sdk/procedure_flowchart_config_version_proxy/client.py +422 -0
- benchling_v3_sdk/procedure_flowchart_config_version_proxy/raw_client.py +800 -0
- benchling_v3_sdk/procedure_flowchart_config_version_proxy/types/__init__.py +38 -0
- benchling_v3_sdk/procedure_flowchart_config_version_proxy/types/list_procedure_flowchart_config_version_proxy_request_sort.py +7 -0
- benchling_v3_sdk/procedure_method_definition_version/__init__.py +34 -0
- benchling_v3_sdk/procedure_method_definition_version/client.py +348 -0
- benchling_v3_sdk/procedure_method_definition_version/raw_client.py +625 -0
- benchling_v3_sdk/procedure_method_definition_version/types/__init__.py +36 -0
- benchling_v3_sdk/procedure_method_definition_version/types/list_procedure_method_definition_version_request_sort.py +7 -0
- benchling_v3_sdk/procedure_method_execution_instance/__init__.py +34 -0
- benchling_v3_sdk/procedure_method_execution_instance/client.py +1073 -0
- benchling_v3_sdk/procedure_method_execution_instance/raw_client.py +2302 -0
- benchling_v3_sdk/procedure_method_execution_instance/types/__init__.py +36 -0
- benchling_v3_sdk/procedure_method_execution_instance/types/list_procedure_method_execution_instance_request_sort.py +7 -0
- benchling_v3_sdk/procedure_method_execution_instance_association/__init__.py +49 -0
- benchling_v3_sdk/procedure_method_execution_instance_association/client.py +867 -0
- benchling_v3_sdk/procedure_method_execution_instance_association/raw_client.py +1748 -0
- benchling_v3_sdk/procedure_method_execution_instance_association/types/__init__.py +55 -0
- benchling_v3_sdk/procedure_method_execution_instance_association/types/batch_create_procedure_method_execution_instance_association_response.py +20 -0
- benchling_v3_sdk/procedure_method_execution_instance_association/types/batch_delete_procedure_method_execution_instance_association_response.py +22 -0
- benchling_v3_sdk/procedure_method_execution_instance_association/types/batch_delete_procedure_method_execution_instance_association_response_items_item.py +19 -0
- benchling_v3_sdk/procedure_method_execution_instance_association/types/list_procedure_method_execution_instance_association_request_sort.py +7 -0
- benchling_v3_sdk/procedure_parameter/__init__.py +34 -0
- benchling_v3_sdk/procedure_parameter/client.py +378 -0
- benchling_v3_sdk/procedure_parameter/raw_client.py +657 -0
- benchling_v3_sdk/procedure_parameter/types/__init__.py +36 -0
- benchling_v3_sdk/procedure_parameter/types/list_procedure_parameter_request_sort.py +7 -0
- benchling_v3_sdk/procedure_parameter_confirmation_value/__init__.py +34 -0
- benchling_v3_sdk/procedure_parameter_confirmation_value/client.py +402 -0
- benchling_v3_sdk/procedure_parameter_confirmation_value/raw_client.py +693 -0
- benchling_v3_sdk/procedure_parameter_confirmation_value/types/__init__.py +38 -0
- benchling_v3_sdk/procedure_parameter_confirmation_value/types/list_procedure_parameter_confirmation_value_request_sort.py +7 -0
- benchling_v3_sdk/procedure_parameter_measured_value/__init__.py +34 -0
- benchling_v3_sdk/procedure_parameter_measured_value/client.py +398 -0
- benchling_v3_sdk/procedure_parameter_measured_value/raw_client.py +689 -0
- benchling_v3_sdk/procedure_parameter_measured_value/types/__init__.py +36 -0
- benchling_v3_sdk/procedure_parameter_measured_value/types/list_procedure_parameter_measured_value_request_sort.py +7 -0
- benchling_v3_sdk/procedure_parameter_planned_value/__init__.py +34 -0
- benchling_v3_sdk/procedure_parameter_planned_value/client.py +398 -0
- benchling_v3_sdk/procedure_parameter_planned_value/raw_client.py +689 -0
- benchling_v3_sdk/procedure_parameter_planned_value/types/__init__.py +36 -0
- benchling_v3_sdk/procedure_parameter_planned_value/types/list_procedure_parameter_planned_value_request_sort.py +7 -0
- benchling_v3_sdk/procedure_parameter_version/__init__.py +34 -0
- benchling_v3_sdk/procedure_parameter_version/client.py +378 -0
- benchling_v3_sdk/procedure_parameter_version/raw_client.py +669 -0
- benchling_v3_sdk/procedure_parameter_version/types/__init__.py +36 -0
- benchling_v3_sdk/procedure_parameter_version/types/list_procedure_parameter_version_request_sort.py +5 -0
- benchling_v3_sdk/procedure_run/__init__.py +34 -0
- benchling_v3_sdk/procedure_run/client.py +584 -0
- benchling_v3_sdk/procedure_run/raw_client.py +1127 -0
- benchling_v3_sdk/procedure_run/types/__init__.py +34 -0
- benchling_v3_sdk/procedure_run/types/list_procedure_run_request_sort.py +7 -0
- benchling_v3_sdk/procedure_run_condition/__init__.py +34 -0
- benchling_v3_sdk/procedure_run_condition/client.py +459 -0
- benchling_v3_sdk/procedure_run_condition/raw_client.py +850 -0
- benchling_v3_sdk/procedure_run_condition/types/__init__.py +36 -0
- benchling_v3_sdk/procedure_run_condition/types/list_procedure_run_condition_request_sort.py +7 -0
- benchling_v3_sdk/procedure_run_condition_replicate/__init__.py +34 -0
- benchling_v3_sdk/procedure_run_condition_replicate/client.py +398 -0
- benchling_v3_sdk/procedure_run_condition_replicate/raw_client.py +685 -0
- benchling_v3_sdk/procedure_run_condition_replicate/types/__init__.py +36 -0
- benchling_v3_sdk/procedure_run_condition_replicate/types/list_procedure_run_condition_replicate_request_sort.py +7 -0
- benchling_v3_sdk/procedure_run_plan/__init__.py +55 -0
- benchling_v3_sdk/procedure_run_plan/client.py +1397 -0
- benchling_v3_sdk/procedure_run_plan/raw_client.py +2710 -0
- benchling_v3_sdk/procedure_run_plan/types/__init__.py +53 -0
- benchling_v3_sdk/procedure_run_plan/types/batch_create_procedure_run_plan_response.py +20 -0
- benchling_v3_sdk/procedure_run_plan/types/batch_update_procedure_run_plan_response.py +20 -0
- benchling_v3_sdk/procedure_run_plan/types/get_task_for_promote_procedure_run_plan_response.py +23 -0
- benchling_v3_sdk/procedure_run_plan/types/get_task_for_promote_procedure_run_plan_response_status.py +7 -0
- benchling_v3_sdk/procedure_run_plan/types/list_procedure_run_plan_request_sort.py +7 -0
- benchling_v3_sdk/procedure_run_plan/types/update_procedure_run_plan_input_data_entry_mode.py +7 -0
- benchling_v3_sdk/procedure_run_plan_condition/__init__.py +46 -0
- benchling_v3_sdk/procedure_run_plan_condition/client.py +1479 -0
- benchling_v3_sdk/procedure_run_plan_condition/raw_client.py +2112 -0
- benchling_v3_sdk/procedure_run_plan_condition/types/__init__.py +44 -0
- benchling_v3_sdk/procedure_run_plan_condition/types/batch_create_procedure_run_plan_condition_response.py +20 -0
- benchling_v3_sdk/procedure_run_plan_condition/types/batch_update_procedure_run_plan_condition_response.py +20 -0
- benchling_v3_sdk/procedure_run_plan_condition/types/list_procedure_run_plan_condition_request_sort.py +7 -0
- benchling_v3_sdk/procedure_step_definition_version/__init__.py +34 -0
- benchling_v3_sdk/procedure_step_definition_version/client.py +348 -0
- benchling_v3_sdk/procedure_step_definition_version/raw_client.py +625 -0
- benchling_v3_sdk/procedure_step_definition_version/types/__init__.py +36 -0
- benchling_v3_sdk/procedure_step_definition_version/types/list_procedure_step_definition_version_request_sort.py +7 -0
- benchling_v3_sdk/procedure_step_execution_instance/__init__.py +34 -0
- benchling_v3_sdk/procedure_step_execution_instance/client.py +398 -0
- benchling_v3_sdk/procedure_step_execution_instance/raw_client.py +689 -0
- benchling_v3_sdk/procedure_step_execution_instance/types/__init__.py +36 -0
- benchling_v3_sdk/procedure_step_execution_instance/types/list_procedure_step_execution_instance_request_sort.py +7 -0
- benchling_v3_sdk/project/__init__.py +52 -0
- benchling_v3_sdk/project/client.py +1446 -0
- benchling_v3_sdk/project/raw_client.py +2822 -0
- benchling_v3_sdk/project/types/__init__.py +50 -0
- benchling_v3_sdk/project/types/batch_create_project_response.py +20 -0
- benchling_v3_sdk/project/types/batch_update_project_response.py +20 -0
- benchling_v3_sdk/project/types/list_collaborations_project_request_sort.py +7 -0
- benchling_v3_sdk/project/types/list_project_request_sort.py +5 -0
- benchling_v3_sdk/project/types/list_review_processes_project_request_sort.py +7 -0
- benchling_v3_sdk/protein/__init__.py +172 -0
- benchling_v3_sdk/protein/client.py +2215 -0
- benchling_v3_sdk/protein/raw_client.py +4087 -0
- benchling_v3_sdk/protein/types/__init__.py +232 -0
- benchling_v3_sdk/protein/types/batch_create_protein_response.py +20 -0
- benchling_v3_sdk/protein/types/batch_update_protein_response.py +20 -0
- benchling_v3_sdk/protein/types/bulk_create_and_register_proteins_and_components_protein_request_germline_configs_item.py +36 -0
- benchling_v3_sdk/protein/types/bulk_create_and_register_proteins_and_components_protein_request_germline_configs_item_domain_key.py +22 -0
- benchling_v3_sdk/protein/types/bulk_create_and_register_proteins_and_components_protein_request_new_component_config.py +75 -0
- benchling_v3_sdk/protein/types/bulk_create_and_register_proteins_and_components_protein_request_protein_create_inputs_item.py +5 -0
- benchling_v3_sdk/protein/types/bulk_create_and_register_proteins_and_components_protein_request_protein_create_inputs_item_chains_item.py +5 -0
- benchling_v3_sdk/protein/types/bulk_create_and_register_proteins_and_components_protein_request_protein_create_inputs_item_chains_item_aa_component.py +53 -0
- benchling_v3_sdk/protein/types/bulk_create_and_register_proteins_and_components_protein_request_protein_create_inputs_item_chains_item_aa_component_existing.py +30 -0
- benchling_v3_sdk/protein/types/bulk_create_and_register_proteins_and_components_protein_request_protein_create_inputs_item_chains_item_aa_component_new.py +24 -0
- benchling_v3_sdk/protein/types/bulk_create_and_register_proteins_and_components_protein_request_protein_create_inputs_item_chains_item_chain_key.py +21 -0
- benchling_v3_sdk/protein/types/bulk_create_and_register_proteins_and_components_protein_request_protein_create_inputs_item_chains_item_dna_component.py +53 -0
- benchling_v3_sdk/protein/types/bulk_create_and_register_proteins_and_components_protein_request_protein_create_inputs_item_chains_item_dna_component_existing.py +30 -0
- benchling_v3_sdk/protein/types/bulk_create_and_register_proteins_and_components_protein_request_protein_create_inputs_item_chains_item_dna_component_new.py +24 -0
- benchling_v3_sdk/protein/types/bulk_create_and_register_proteins_and_components_protein_request_protein_create_inputs_item_domains_item.py +5 -0
- benchling_v3_sdk/protein/types/bulk_create_and_register_proteins_and_components_protein_request_protein_create_inputs_item_domains_item_aa_component.py +53 -0
- benchling_v3_sdk/protein/types/bulk_create_and_register_proteins_and_components_protein_request_protein_create_inputs_item_domains_item_aa_component_existing.py +30 -0
- benchling_v3_sdk/protein/types/bulk_create_and_register_proteins_and_components_protein_request_protein_create_inputs_item_domains_item_aa_component_new.py +24 -0
- benchling_v3_sdk/protein/types/bulk_create_and_register_proteins_and_components_protein_request_protein_create_inputs_item_domains_item_dna_component.py +53 -0
- benchling_v3_sdk/protein/types/bulk_create_and_register_proteins_and_components_protein_request_protein_create_inputs_item_domains_item_dna_component_existing.py +30 -0
- benchling_v3_sdk/protein/types/bulk_create_and_register_proteins_and_components_protein_request_protein_create_inputs_item_domains_item_dna_component_new.py +24 -0
- benchling_v3_sdk/protein/types/bulk_create_and_register_proteins_and_components_protein_request_protein_create_inputs_item_domains_item_domain_key.py +24 -0
- benchling_v3_sdk/protein/types/bulk_create_and_register_proteins_and_components_protein_request_protein_create_inputs_item_variable_pairs_item.py +7 -0
- benchling_v3_sdk/protein/types/bulk_create_and_register_proteins_and_components_protein_request_protein_create_inputs_item_variable_pairs_item_pair_key.py +44 -0
- benchling_v3_sdk/protein/types/bulk_create_and_register_proteins_and_components_protein_request_protein_create_inputs_item_variable_pairs_item_pair_key_vh_va_vg.py +24 -0
- benchling_v3_sdk/protein/types/bulk_create_and_register_proteins_and_components_protein_request_protein_create_inputs_item_variable_pairs_item_pair_key_vl_vb_vd.py +24 -0
- benchling_v3_sdk/protein/types/bulk_create_and_register_proteins_and_components_protein_request_translation_parameters.py +39 -0
- benchling_v3_sdk/protein/types/bulk_create_and_register_proteins_and_components_protein_request_translation_parameters_genetic_code.py +28 -0
- benchling_v3_sdk/protein/types/bulk_create_and_register_proteins_and_components_protein_response.py +30 -0
- benchling_v3_sdk/protein/types/get_results_for_bulk_create_and_register_proteins_and_components_protein_response.py +74 -0
- benchling_v3_sdk/protein/types/get_task_for_bulk_create_and_register_proteins_and_components_protein_response.py +44 -0
- benchling_v3_sdk/protein/types/get_task_for_bulk_create_and_register_proteins_and_components_protein_response_result.py +24 -0
- benchling_v3_sdk/protein/types/get_task_for_bulk_create_and_register_proteins_and_components_protein_response_status.py +7 -0
- benchling_v3_sdk/protein/types/list_full_history_protein_request_sort.py +5 -0
- benchling_v3_sdk/protein/types/list_history_protein_request_sort.py +5 -0
- benchling_v3_sdk/protein/types/list_protein_request_sort.py +7 -0
- benchling_v3_sdk/protein/types/update_protein_input_naming_strategy.py +16 -0
- benchling_v3_sdk/protein_format/__init__.py +38 -0
- benchling_v3_sdk/protein_format/client.py +935 -0
- benchling_v3_sdk/protein_format/raw_client.py +1986 -0
- benchling_v3_sdk/protein_format/types/__init__.py +40 -0
- benchling_v3_sdk/protein_format/types/batch_create_protein_format_response.py +20 -0
- benchling_v3_sdk/protein_format/types/batch_update_protein_format_response.py +20 -0
- benchling_v3_sdk/protein_format/types/list_protein_format_request_sort.py +7 -0
- benchling_v3_sdk/protein_schema/__init__.py +61 -0
- benchling_v3_sdk/protein_schema/client.py +1769 -0
- benchling_v3_sdk/protein_schema/raw_client.py +3616 -0
- benchling_v3_sdk/protein_schema/types/__init__.py +69 -0
- benchling_v3_sdk/protein_schema/types/batch_create_protein_schema_response.py +20 -0
- benchling_v3_sdk/protein_schema/types/batch_update_protein_schema_response.py +20 -0
- benchling_v3_sdk/protein_schema/types/get_task_for_apply_fieldset_protein_schema_response.py +25 -0
- benchling_v3_sdk/protein_schema/types/get_task_for_apply_fieldset_protein_schema_response_status.py +7 -0
- benchling_v3_sdk/protein_schema/types/get_task_for_set_field_definitions_protein_schema_response.py +25 -0
- benchling_v3_sdk/protein_schema/types/get_task_for_set_field_definitions_protein_schema_response_status.py +7 -0
- benchling_v3_sdk/protein_schema/types/protein_schema_set_field_definitions_input_field_definitions_item.py +123 -0
- benchling_v3_sdk/protein_schema/types/update_protein_schema_input_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/protein_version/__init__.py +34 -0
- benchling_v3_sdk/protein_version/client.py +348 -0
- benchling_v3_sdk/protein_version/raw_client.py +617 -0
- benchling_v3_sdk/protein_version/types/__init__.py +34 -0
- benchling_v3_sdk/protein_version/types/list_protein_version_request_sort.py +5 -0
- benchling_v3_sdk/py.typed +0 -0
- benchling_v3_sdk/reaction/__init__.py +34 -0
- benchling_v3_sdk/reaction/client.py +771 -0
- benchling_v3_sdk/reaction/raw_client.py +1581 -0
- benchling_v3_sdk/reaction/types/__init__.py +38 -0
- benchling_v3_sdk/reaction/types/batch_update_reaction_response.py +20 -0
- benchling_v3_sdk/reaction/types/list_reaction_request_sort.py +7 -0
- benchling_v3_sdk/registry/__init__.py +34 -0
- benchling_v3_sdk/registry/client.py +346 -0
- benchling_v3_sdk/registry/raw_client.py +625 -0
- benchling_v3_sdk/registry/types/__init__.py +34 -0
- benchling_v3_sdk/registry/types/list_registry_request_sort.py +5 -0
- benchling_v3_sdk/request_v2definition/__init__.py +46 -0
- benchling_v3_sdk/request_v2definition/client.py +1030 -0
- benchling_v3_sdk/request_v2definition/raw_client.py +2082 -0
- benchling_v3_sdk/request_v2definition/types/__init__.py +44 -0
- benchling_v3_sdk/request_v2definition/types/batch_create_request_v2definition_response.py +20 -0
- benchling_v3_sdk/request_v2definition/types/batch_update_request_v2definition_response.py +20 -0
- benchling_v3_sdk/request_v2definition/types/list_request_v2definition_request_sort.py +7 -0
- benchling_v3_sdk/request_v2submission/__init__.py +34 -0
- benchling_v3_sdk/request_v2submission/client.py +485 -0
- benchling_v3_sdk/request_v2submission/raw_client.py +902 -0
- benchling_v3_sdk/request_v2submission/types/__init__.py +36 -0
- benchling_v3_sdk/request_v2submission/types/list_request_v2submission_request_sort.py +7 -0
- benchling_v3_sdk/result/__init__.py +38 -0
- benchling_v3_sdk/result/client.py +1003 -0
- benchling_v3_sdk/result/raw_client.py +2083 -0
- benchling_v3_sdk/result/types/__init__.py +40 -0
- benchling_v3_sdk/result/types/batch_create_result_response.py +20 -0
- benchling_v3_sdk/result/types/batch_update_result_response.py +20 -0
- benchling_v3_sdk/result/types/list_result_request_sort.py +7 -0
- benchling_v3_sdk/result_schema/__init__.py +34 -0
- benchling_v3_sdk/result_schema/client.py +485 -0
- benchling_v3_sdk/result_schema/raw_client.py +902 -0
- benchling_v3_sdk/result_schema/types/__init__.py +34 -0
- benchling_v3_sdk/result_schema/types/list_result_schema_request_sort.py +7 -0
- benchling_v3_sdk/review/__init__.py +37 -0
- benchling_v3_sdk/review/client.py +536 -0
- benchling_v3_sdk/review/raw_client.py +963 -0
- benchling_v3_sdk/review/types/__init__.py +38 -0
- benchling_v3_sdk/review/types/list_review_history_review_request_sort.py +5 -0
- benchling_v3_sdk/review/types/list_review_request_sort.py +5 -0
- benchling_v3_sdk/review_change/__init__.py +34 -0
- benchling_v3_sdk/review_change/client.py +358 -0
- benchling_v3_sdk/review_change/raw_client.py +637 -0
- benchling_v3_sdk/review_change/types/__init__.py +34 -0
- benchling_v3_sdk/review_change/types/list_review_change_request_sort.py +5 -0
- benchling_v3_sdk/review_process/__init__.py +37 -0
- benchling_v3_sdk/review_process/client.py +618 -0
- benchling_v3_sdk/review_process/raw_client.py +1071 -0
- benchling_v3_sdk/review_process/types/__init__.py +38 -0
- benchling_v3_sdk/review_process/types/list_projects_review_process_request_sort.py +5 -0
- benchling_v3_sdk/review_process/types/list_review_process_request_sort.py +7 -0
- benchling_v3_sdk/review_process_stage/__init__.py +4 -0
- benchling_v3_sdk/review_process_stage/client.py +259 -0
- benchling_v3_sdk/review_process_stage/raw_client.py +520 -0
- benchling_v3_sdk/rna_oligo/__init__.py +49 -0
- benchling_v3_sdk/rna_oligo/client.py +1819 -0
- benchling_v3_sdk/rna_oligo/raw_client.py +3217 -0
- benchling_v3_sdk/rna_oligo/types/__init__.py +47 -0
- benchling_v3_sdk/rna_oligo/types/batch_create_rna_oligo_response.py +20 -0
- benchling_v3_sdk/rna_oligo/types/batch_update_rna_oligo_response.py +20 -0
- benchling_v3_sdk/rna_oligo/types/list_rna_oligo_request_sort.py +7 -0
- benchling_v3_sdk/rna_oligo/types/update_rna_oligo_input_naming_strategy.py +16 -0
- benchling_v3_sdk/rna_oligo_schema/__init__.py +67 -0
- benchling_v3_sdk/rna_oligo_schema/client.py +1873 -0
- benchling_v3_sdk/rna_oligo_schema/raw_client.py +3826 -0
- benchling_v3_sdk/rna_oligo_schema/types/__init__.py +75 -0
- benchling_v3_sdk/rna_oligo_schema/types/batch_create_rna_oligo_schema_response.py +20 -0
- benchling_v3_sdk/rna_oligo_schema/types/batch_update_rna_oligo_schema_response.py +20 -0
- benchling_v3_sdk/rna_oligo_schema/types/get_task_for_apply_fieldset_rna_oligo_schema_response.py +25 -0
- benchling_v3_sdk/rna_oligo_schema/types/get_task_for_apply_fieldset_rna_oligo_schema_response_status.py +7 -0
- benchling_v3_sdk/rna_oligo_schema/types/get_task_for_set_field_definitions_rna_oligo_schema_response.py +25 -0
- benchling_v3_sdk/rna_oligo_schema/types/get_task_for_set_field_definitions_rna_oligo_schema_response_status.py +7 -0
- benchling_v3_sdk/rna_oligo_schema/types/list_rna_oligo_schema_request_sort.py +7 -0
- benchling_v3_sdk/rna_oligo_schema/types/rna_oligo_schema_set_field_definitions_input_field_definitions_item.py +123 -0
- benchling_v3_sdk/rna_oligo_schema/types/update_rna_oligo_schema_input_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/rna_oligo_schema/types/update_rna_oligo_schema_input_icon_id.py +7 -0
- benchling_v3_sdk/rna_sequence/__init__.py +49 -0
- benchling_v3_sdk/rna_sequence/client.py +2698 -0
- benchling_v3_sdk/rna_sequence/raw_client.py +4272 -0
- benchling_v3_sdk/rna_sequence/types/__init__.py +47 -0
- benchling_v3_sdk/rna_sequence/types/batch_create_rna_sequence_response.py +20 -0
- benchling_v3_sdk/rna_sequence/types/batch_update_rna_sequence_response.py +20 -0
- benchling_v3_sdk/rna_sequence/types/list_rna_sequence_request_sort.py +7 -0
- benchling_v3_sdk/rna_sequence/types/update_rna_sequence_input_naming_strategy.py +16 -0
- benchling_v3_sdk/rna_sequence_schema/__init__.py +67 -0
- benchling_v3_sdk/rna_sequence_schema/client.py +1882 -0
- benchling_v3_sdk/rna_sequence_schema/raw_client.py +3830 -0
- benchling_v3_sdk/rna_sequence_schema/types/__init__.py +77 -0
- benchling_v3_sdk/rna_sequence_schema/types/batch_create_rna_sequence_schema_response.py +20 -0
- benchling_v3_sdk/rna_sequence_schema/types/batch_update_rna_sequence_schema_response.py +20 -0
- benchling_v3_sdk/rna_sequence_schema/types/get_task_for_apply_fieldset_rna_sequence_schema_response.py +25 -0
- benchling_v3_sdk/rna_sequence_schema/types/get_task_for_apply_fieldset_rna_sequence_schema_response_status.py +7 -0
- benchling_v3_sdk/rna_sequence_schema/types/get_task_for_set_field_definitions_rna_sequence_schema_response.py +25 -0
- benchling_v3_sdk/rna_sequence_schema/types/get_task_for_set_field_definitions_rna_sequence_schema_response_status.py +7 -0
- benchling_v3_sdk/rna_sequence_schema/types/list_rna_sequence_schema_request_sort.py +7 -0
- benchling_v3_sdk/rna_sequence_schema/types/rna_sequence_schema_set_field_definitions_input_field_definitions_item.py +131 -0
- benchling_v3_sdk/rna_sequence_schema/types/update_rna_sequence_schema_input_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/rna_sequence_schema/types/update_rna_sequence_schema_input_icon_id.py +7 -0
- benchling_v3_sdk/run/__init__.py +34 -0
- benchling_v3_sdk/run/client.py +414 -0
- benchling_v3_sdk/run/raw_client.py +717 -0
- benchling_v3_sdk/run/types/__init__.py +34 -0
- benchling_v3_sdk/run/types/list_run_request_sort.py +7 -0
- benchling_v3_sdk/run_schema/__init__.py +34 -0
- benchling_v3_sdk/run_schema/client.py +641 -0
- benchling_v3_sdk/run_schema/raw_client.py +1296 -0
- benchling_v3_sdk/run_schema/types/__init__.py +34 -0
- benchling_v3_sdk/run_schema/types/list_run_schema_request_sort.py +7 -0
- benchling_v3_sdk/salt/__init__.py +38 -0
- benchling_v3_sdk/salt/client.py +976 -0
- benchling_v3_sdk/salt/raw_client.py +2040 -0
- benchling_v3_sdk/salt/types/__init__.py +40 -0
- benchling_v3_sdk/salt/types/batch_create_salt_response.py +20 -0
- benchling_v3_sdk/salt/types/batch_update_salt_response.py +20 -0
- benchling_v3_sdk/salt/types/list_salt_request_sort.py +7 -0
- benchling_v3_sdk/scratch_file/__init__.py +49 -0
- benchling_v3_sdk/scratch_file/client.py +998 -0
- benchling_v3_sdk/scratch_file/raw_client.py +2197 -0
- benchling_v3_sdk/scratch_file/types/__init__.py +47 -0
- benchling_v3_sdk/scratch_file/types/batch_create_scratch_file_response.py +20 -0
- benchling_v3_sdk/scratch_file/types/batch_update_scratch_file_response.py +20 -0
- benchling_v3_sdk/scratch_file/types/list_scratch_file_request_sort.py +7 -0
- benchling_v3_sdk/scratch_file/types/update_scratch_file_input_upload_status.py +7 -0
- benchling_v3_sdk/search/__init__.py +190 -0
- benchling_v3_sdk/search/client.py +230 -0
- benchling_v3_sdk/search/raw_client.py +330 -0
- benchling_v3_sdk/search/types/__init__.py +236 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters.py +234 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_amino_acids.py +35 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_archived.py +35 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_authors.py +35 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_barcode.py +35 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_bases.py +35 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_created_at.py +41 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_creator.py +34 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_entity_registry_ids.py +34 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_fieldset.py +35 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_folder.py +26 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_id.py +32 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_mentioned_in.py +35 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_mentions.py +32 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_modified_at.py +41 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_name.py +47 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_parent.py +26 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_parent_storage.py +26 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_project.py +26 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_registry.py +26 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_schema.py +40 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_schema_fields_value.py +35 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_schema_fields_value_all_of.py +68 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_schema_fields_value_excludes.py +111 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_schema_fields_value_excludes_any_of.py +5 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_schema_fields_value_excludes_excludes.py +5 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_schema_fields_value_excludes_includes.py +5 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_schema_fields_value_excludes_none_of.py +5 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_schema_fields_value_excludes_starts_with.py +5 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_schema_fields_value_five.py +46 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_schema_fields_value_four.py +85 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_schema_fields_value_one.py +84 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_schema_fields_value_three.py +85 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_schema_fields_value_two.py +105 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_schema_fields_value_two_any_of_item.py +5 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_schema_fields_value_two_eq.py +5 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_schema_fields_value_two_gt.py +5 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_schema_fields_value_two_gte.py +5 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_schema_fields_value_two_lt.py +5 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_schema_fields_value_two_lte.py +5 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_schema_fields_value_two_none_of_item.py +5 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_sequence_ids.py +35 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_filters_system_category.py +35 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_object_types_item.py +59 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_request_sort.py +17 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_response.py +39 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_response_hits_item.py +51 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_response_hits_item_source.py +26 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_response_metadata.py +57 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_response_metadata_total_hits.py +35 -0
- benchling_v3_sdk/search/types/search_sync_custom_search_response_metadata_total_hits_relation.py +5 -0
- benchling_v3_sdk/service_principal/__init__.py +34 -0
- benchling_v3_sdk/service_principal/client.py +348 -0
- benchling_v3_sdk/service_principal/raw_client.py +625 -0
- benchling_v3_sdk/service_principal/types/__init__.py +34 -0
- benchling_v3_sdk/service_principal/types/list_service_principal_request_sort.py +5 -0
- benchling_v3_sdk/solvent/__init__.py +38 -0
- benchling_v3_sdk/solvent/client.py +978 -0
- benchling_v3_sdk/solvent/raw_client.py +2040 -0
- benchling_v3_sdk/solvent/types/__init__.py +40 -0
- benchling_v3_sdk/solvent/types/batch_create_solvent_response.py +20 -0
- benchling_v3_sdk/solvent/types/batch_update_solvent_response.py +20 -0
- benchling_v3_sdk/solvent/types/list_solvent_request_sort.py +7 -0
- benchling_v3_sdk/sql_dashboard/__init__.py +34 -0
- benchling_v3_sdk/sql_dashboard/client.py +475 -0
- benchling_v3_sdk/sql_dashboard/raw_client.py +886 -0
- benchling_v3_sdk/sql_dashboard/types/__init__.py +34 -0
- benchling_v3_sdk/sql_dashboard/types/list_sql_dashboard_request_sort.py +7 -0
- benchling_v3_sdk/sql_dashboard_block/__init__.py +37 -0
- benchling_v3_sdk/sql_dashboard_block/client.py +680 -0
- benchling_v3_sdk/sql_dashboard_block/raw_client.py +1350 -0
- benchling_v3_sdk/sql_dashboard_block/types/__init__.py +38 -0
- benchling_v3_sdk/sql_dashboard_block/types/batch_update_sql_dashboard_block_response.py +20 -0
- benchling_v3_sdk/sql_dashboard_block/types/list_sql_dashboard_block_request_sort.py +7 -0
- benchling_v3_sdk/stage_entry/__init__.py +34 -0
- benchling_v3_sdk/stage_entry/client.py +614 -0
- benchling_v3_sdk/stage_entry/raw_client.py +1175 -0
- benchling_v3_sdk/stage_entry/types/__init__.py +34 -0
- benchling_v3_sdk/stage_entry/types/list_stage_entry_request_sort.py +7 -0
- benchling_v3_sdk/study/__init__.py +39 -0
- benchling_v3_sdk/study/client.py +1487 -0
- benchling_v3_sdk/study/raw_client.py +2399 -0
- benchling_v3_sdk/study/types/__init__.py +42 -0
- benchling_v3_sdk/study/types/batch_create_study_response.py +20 -0
- benchling_v3_sdk/study/types/batch_update_study_response.py +20 -0
- benchling_v3_sdk/study/types/list_study_request_sort.py +7 -0
- benchling_v3_sdk/study/types/update_study_input_phase.py +5 -0
- benchling_v3_sdk/study_item_association/__init__.py +49 -0
- benchling_v3_sdk/study_item_association/client.py +792 -0
- benchling_v3_sdk/study_item_association/raw_client.py +1690 -0
- benchling_v3_sdk/study_item_association/types/__init__.py +49 -0
- benchling_v3_sdk/study_item_association/types/batch_create_study_item_association_response.py +20 -0
- benchling_v3_sdk/study_item_association/types/batch_delete_study_item_association_response.py +20 -0
- benchling_v3_sdk/study_item_association/types/batch_delete_study_item_association_response_items_item.py +19 -0
- benchling_v3_sdk/study_item_association/types/list_study_item_association_request_sort.py +5 -0
- benchling_v3_sdk/study_schema/__init__.py +49 -0
- benchling_v3_sdk/study_schema/client.py +1453 -0
- benchling_v3_sdk/study_schema/raw_client.py +2622 -0
- benchling_v3_sdk/study_schema/types/__init__.py +47 -0
- benchling_v3_sdk/study_schema/types/batch_create_study_schema_response.py +20 -0
- benchling_v3_sdk/study_schema/types/batch_update_study_schema_response.py +20 -0
- benchling_v3_sdk/study_schema/types/list_study_schema_request_sort.py +7 -0
- benchling_v3_sdk/study_schema/types/update_study_schema_input_id_generation_mode.py +7 -0
- benchling_v3_sdk/task_link.py +26 -0
- benchling_v3_sdk/team/__init__.py +34 -0
- benchling_v3_sdk/team/client.py +461 -0
- benchling_v3_sdk/team/raw_client.py +870 -0
- benchling_v3_sdk/team/types/__init__.py +34 -0
- benchling_v3_sdk/team/types/list_team_request_sort.py +7 -0
- benchling_v3_sdk/template_collection/__init__.py +37 -0
- benchling_v3_sdk/template_collection/client.py +578 -0
- benchling_v3_sdk/template_collection/raw_client.py +1015 -0
- benchling_v3_sdk/template_collection/types/__init__.py +38 -0
- benchling_v3_sdk/template_collection/types/list_items_template_collection_request_sort.py +5 -0
- benchling_v3_sdk/template_collection/types/list_template_collection_request_sort.py +7 -0
- benchling_v3_sdk/test_definition/__init__.py +42 -0
- benchling_v3_sdk/test_definition/client.py +1131 -0
- benchling_v3_sdk/test_definition/raw_client.py +2172 -0
- benchling_v3_sdk/test_definition/types/__init__.py +40 -0
- benchling_v3_sdk/test_definition/types/batch_create_test_definition_response.py +20 -0
- benchling_v3_sdk/test_definition/types/batch_update_test_definition_response.py +20 -0
- benchling_v3_sdk/test_definition/types/list_test_definition_request_sort.py +7 -0
- benchling_v3_sdk/test_order/__init__.py +34 -0
- benchling_v3_sdk/test_order/client.py +386 -0
- benchling_v3_sdk/test_order/raw_client.py +673 -0
- benchling_v3_sdk/test_order/types/__init__.py +34 -0
- benchling_v3_sdk/test_order/types/list_test_order_request_sort.py +7 -0
- benchling_v3_sdk/types/__init__.py +7131 -0
- benchling_v3_sdk/types/aa_annotation.py +75 -0
- benchling_v3_sdk/types/aa_annotation_input.py +47 -0
- benchling_v3_sdk/types/aa_annotation_input_update.py +61 -0
- benchling_v3_sdk/types/aa_annotation_paginated_list.py +25 -0
- benchling_v3_sdk/types/aa_chain_configuration_input.py +26 -0
- benchling_v3_sdk/types/aa_chain_configuration_input_system_category_id.py +5 -0
- benchling_v3_sdk/types/aa_domain_configuration_input.py +26 -0
- benchling_v3_sdk/types/aa_domain_configuration_input_system_category_id.py +5 -0
- benchling_v3_sdk/types/aa_monomer.py +157 -0
- benchling_v3_sdk/types/aa_monomer_attachment_points_item.py +5 -0
- benchling_v3_sdk/types/aa_monomer_chemical_structure_input.py +27 -0
- benchling_v3_sdk/types/aa_monomer_chemical_structure_input_structure_format.py +5 -0
- benchling_v3_sdk/types/aa_monomer_natural_analog.py +35 -0
- benchling_v3_sdk/types/aa_monomer_paginated_list.py +25 -0
- benchling_v3_sdk/types/aa_pair_configuration_input.py +26 -0
- benchling_v3_sdk/types/aa_pair_configuration_input_system_category_id.py +5 -0
- benchling_v3_sdk/types/aa_part_link_field_definition.py +68 -0
- benchling_v3_sdk/types/aa_part_link_field_definition_derivation_type.py +5 -0
- benchling_v3_sdk/types/aa_sequence.py +148 -0
- benchling_v3_sdk/types/aa_sequence_link_field_definition.py +74 -0
- benchling_v3_sdk/types/aa_sequence_link_field_definition_derivation_type.py +5 -0
- benchling_v3_sdk/types/aa_sequence_paginated_list.py +25 -0
- benchling_v3_sdk/types/aa_sequence_ref.py +24 -0
- benchling_v3_sdk/types/aa_sequence_schema.py +141 -0
- benchling_v3_sdk/types/aa_sequence_schema_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/aa_sequence_schema_containable_type.py +5 -0
- benchling_v3_sdk/types/aa_sequence_schema_icon_id.py +5 -0
- benchling_v3_sdk/types/aa_sequence_schema_paginated_list.py +25 -0
- benchling_v3_sdk/types/aa_sequence_schema_ref.py +24 -0
- benchling_v3_sdk/types/aa_sub_element_configuration_input.py +26 -0
- benchling_v3_sdk/types/aa_sub_element_configuration_input_system_category_id.py +5 -0
- benchling_v3_sdk/types/add_column_transform.py +43 -0
- benchling_v3_sdk/types/add_column_transform_type.py +23 -0
- benchling_v3_sdk/types/add_column_transformation_properties.py +31 -0
- benchling_v3_sdk/types/aligned_nucleotide_sequence.py +111 -0
- benchling_v3_sdk/types/aligned_nucleotide_sequence_paginated_list.py +25 -0
- benchling_v3_sdk/types/alignment_file_input.py +41 -0
- benchling_v3_sdk/types/analysis.py +48 -0
- benchling_v3_sdk/types/analysis_paginated_list.py +25 -0
- benchling_v3_sdk/types/analysis_ref.py +24 -0
- benchling_v3_sdk/types/analysis_status_code.py +7 -0
- benchling_v3_sdk/types/antibody_link_field_definition.py +68 -0
- benchling_v3_sdk/types/antibody_link_field_definition_derivation_type.py +5 -0
- benchling_v3_sdk/types/antigen_configuration_input.py +26 -0
- benchling_v3_sdk/types/antigen_configuration_input_system_category_id.py +5 -0
- benchling_v3_sdk/types/any_entity_link_field_definition.py +55 -0
- benchling_v3_sdk/types/any_entity_link_field_definition_derivation_type.py +5 -0
- benchling_v3_sdk/types/any_type.py +5 -0
- benchling_v3_sdk/types/app_canvas.py +56 -0
- benchling_v3_sdk/types/app_canvas_blocks_item.py +33 -0
- benchling_v3_sdk/types/app_canvas_ui_block_input.py +60 -0
- benchling_v3_sdk/types/app_canvas_ui_block_input_item_type.py +19 -0
- benchling_v3_sdk/types/app_canvas_ui_block_input_type.py +22 -0
- benchling_v3_sdk/types/app_config_dropdown_option.py +32 -0
- benchling_v3_sdk/types/app_config_field_definition.py +62 -0
- benchling_v3_sdk/types/app_config_field_definition_type.py +34 -0
- benchling_v3_sdk/types/app_config_option.py +43 -0
- benchling_v3_sdk/types/app_config_option_config_spec.py +35 -0
- benchling_v3_sdk/types/app_config_value.py +63 -0
- benchling_v3_sdk/types/app_config_value_paginated_list.py +25 -0
- benchling_v3_sdk/types/app_config_value_unpaginated_list.py +20 -0
- benchling_v3_sdk/types/app_config_value_value_data.py +29 -0
- benchling_v3_sdk/types/app_config_workflow_task_schema_output.py +33 -0
- benchling_v3_sdk/types/app_homepage_feature_spec.py +32 -0
- benchling_v3_sdk/types/app_installation.py +52 -0
- benchling_v3_sdk/types/app_installation_paginated_list.py +25 -0
- benchling_v3_sdk/types/app_message_subscription.py +36 -0
- benchling_v3_sdk/types/app_message_subscription_delivery_method.py +5 -0
- benchling_v3_sdk/types/app_message_subscription_type.py +54 -0
- benchling_v3_sdk/types/app_session.py +69 -0
- benchling_v3_sdk/types/app_session_message.py +40 -0
- benchling_v3_sdk/types/app_session_message_input.py +24 -0
- benchling_v3_sdk/types/app_session_message_input_style.py +5 -0
- benchling_v3_sdk/types/app_session_message_style.py +5 -0
- benchling_v3_sdk/types/app_session_paginated_list.py +25 -0
- benchling_v3_sdk/types/app_session_status.py +7 -0
- benchling_v3_sdk/types/arithmetic_transform.py +43 -0
- benchling_v3_sdk/types/arithmetic_transform_column_variable.py +38 -0
- benchling_v3_sdk/types/arithmetic_transform_column_variable_type.py +5 -0
- benchling_v3_sdk/types/arithmetic_transform_constant_variable.py +37 -0
- benchling_v3_sdk/types/arithmetic_transform_constant_variable_type.py +5 -0
- benchling_v3_sdk/types/arithmetic_transform_type.py +23 -0
- benchling_v3_sdk/types/arithmetic_transformation_properties.py +65 -0
- benchling_v3_sdk/types/arithmetic_transformation_properties_first_variable.py +10 -0
- benchling_v3_sdk/types/arithmetic_transformation_properties_second_variable.py +10 -0
- benchling_v3_sdk/types/array_app_config_option.py +45 -0
- benchling_v3_sdk/types/array_app_config_option_config_spec.py +33 -0
- benchling_v3_sdk/types/array_app_config_spec.py +67 -0
- benchling_v3_sdk/types/array_cell_evaluation_value.py +38 -0
- benchling_v3_sdk/types/array_cell_evaluation_value_value_item.py +28 -0
- benchling_v3_sdk/types/array_element_app_config_value.py +28 -0
- benchling_v3_sdk/types/array_value.py +29 -0
- benchling_v3_sdk/types/array_value_value_item.py +27 -0
- benchling_v3_sdk/types/assay_request_link_field_definition.py +55 -0
- benchling_v3_sdk/types/assay_request_link_field_definition_derivation_type.py +7 -0
- benchling_v3_sdk/types/assay_result_link_field_definition.py +59 -0
- benchling_v3_sdk/types/assay_result_link_field_definition_derivation_type.py +7 -0
- benchling_v3_sdk/types/assay_run_feature_spec.py +32 -0
- benchling_v3_sdk/types/assay_run_feature_value.py +44 -0
- benchling_v3_sdk/types/assay_run_link_field_definition.py +59 -0
- benchling_v3_sdk/types/assay_run_link_field_definition_derivation_type.py +5 -0
- benchling_v3_sdk/types/assembly.py +71 -0
- benchling_v3_sdk/types/assembly_paginated_list.py +25 -0
- benchling_v3_sdk/types/async_task_link.py +26 -0
- benchling_v3_sdk/types/attachment.py +69 -0
- benchling_v3_sdk/types/attachment_content_input.py +52 -0
- benchling_v3_sdk/types/attachment_content_input_content_type.py +5 -0
- benchling_v3_sdk/types/attachment_document_content.py +82 -0
- benchling_v3_sdk/types/attachment_placeholder_content_input.py +42 -0
- benchling_v3_sdk/types/attachment_placeholder_content_input_content_type.py +5 -0
- benchling_v3_sdk/types/attachment_placeholder_document_content.py +40 -0
- benchling_v3_sdk/types/attachment_upload_status.py +7 -0
- benchling_v3_sdk/types/audit_log.py +120 -0
- benchling_v3_sdk/types/audit_log_export_output.py +27 -0
- benchling_v3_sdk/types/audit_log_paginated_list.py +25 -0
- benchling_v3_sdk/types/automation_input_file_config.py +121 -0
- benchling_v3_sdk/types/automation_input_file_config_unpaginated_list.py +20 -0
- benchling_v3_sdk/types/automation_input_file_destination_info.py +32 -0
- benchling_v3_sdk/types/automation_input_file_name_part.py +45 -0
- benchling_v3_sdk/types/automation_input_file_name_part_type.py +18 -0
- benchling_v3_sdk/types/automation_input_file_row_config.py +50 -0
- benchling_v3_sdk/types/automation_input_file_row_config_column.py +32 -0
- benchling_v3_sdk/types/automation_output_file_config.py +210 -0
- benchling_v3_sdk/types/automation_output_file_config_automation_output_file_table_type.py +5 -0
- benchling_v3_sdk/types/automation_output_file_config_unpaginated_list.py +20 -0
- benchling_v3_sdk/types/automation_output_file_entity_schema_info.py +89 -0
- benchling_v3_sdk/types/automation_output_file_entity_schema_info_action_type.py +7 -0
- benchling_v3_sdk/types/automation_output_file_entity_schema_info_naming_strategy.py +16 -0
- benchling_v3_sdk/types/automation_output_file_inventory_schema_info.py +58 -0
- benchling_v3_sdk/types/automation_output_file_named_column_type.py +42 -0
- benchling_v3_sdk/types/automation_output_file_result_schema_info.py +46 -0
- benchling_v3_sdk/types/automation_output_file_transformation_field_info.py +77 -0
- benchling_v3_sdk/types/automation_output_file_transformation_field_info_type.py +7 -0
- benchling_v3_sdk/types/automation_template.py +69 -0
- benchling_v3_sdk/types/automation_template_data_frame_variable.py +67 -0
- benchling_v3_sdk/types/automation_template_data_frame_variable_paginated_list.py +25 -0
- benchling_v3_sdk/types/automation_template_data_frame_variable_unpaginated_list.py +20 -0
- benchling_v3_sdk/types/automation_template_paginated_list.py +25 -0
- benchling_v3_sdk/types/automation_template_ref.py +24 -0
- benchling_v3_sdk/types/automation_template_variable.py +59 -0
- benchling_v3_sdk/types/automation_template_variable_paginated_list.py +25 -0
- benchling_v3_sdk/types/automation_template_variable_unpaginated_list.py +20 -0
- benchling_v3_sdk/types/automation_transform_config.py +35 -0
- benchling_v3_sdk/types/barcode_input.py +28 -0
- benchling_v3_sdk/types/barcode_input_barcode_mode.py +5 -0
- benchling_v3_sdk/types/base_create_message_block_input.py +42 -0
- benchling_v3_sdk/types/base_create_message_block_input_type.py +5 -0
- benchling_v3_sdk/types/base_field_definition.py +67 -0
- benchling_v3_sdk/types/base_field_definition_derivation_type.py +5 -0
- benchling_v3_sdk/types/base_field_definition_type.py +39 -0
- benchling_v3_sdk/types/base_system_category_configuration.py +31 -0
- benchling_v3_sdk/types/benchling_item_content_input.py +40 -0
- benchling_v3_sdk/types/benchling_item_content_input_content_type.py +5 -0
- benchling_v3_sdk/types/benchling_item_document_content.py +44 -0
- benchling_v3_sdk/types/blob_link_cell_evaluation_value.py +36 -0
- benchling_v3_sdk/types/blob_link_field_definition.py +55 -0
- benchling_v3_sdk/types/blob_link_field_definition_derivation_type.py +5 -0
- benchling_v3_sdk/types/boolean_app_config_spec.py +30 -0
- benchling_v3_sdk/types/boolean_app_config_value.py +28 -0
- benchling_v3_sdk/types/boolean_cell_evaluation_value.py +31 -0
- benchling_v3_sdk/types/boolean_field_definition.py +52 -0
- benchling_v3_sdk/types/boolean_field_definition_derivation_type.py +5 -0
- benchling_v3_sdk/types/boolean_value.py +31 -0
- benchling_v3_sdk/types/box.py +93 -0
- benchling_v3_sdk/types/box_paginated_list.py +25 -0
- benchling_v3_sdk/types/box_schema.py +77 -0
- benchling_v3_sdk/types/box_schema_paginated_list.py +25 -0
- benchling_v3_sdk/types/box_schema_ref.py +24 -0
- benchling_v3_sdk/types/bulk_import.py +31 -0
- benchling_v3_sdk/types/bulk_molecule_with_parent_input.py +80 -0
- benchling_v3_sdk/types/bulk_molecule_with_parent_input_naming_strategy.py +16 -0
- benchling_v3_sdk/types/button_ui_block.py +30 -0
- benchling_v3_sdk/types/button_ui_block_input.py +23 -0
- benchling_v3_sdk/types/button_ui_block_input_type.py +5 -0
- benchling_v3_sdk/types/canvas_feature_spec.py +34 -0
- benchling_v3_sdk/types/canvas_feature_spec_locations_item.py +5 -0
- benchling_v3_sdk/types/caption.py +34 -0
- benchling_v3_sdk/types/caption_input.py +40 -0
- benchling_v3_sdk/types/cell_error.py +49 -0
- benchling_v3_sdk/types/cell_error_error_type.py +5 -0
- benchling_v3_sdk/types/chain_linked_schema.py +27 -0
- benchling_v3_sdk/types/chain_linked_schema_input.py +36 -0
- benchling_v3_sdk/types/chart.py +135 -0
- benchling_v3_sdk/types/chart_library.py +5 -0
- benchling_v3_sdk/types/chart_paginated_list.py +25 -0
- benchling_v3_sdk/types/chat_source_input.py +30 -0
- benchling_v3_sdk/types/chat_source_input_type.py +5 -0
- benchling_v3_sdk/types/checkout_record.py +44 -0
- benchling_v3_sdk/types/checkout_record_input.py +26 -0
- benchling_v3_sdk/types/checkout_record_input_status.py +5 -0
- benchling_v3_sdk/types/checkout_record_status.py +5 -0
- benchling_v3_sdk/types/chem_simple_polymer.py +42 -0
- benchling_v3_sdk/types/chemical_structure_input.py +30 -0
- benchling_v3_sdk/types/chemical_structure_input_structure_format.py +5 -0
- benchling_v3_sdk/types/chip_ui_block.py +29 -0
- benchling_v3_sdk/types/chip_ui_block_input.py +22 -0
- benchling_v3_sdk/types/chip_ui_block_input_type.py +5 -0
- benchling_v3_sdk/types/clustal_o_options_input.py +79 -0
- benchling_v3_sdk/types/code_block_content_input.py +28 -0
- benchling_v3_sdk/types/code_block_content_input_content_type.py +5 -0
- benchling_v3_sdk/types/code_block_document_content.py +31 -0
- benchling_v3_sdk/types/collaboratable_ref.py +24 -0
- benchling_v3_sdk/types/collaboration.py +60 -0
- benchling_v3_sdk/types/collaboration_collaborator_info.py +8 -0
- benchling_v3_sdk/types/collaboration_paginated_list.py +25 -0
- benchling_v3_sdk/types/column_mapping.py +25 -0
- benchling_v3_sdk/types/complex_polymer_connection.py +76 -0
- benchling_v3_sdk/types/complex_polymer_connection_attachment_style.py +5 -0
- benchling_v3_sdk/types/complex_polymer_connection_connection_type.py +5 -0
- benchling_v3_sdk/types/complex_polymer_connection_covalent_bond_type.py +5 -0
- benchling_v3_sdk/types/complex_polymer_resolved_attachment.py +49 -0
- benchling_v3_sdk/types/complex_polymer_structure.py +61 -0
- benchling_v3_sdk/types/complex_polymer_structure_simple_polymers_item.py +11 -0
- benchling_v3_sdk/types/concentration_layer_input.py +31 -0
- benchling_v3_sdk/types/concentration_well_input.py +26 -0
- benchling_v3_sdk/types/condition_order_for_pmdv_input.py +26 -0
- benchling_v3_sdk/types/config_import_history_entry.py +65 -0
- benchling_v3_sdk/types/config_import_history_entry_paginated_list.py +25 -0
- benchling_v3_sdk/types/confirmation_method_by_param_version_id.py +41 -0
- benchling_v3_sdk/types/confirmation_method_by_param_version_id_confirmation_method.py +5 -0
- benchling_v3_sdk/types/confirmation_method_by_param_version_id_input.py +31 -0
- benchling_v3_sdk/types/confirmation_method_by_param_version_id_input_confirmation_method.py +7 -0
- benchling_v3_sdk/types/connection_side.py +85 -0
- benchling_v3_sdk/types/connection_side_modification_type.py +5 -0
- benchling_v3_sdk/types/connectors_input.py +23 -0
- benchling_v3_sdk/types/connectors_input_mode.py +5 -0
- benchling_v3_sdk/types/constraint.py +38 -0
- benchling_v3_sdk/types/container.py +118 -0
- benchling_v3_sdk/types/container_content.py +64 -0
- benchling_v3_sdk/types/container_name_template.py +29 -0
- benchling_v3_sdk/types/container_name_template_input.py +26 -0
- benchling_v3_sdk/types/container_name_template_part.py +35 -0
- benchling_v3_sdk/types/container_name_template_part_configuration.py +10 -0
- benchling_v3_sdk/types/container_name_template_part_input.py +22 -0
- benchling_v3_sdk/types/container_name_template_part_input_configuration.py +10 -0
- benchling_v3_sdk/types/container_name_template_part_input_type.py +30 -0
- benchling_v3_sdk/types/container_name_template_part_type.py +34 -0
- benchling_v3_sdk/types/container_paginated_list.py +25 -0
- benchling_v3_sdk/types/container_ref.py +24 -0
- benchling_v3_sdk/types/container_schema.py +75 -0
- benchling_v3_sdk/types/container_schema_paginated_list.py +25 -0
- benchling_v3_sdk/types/container_schema_ref.py +24 -0
- benchling_v3_sdk/types/container_unpaginated_list.py +20 -0
- benchling_v3_sdk/types/content_item_input.py +73 -0
- benchling_v3_sdk/types/create_aa_monomer_input.py +56 -0
- benchling_v3_sdk/types/create_aa_monomer_input_natural_analog.py +35 -0
- benchling_v3_sdk/types/create_aa_part_link_field_definition_input.py +45 -0
- benchling_v3_sdk/types/create_aa_part_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_aa_sequence_input.py +107 -0
- benchling_v3_sdk/types/create_aa_sequence_input_naming_strategy.py +16 -0
- benchling_v3_sdk/types/create_aa_sequence_link_field_definition_input.py +45 -0
- benchling_v3_sdk/types/create_aa_sequence_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_aa_sequence_schema_constraint_input.py +33 -0
- benchling_v3_sdk/types/create_aa_sequence_schema_constraint_input_unique_residues.py +7 -0
- benchling_v3_sdk/types/create_aa_sequence_schema_input.py +149 -0
- benchling_v3_sdk/types/create_aa_sequence_schema_input_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/create_aa_sequence_schema_input_field_definitions_item.py +761 -0
- benchling_v3_sdk/types/create_aa_sequence_schema_input_icon_id.py +7 -0
- benchling_v3_sdk/types/create_antibody_link_field_definition_input.py +45 -0
- benchling_v3_sdk/types/create_antibody_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_any_entity_link_field_definition_input.py +29 -0
- benchling_v3_sdk/types/create_any_entity_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_app_canvas_input.py +75 -0
- benchling_v3_sdk/types/create_app_session_input.py +51 -0
- benchling_v3_sdk/types/create_assay_request_link_field_definition_input.py +32 -0
- benchling_v3_sdk/types/create_assay_request_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_assay_result_link_field_definition_input.py +32 -0
- benchling_v3_sdk/types/create_assay_result_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_assay_run_link_field_definition_input.py +32 -0
- benchling_v3_sdk/types/create_assay_run_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_attachment_input.py +52 -0
- benchling_v3_sdk/types/create_base_unit_input.py +21 -0
- benchling_v3_sdk/types/create_blob_link_field_definition_input.py +29 -0
- benchling_v3_sdk/types/create_blob_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_boolean_field_definition_input.py +28 -0
- benchling_v3_sdk/types/create_boolean_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_box_input.py +35 -0
- benchling_v3_sdk/types/create_box_schema_input.py +95 -0
- benchling_v3_sdk/types/create_box_schema_input_field_definitions_item.py +611 -0
- benchling_v3_sdk/types/create_chart_input.py +92 -0
- benchling_v3_sdk/types/create_chart_input_library.py +5 -0
- benchling_v3_sdk/types/create_collaboration_input.py +33 -0
- benchling_v3_sdk/types/create_collaboration_input_collaborator.py +8 -0
- benchling_v3_sdk/types/create_complex_polymer_schema_field_spec_input.py +26 -0
- benchling_v3_sdk/types/create_container_input.py +49 -0
- benchling_v3_sdk/types/create_container_input_restriction_status.py +7 -0
- benchling_v3_sdk/types/create_container_schema_input.py +73 -0
- benchling_v3_sdk/types/create_container_schema_input_field_definitions_item.py +611 -0
- benchling_v3_sdk/types/create_custom_entity_input.py +79 -0
- benchling_v3_sdk/types/create_custom_entity_input_naming_strategy.py +16 -0
- benchling_v3_sdk/types/create_custom_entity_link_field_definition_input.py +45 -0
- benchling_v3_sdk/types/create_custom_entity_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_custom_entity_schema_input.py +108 -0
- benchling_v3_sdk/types/create_custom_entity_schema_input_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/create_custom_entity_schema_input_field_definitions_item.py +734 -0
- benchling_v3_sdk/types/create_custom_entity_schema_input_icon_id.py +87 -0
- benchling_v3_sdk/types/create_date_field_definition_input.py +28 -0
- benchling_v3_sdk/types/create_date_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_date_time_field_definition_input.py +28 -0
- benchling_v3_sdk/types/create_date_time_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_dna_oligo_input.py +129 -0
- benchling_v3_sdk/types/create_dna_oligo_input_naming_strategy.py +16 -0
- benchling_v3_sdk/types/create_dna_oligo_link_field_definition_input.py +45 -0
- benchling_v3_sdk/types/create_dna_oligo_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_dna_oligo_schema_input.py +115 -0
- benchling_v3_sdk/types/create_dna_oligo_schema_input_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/create_dna_oligo_schema_input_field_definitions_item.py +734 -0
- benchling_v3_sdk/types/create_dna_oligo_schema_input_icon_id.py +7 -0
- benchling_v3_sdk/types/create_dna_part_link_field_definition_input.py +45 -0
- benchling_v3_sdk/types/create_dna_part_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_dna_sequence_input.py +131 -0
- benchling_v3_sdk/types/create_dna_sequence_input_naming_strategy.py +16 -0
- benchling_v3_sdk/types/create_dna_sequence_link_field_definition_input.py +45 -0
- benchling_v3_sdk/types/create_dna_sequence_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_dna_sequence_schema_input.py +117 -0
- benchling_v3_sdk/types/create_dna_sequence_schema_input_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/create_dna_sequence_schema_input_field_definitions_item.py +815 -0
- benchling_v3_sdk/types/create_dna_sequence_schema_input_icon_id.py +8 -0
- benchling_v3_sdk/types/create_dropdown_input.py +32 -0
- benchling_v3_sdk/types/create_dropdown_link_field_definition_input.py +30 -0
- benchling_v3_sdk/types/create_dropdown_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_dropdown_option_input.py +19 -0
- benchling_v3_sdk/types/create_entity_schema_constraint_input.py +25 -0
- benchling_v3_sdk/types/create_entry_content_input.py +36 -0
- benchling_v3_sdk/types/create_entry_content_input_content_type.py +7 -0
- benchling_v3_sdk/types/create_entry_input.py +91 -0
- benchling_v3_sdk/types/create_entry_link_field_definition_input.py +29 -0
- benchling_v3_sdk/types/create_entry_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_entry_schema_input.py +71 -0
- benchling_v3_sdk/types/create_entry_schema_input_field_definitions_item.py +734 -0
- benchling_v3_sdk/types/create_enzyme_list_input.py +52 -0
- benchling_v3_sdk/types/create_equipment_link_field_definition_input.py +45 -0
- benchling_v3_sdk/types/create_equipment_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_equipment_schema_input.py +106 -0
- benchling_v3_sdk/types/create_equipment_schema_input_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/create_equipment_schema_input_field_definitions_item.py +734 -0
- benchling_v3_sdk/types/create_equipment_schema_input_icon_id.py +7 -0
- benchling_v3_sdk/types/create_feature_library_input.py +40 -0
- benchling_v3_sdk/types/create_feature_library_item_input.py +71 -0
- benchling_v3_sdk/types/create_feature_library_item_input_match_type.py +5 -0
- benchling_v3_sdk/types/create_fieldset_constraint_input.py +36 -0
- benchling_v3_sdk/types/create_fieldset_constraint_input_unique_residues.py +5 -0
- benchling_v3_sdk/types/create_fieldset_input.py +67 -0
- benchling_v3_sdk/types/create_fieldset_input_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/create_fieldset_input_field_definitions_item.py +734 -0
- benchling_v3_sdk/types/create_fieldset_input_item_type.py +23 -0
- benchling_v3_sdk/types/create_fieldset_link_field_definition_input.py +45 -0
- benchling_v3_sdk/types/create_fieldset_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_file_attachment_input.py +28 -0
- benchling_v3_sdk/types/create_file_attachment_input_content_type.py +5 -0
- benchling_v3_sdk/types/create_file_input.py +25 -0
- benchling_v3_sdk/types/create_file_message_block_input.py +41 -0
- benchling_v3_sdk/types/create_file_message_block_input_type.py +5 -0
- benchling_v3_sdk/types/create_float_field_definition_input.py +40 -0
- benchling_v3_sdk/types/create_float_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_folder_input.py +23 -0
- benchling_v3_sdk/types/create_formula_unit_term_input.py +20 -0
- benchling_v3_sdk/types/create_integer_field_definition_input.py +37 -0
- benchling_v3_sdk/types/create_integer_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_json_field_definition_input.py +26 -0
- benchling_v3_sdk/types/create_library_parameter_definition_input.py +66 -0
- benchling_v3_sdk/types/create_library_parameter_definition_input_data_type.py +7 -0
- benchling_v3_sdk/types/create_location_input.py +32 -0
- benchling_v3_sdk/types/create_location_schema_input.py +73 -0
- benchling_v3_sdk/types/create_location_schema_input_field_definitions_item.py +611 -0
- benchling_v3_sdk/types/create_long_text_field_definition_input.py +28 -0
- benchling_v3_sdk/types/create_long_text_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_matrix_plate_input.py +52 -0
- benchling_v3_sdk/types/create_matrix_plate_schema_input.py +99 -0
- benchling_v3_sdk/types/create_matrix_plate_schema_input_field_definitions_item.py +611 -0
- benchling_v3_sdk/types/create_mixture_link_field_definition_input.py +45 -0
- benchling_v3_sdk/types/create_mixture_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_mixture_schema_input.py +147 -0
- benchling_v3_sdk/types/create_mixture_schema_input_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/create_mixture_schema_input_field_definitions_item.py +734 -0
- benchling_v3_sdk/types/create_mixture_schema_input_icon_id.py +8 -0
- benchling_v3_sdk/types/create_molecule_input.py +85 -0
- benchling_v3_sdk/types/create_molecule_input_naming_strategy.py +16 -0
- benchling_v3_sdk/types/create_molecule_link_field_definition_input.py +45 -0
- benchling_v3_sdk/types/create_molecule_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_molecule_schema_constraint_input.py +30 -0
- benchling_v3_sdk/types/create_molecule_schema_input.py +106 -0
- benchling_v3_sdk/types/create_molecule_schema_input_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/create_molecule_schema_input_field_definitions_item.py +734 -0
- benchling_v3_sdk/types/create_molecule_schema_input_icon_id.py +7 -0
- benchling_v3_sdk/types/create_oligo_conjugate_link_field_definition_input.py +45 -0
- benchling_v3_sdk/types/create_oligo_conjugate_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_oligo_conjugate_schema_input.py +121 -0
- benchling_v3_sdk/types/create_oligo_conjugate_schema_input_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/create_oligo_conjugate_schema_input_field_definitions_item.py +734 -0
- benchling_v3_sdk/types/create_oligo_conjugate_schema_input_icon_id.py +19 -0
- benchling_v3_sdk/types/create_oligo_duplex_link_field_definition_input.py +45 -0
- benchling_v3_sdk/types/create_oligo_duplex_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_oligo_duplex_schema_input.py +124 -0
- benchling_v3_sdk/types/create_oligo_duplex_schema_input_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/create_oligo_duplex_schema_input_field_definitions_item.py +734 -0
- benchling_v3_sdk/types/create_oligo_duplex_schema_input_icon_id.py +7 -0
- benchling_v3_sdk/types/create_organization_input.py +20 -0
- benchling_v3_sdk/types/create_plate_design_template_input.py +27 -0
- benchling_v3_sdk/types/create_plate_record_input.py +86 -0
- benchling_v3_sdk/types/create_procedure_run_plan_condition_input.py +71 -0
- benchling_v3_sdk/types/create_procedure_run_plan_input.py +73 -0
- benchling_v3_sdk/types/create_procedure_run_plan_input_data_entry_mode.py +7 -0
- benchling_v3_sdk/types/create_project_input.py +31 -0
- benchling_v3_sdk/types/create_protein_format_input.py +36 -0
- benchling_v3_sdk/types/create_protein_input.py +107 -0
- benchling_v3_sdk/types/create_protein_input_naming_strategy.py +16 -0
- benchling_v3_sdk/types/create_protein_schema_input.py +141 -0
- benchling_v3_sdk/types/create_protein_schema_input_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/create_protein_schema_input_field_definitions_item.py +734 -0
- benchling_v3_sdk/types/create_registration_table_input.py +27 -0
- benchling_v3_sdk/types/create_registration_table_input_content_type.py +5 -0
- benchling_v3_sdk/types/create_request_v2definition_input.py +58 -0
- benchling_v3_sdk/types/create_result_input.py +29 -0
- benchling_v3_sdk/types/create_result_table_input.py +27 -0
- benchling_v3_sdk/types/create_result_table_input_content_type.py +5 -0
- benchling_v3_sdk/types/create_rna_oligo_input.py +129 -0
- benchling_v3_sdk/types/create_rna_oligo_input_naming_strategy.py +16 -0
- benchling_v3_sdk/types/create_rna_oligo_link_field_definition_input.py +45 -0
- benchling_v3_sdk/types/create_rna_oligo_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_rna_oligo_schema_input.py +115 -0
- benchling_v3_sdk/types/create_rna_oligo_schema_input_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/create_rna_oligo_schema_input_field_definitions_item.py +734 -0
- benchling_v3_sdk/types/create_rna_oligo_schema_input_icon_id.py +7 -0
- benchling_v3_sdk/types/create_rna_part_link_field_definition_input.py +45 -0
- benchling_v3_sdk/types/create_rna_part_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_rna_sequence_input.py +148 -0
- benchling_v3_sdk/types/create_rna_sequence_input_naming_strategy.py +16 -0
- benchling_v3_sdk/types/create_rna_sequence_link_field_definition_input.py +45 -0
- benchling_v3_sdk/types/create_rna_sequence_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_rna_sequence_schema_input.py +117 -0
- benchling_v3_sdk/types/create_rna_sequence_schema_input_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/create_rna_sequence_schema_input_field_definitions_item.py +788 -0
- benchling_v3_sdk/types/create_rna_sequence_schema_input_icon_id.py +7 -0
- benchling_v3_sdk/types/create_salt_input.py +32 -0
- benchling_v3_sdk/types/create_scratch_file_input.py +20 -0
- benchling_v3_sdk/types/create_sequence_schema_constraint_input.py +31 -0
- benchling_v3_sdk/types/create_sequence_schema_constraint_input_unique_residues.py +5 -0
- benchling_v3_sdk/types/create_solvent_input.py +32 -0
- benchling_v3_sdk/types/create_storable_link_field_definition_input.py +32 -0
- benchling_v3_sdk/types/create_storable_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_study_design_entry_input.py +43 -0
- benchling_v3_sdk/types/create_study_input.py +101 -0
- benchling_v3_sdk/types/create_study_item_association_input.py +22 -0
- benchling_v3_sdk/types/create_study_schema_input.py +121 -0
- benchling_v3_sdk/types/create_study_schema_input_field_definitions_item.py +607 -0
- benchling_v3_sdk/types/create_study_schema_input_id_generation_mode.py +7 -0
- benchling_v3_sdk/types/create_study_schema_input_study_type.py +7 -0
- benchling_v3_sdk/types/create_system_category_link_field_definition_input.py +32 -0
- benchling_v3_sdk/types/create_system_category_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_test_definition_input.py +52 -0
- benchling_v3_sdk/types/create_text_field_definition_input.py +28 -0
- benchling_v3_sdk/types/create_text_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_text_input.py +25 -0
- benchling_v3_sdk/types/create_text_input_content_type.py +5 -0
- benchling_v3_sdk/types/create_text_message_block_input.py +21 -0
- benchling_v3_sdk/types/create_text_message_block_input_type.py +5 -0
- benchling_v3_sdk/types/create_transcription_link_field_definition_input.py +45 -0
- benchling_v3_sdk/types/create_transcription_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_translation_link_field_definition_input.py +45 -0
- benchling_v3_sdk/types/create_translation_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/create_unit_input.py +33 -0
- benchling_v3_sdk/types/create_unit_type_input.py +53 -0
- benchling_v3_sdk/types/create_unit_type_term_input.py +21 -0
- benchling_v3_sdk/types/create_unit_type_term_input_value.py +7 -0
- benchling_v3_sdk/types/create_user_input.py +26 -0
- benchling_v3_sdk/types/create_warehouse_credential_output.py +40 -0
- benchling_v3_sdk/types/create_well_plate_input.py +47 -0
- benchling_v3_sdk/types/create_well_plate_schema_input.py +99 -0
- benchling_v3_sdk/types/create_well_plate_schema_input_field_definitions_item.py +611 -0
- benchling_v3_sdk/types/create_workflow_output_input.py +41 -0
- benchling_v3_sdk/types/create_workflow_output_schema_input.py +36 -0
- benchling_v3_sdk/types/create_workflow_output_schema_input_field_definitions_item.py +734 -0
- benchling_v3_sdk/types/create_workflow_task_group_input.py +30 -0
- benchling_v3_sdk/types/create_workflow_task_input.py +68 -0
- benchling_v3_sdk/types/create_workflow_task_schema_input.py +188 -0
- benchling_v3_sdk/types/create_workflow_task_schema_input_field_definitions_item.py +734 -0
- benchling_v3_sdk/types/create_worklist_input.py +28 -0
- benchling_v3_sdk/types/create_worklist_input_item_type.py +5 -0
- benchling_v3_sdk/types/custom_entity.py +105 -0
- benchling_v3_sdk/types/custom_entity_created_webhook_envelope_v3.py +25 -0
- benchling_v3_sdk/types/custom_entity_created_webhook_v3.py +64 -0
- benchling_v3_sdk/types/custom_entity_created_webhook_v3type.py +5 -0
- benchling_v3_sdk/types/custom_entity_link_field_definition.py +74 -0
- benchling_v3_sdk/types/custom_entity_link_field_definition_derivation_type.py +7 -0
- benchling_v3_sdk/types/custom_entity_paginated_list.py +25 -0
- benchling_v3_sdk/types/custom_entity_ref.py +24 -0
- benchling_v3_sdk/types/custom_entity_schema.py +94 -0
- benchling_v3_sdk/types/custom_entity_schema_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/custom_entity_schema_containable_type.py +5 -0
- benchling_v3_sdk/types/custom_entity_schema_icon_id.py +87 -0
- benchling_v3_sdk/types/custom_entity_schema_paginated_list.py +25 -0
- benchling_v3_sdk/types/custom_entity_schema_ref.py +24 -0
- benchling_v3_sdk/types/custom_entity_updated_webhook_envelope_v3.py +25 -0
- benchling_v3_sdk/types/custom_entity_updated_webhook_v3.py +69 -0
- benchling_v3_sdk/types/custom_entity_updated_webhook_v3type.py +5 -0
- benchling_v3_sdk/types/custom_field.py +33 -0
- benchling_v3_sdk/types/custom_field_input.py +27 -0
- benchling_v3_sdk/types/custom_transform.py +43 -0
- benchling_v3_sdk/types/custom_transform_type.py +23 -0
- benchling_v3_sdk/types/custom_transformation_properties.py +36 -0
- benchling_v3_sdk/types/cut_site_detail.py +41 -0
- benchling_v3_sdk/types/data_frame.py +56 -0
- benchling_v3_sdk/types/data_frame_column.py +35 -0
- benchling_v3_sdk/types/data_frame_manifest_item.py +33 -0
- benchling_v3_sdk/types/data_frame_paginated_list.py +25 -0
- benchling_v3_sdk/types/data_frame_ref.py +24 -0
- benchling_v3_sdk/types/data_frame_upload_status.py +7 -0
- benchling_v3_sdk/types/data_parameter_value_plan.py +35 -0
- benchling_v3_sdk/types/data_parameter_value_plan_input.py +35 -0
- benchling_v3_sdk/types/dataset.py +52 -0
- benchling_v3_sdk/types/dataset_paginated_list.py +25 -0
- benchling_v3_sdk/types/dataset_ref.py +24 -0
- benchling_v3_sdk/types/date_app_config_spec.py +30 -0
- benchling_v3_sdk/types/date_app_config_value.py +29 -0
- benchling_v3_sdk/types/date_cell_evaluation_value.py +32 -0
- benchling_v3_sdk/types/date_field_definition.py +52 -0
- benchling_v3_sdk/types/date_field_definition_derivation_type.py +5 -0
- benchling_v3_sdk/types/date_time_app_config_spec.py +30 -0
- benchling_v3_sdk/types/date_time_app_config_value.py +28 -0
- benchling_v3_sdk/types/date_time_cell_evaluation_value.py +31 -0
- benchling_v3_sdk/types/date_time_field_definition.py +52 -0
- benchling_v3_sdk/types/date_time_field_definition_derivation_type.py +5 -0
- benchling_v3_sdk/types/date_time_value.py +31 -0
- benchling_v3_sdk/types/date_value.py +32 -0
- benchling_v3_sdk/types/decimal_value.py +40 -0
- benchling_v3_sdk/types/delete_collaboration_input_with_path_params.py +19 -0
- benchling_v3_sdk/types/delete_document_parts_input.py +36 -0
- benchling_v3_sdk/types/delete_document_parts_input_operation_type.py +5 -0
- benchling_v3_sdk/types/delete_folder_input_with_path_params.py +19 -0
- benchling_v3_sdk/types/delete_nucleotide_alignment_input_with_path_params.py +22 -0
- benchling_v3_sdk/types/delete_procedure_method_execution_instance_association_input_with_path_params.py +19 -0
- benchling_v3_sdk/types/delete_study_item_association_input_with_path_params.py +19 -0
- benchling_v3_sdk/types/delete_worklist_input_with_path_params.py +19 -0
- benchling_v3_sdk/types/dna_chain_configuration_input.py +26 -0
- benchling_v3_sdk/types/dna_chain_configuration_input_system_category_id.py +5 -0
- benchling_v3_sdk/types/dna_domain_configuration_input.py +26 -0
- benchling_v3_sdk/types/dna_domain_configuration_input_system_category_id.py +5 -0
- benchling_v3_sdk/types/dna_oligo.py +161 -0
- benchling_v3_sdk/types/dna_oligo_created_webhook_envelope_v3.py +25 -0
- benchling_v3_sdk/types/dna_oligo_created_webhook_v3.py +64 -0
- benchling_v3_sdk/types/dna_oligo_created_webhook_v3type.py +5 -0
- benchling_v3_sdk/types/dna_oligo_link_field_definition.py +81 -0
- benchling_v3_sdk/types/dna_oligo_link_field_definition_derivation_type.py +5 -0
- benchling_v3_sdk/types/dna_oligo_paginated_list.py +25 -0
- benchling_v3_sdk/types/dna_oligo_schema.py +107 -0
- benchling_v3_sdk/types/dna_oligo_schema_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/dna_oligo_schema_containable_type.py +5 -0
- benchling_v3_sdk/types/dna_oligo_schema_icon_id.py +7 -0
- benchling_v3_sdk/types/dna_oligo_schema_paginated_list.py +25 -0
- benchling_v3_sdk/types/dna_oligo_schema_ref.py +24 -0
- benchling_v3_sdk/types/dna_oligo_updated_webhook_envelope_v3.py +25 -0
- benchling_v3_sdk/types/dna_oligo_updated_webhook_v3.py +69 -0
- benchling_v3_sdk/types/dna_oligo_updated_webhook_v3type.py +5 -0
- benchling_v3_sdk/types/dna_pair_configuration_input.py +26 -0
- benchling_v3_sdk/types/dna_pair_configuration_input_system_category_id.py +5 -0
- benchling_v3_sdk/types/dna_part.py +69 -0
- benchling_v3_sdk/types/dna_part_link_field_definition.py +68 -0
- benchling_v3_sdk/types/dna_part_link_field_definition_derivation_type.py +5 -0
- benchling_v3_sdk/types/dna_part_paginated_list.py +25 -0
- benchling_v3_sdk/types/dna_part_strand.py +5 -0
- benchling_v3_sdk/types/dna_sequence.py +175 -0
- benchling_v3_sdk/types/dna_sequence_created_webhook_envelope_v3.py +25 -0
- benchling_v3_sdk/types/dna_sequence_created_webhook_v3.py +64 -0
- benchling_v3_sdk/types/dna_sequence_created_webhook_v3type.py +5 -0
- benchling_v3_sdk/types/dna_sequence_link_field_definition.py +74 -0
- benchling_v3_sdk/types/dna_sequence_link_field_definition_derivation_type.py +7 -0
- benchling_v3_sdk/types/dna_sequence_paginated_list.py +25 -0
- benchling_v3_sdk/types/dna_sequence_ref.py +24 -0
- benchling_v3_sdk/types/dna_sequence_schema.py +107 -0
- benchling_v3_sdk/types/dna_sequence_schema_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/dna_sequence_schema_containable_type.py +5 -0
- benchling_v3_sdk/types/dna_sequence_schema_icon_id.py +8 -0
- benchling_v3_sdk/types/dna_sequence_schema_paginated_list.py +25 -0
- benchling_v3_sdk/types/dna_sequence_schema_ref.py +24 -0
- benchling_v3_sdk/types/dna_sequence_updated_webhook_envelope_v3.py +25 -0
- benchling_v3_sdk/types/dna_sequence_updated_webhook_v3.py +69 -0
- benchling_v3_sdk/types/dna_sequence_updated_webhook_v3type.py +5 -0
- benchling_v3_sdk/types/dna_sub_element_configuration_input.py +26 -0
- benchling_v3_sdk/types/dna_sub_element_configuration_input_system_category_id.py +5 -0
- benchling_v3_sdk/types/document_content_input.py +154 -0
- benchling_v3_sdk/types/document_content_input_content_type.py +18 -0
- benchling_v3_sdk/types/document_content_input_header_type.py +5 -0
- benchling_v3_sdk/types/document_content_input_list_type.py +7 -0
- benchling_v3_sdk/types/document_embeddable.py +16 -0
- benchling_v3_sdk/types/document_like_ref.py +24 -0
- benchling_v3_sdk/types/document_like_version_metadata.py +47 -0
- benchling_v3_sdk/types/document_part.py +76 -0
- benchling_v3_sdk/types/document_part_content.py +39 -0
- benchling_v3_sdk/types/document_part_paginated_list.py +25 -0
- benchling_v3_sdk/types/domain_linked_schema.py +39 -0
- benchling_v3_sdk/types/domain_linked_schema_domain_type.py +30 -0
- benchling_v3_sdk/types/domain_linked_schema_input.py +36 -0
- benchling_v3_sdk/types/dropdown.py +57 -0
- benchling_v3_sdk/types/dropdown_app_config_spec.py +32 -0
- benchling_v3_sdk/types/dropdown_link_field_definition.py +62 -0
- benchling_v3_sdk/types/dropdown_link_field_definition_derivation_type.py +5 -0
- benchling_v3_sdk/types/dropdown_link_field_definition_paginated_list.py +25 -0
- benchling_v3_sdk/types/dropdown_multi_value_ui_block.py +36 -0
- benchling_v3_sdk/types/dropdown_multi_value_ui_block_input.py +29 -0
- benchling_v3_sdk/types/dropdown_multi_value_ui_block_input_type.py +5 -0
- benchling_v3_sdk/types/dropdown_option.py +37 -0
- benchling_v3_sdk/types/dropdown_option_paginated_list.py +25 -0
- benchling_v3_sdk/types/dropdown_option_unpaginated_list.py +20 -0
- benchling_v3_sdk/types/dropdown_paginated_list.py +25 -0
- benchling_v3_sdk/types/dropdown_ref.py +24 -0
- benchling_v3_sdk/types/dropdown_ui_block.py +36 -0
- benchling_v3_sdk/types/dropdown_ui_block_input.py +29 -0
- benchling_v3_sdk/types/dropdown_ui_block_input_type.py +5 -0
- benchling_v3_sdk/types/duplicate_transform.py +42 -0
- benchling_v3_sdk/types/duplicate_transform_type.py +23 -0
- benchling_v3_sdk/types/duplicate_transformation_properties.py +45 -0
- benchling_v3_sdk/types/editing_target_input.py +5 -0
- benchling_v3_sdk/types/entity_name_template.py +34 -0
- benchling_v3_sdk/types/entity_name_template_input.py +29 -0
- benchling_v3_sdk/types/entity_name_template_part.py +35 -0
- benchling_v3_sdk/types/entity_name_template_part_configuration.py +15 -0
- benchling_v3_sdk/types/entity_name_template_part_input.py +22 -0
- benchling_v3_sdk/types/entity_name_template_part_input_configuration.py +15 -0
- benchling_v3_sdk/types/entity_name_template_part_input_type.py +22 -0
- benchling_v3_sdk/types/entity_name_template_part_type.py +24 -0
- benchling_v3_sdk/types/entity_ref.py +24 -0
- benchling_v3_sdk/types/entity_schema.py +95 -0
- benchling_v3_sdk/types/entity_schema_app_config_spec.py +43 -0
- benchling_v3_sdk/types/entity_schema_app_config_spec_subtype.py +10 -0
- benchling_v3_sdk/types/entity_schema_app_config_value.py +36 -0
- benchling_v3_sdk/types/entity_schema_app_config_value_subtype.py +10 -0
- benchling_v3_sdk/types/entity_schema_apply_fieldset_input.py +43 -0
- benchling_v3_sdk/types/entity_schema_apply_fieldset_output.py +30 -0
- benchling_v3_sdk/types/entity_schema_apply_fieldset_warning.py +39 -0
- benchling_v3_sdk/types/entity_schema_apply_fieldset_warning_warning_type.py +17 -0
- benchling_v3_sdk/types/entity_schema_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/entity_schema_base_ref.py +24 -0
- benchling_v3_sdk/types/entity_schema_containable_type.py +5 -0
- benchling_v3_sdk/types/entity_schema_paginated_list.py +25 -0
- benchling_v3_sdk/types/entity_schema_ref.py +24 -0
- benchling_v3_sdk/types/entity_schema_remove_fieldset_input.py +43 -0
- benchling_v3_sdk/types/entry.py +179 -0
- benchling_v3_sdk/types/entry_content.py +31 -0
- benchling_v3_sdk/types/entry_content_type.py +19 -0
- benchling_v3_sdk/types/entry_created_webhook_envelope_v3.py +25 -0
- benchling_v3_sdk/types/entry_created_webhook_v3.py +64 -0
- benchling_v3_sdk/types/entry_created_webhook_v3type.py +5 -0
- benchling_v3_sdk/types/entry_editing_target_input.py +25 -0
- benchling_v3_sdk/types/entry_editing_target_input_type.py +5 -0
- benchling_v3_sdk/types/entry_link_field_definition.py +55 -0
- benchling_v3_sdk/types/entry_link_field_definition_derivation_type.py +5 -0
- benchling_v3_sdk/types/entry_paginated_list.py +25 -0
- benchling_v3_sdk/types/entry_ref.py +24 -0
- benchling_v3_sdk/types/entry_schema.py +66 -0
- benchling_v3_sdk/types/entry_schema_paginated_list.py +25 -0
- benchling_v3_sdk/types/entry_schema_ref.py +24 -0
- benchling_v3_sdk/types/entry_schema_typed_icon_id.py +5 -0
- benchling_v3_sdk/types/entry_section.py +39 -0
- benchling_v3_sdk/types/entry_subtemplate.py +82 -0
- benchling_v3_sdk/types/entry_subtemplate_paginated_list.py +25 -0
- benchling_v3_sdk/types/entry_template.py +104 -0
- benchling_v3_sdk/types/entry_template_paginated_list.py +25 -0
- benchling_v3_sdk/types/entry_template_ref.py +24 -0
- benchling_v3_sdk/types/entry_template_unpaginated_list.py +20 -0
- benchling_v3_sdk/types/enzyme.py +69 -0
- benchling_v3_sdk/types/enzyme_list.py +74 -0
- benchling_v3_sdk/types/enzyme_list_paginated_list.py +25 -0
- benchling_v3_sdk/types/enzyme_paginated_list.py +25 -0
- benchling_v3_sdk/types/enzyme_unpaginated_list.py +20 -0
- benchling_v3_sdk/types/equipment_link_field_definition.py +74 -0
- benchling_v3_sdk/types/equipment_link_field_definition_derivation_type.py +5 -0
- benchling_v3_sdk/types/equipment_schema.py +98 -0
- benchling_v3_sdk/types/equipment_schema_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/equipment_schema_containable_type.py +5 -0
- benchling_v3_sdk/types/equipment_schema_icon_id.py +5 -0
- benchling_v3_sdk/types/equipment_schema_paginated_list.py +25 -0
- benchling_v3_sdk/types/equipment_schema_ref.py +24 -0
- benchling_v3_sdk/types/equipment_value_plan.py +35 -0
- benchling_v3_sdk/types/equipment_value_plan_input.py +35 -0
- benchling_v3_sdk/types/event_subscription.py +102 -0
- benchling_v3_sdk/types/event_subscription_destination_type.py +5 -0
- benchling_v3_sdk/types/event_subscription_paginated_list.py +25 -0
- benchling_v3_sdk/types/experimental_role.py +53 -0
- benchling_v3_sdk/types/experimental_role_input.py +26 -0
- benchling_v3_sdk/types/experimental_role_input_primary_role.py +5 -0
- benchling_v3_sdk/types/experimental_role_primary_role.py +5 -0
- benchling_v3_sdk/types/expiration_info.py +54 -0
- benchling_v3_sdk/types/explicit_barcode_input.py +25 -0
- benchling_v3_sdk/types/explicit_barcode_input_barcode_mode.py +5 -0
- benchling_v3_sdk/types/external_linked_molecule.py +53 -0
- benchling_v3_sdk/types/extra_footers_transform.py +43 -0
- benchling_v3_sdk/types/extra_footers_transform_type.py +23 -0
- benchling_v3_sdk/types/extra_footers_transformation_properties.py +36 -0
- benchling_v3_sdk/types/extra_headers_transform.py +44 -0
- benchling_v3_sdk/types/extra_headers_transform_type.py +23 -0
- benchling_v3_sdk/types/extra_headers_transformation_properties.py +48 -0
- benchling_v3_sdk/types/feature_library.py +69 -0
- benchling_v3_sdk/types/feature_library_item.py +101 -0
- benchling_v3_sdk/types/feature_library_item_match_type.py +5 -0
- benchling_v3_sdk/types/feature_library_item_paginated_list.py +25 -0
- benchling_v3_sdk/types/feature_library_paginated_list.py +25 -0
- benchling_v3_sdk/types/feature_library_ref.py +24 -0
- benchling_v3_sdk/types/field_name_template_part_configuration.py +29 -0
- benchling_v3_sdk/types/field_name_template_part_configuration_input.py +21 -0
- benchling_v3_sdk/types/field_value_input.py +20 -0
- benchling_v3_sdk/types/fieldset.py +114 -0
- benchling_v3_sdk/types/fieldset_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/fieldset_item_type.py +23 -0
- benchling_v3_sdk/types/fieldset_link_field_definition.py +72 -0
- benchling_v3_sdk/types/fieldset_link_field_definition_derivation_type.py +5 -0
- benchling_v3_sdk/types/fieldset_paginated_list.py +25 -0
- benchling_v3_sdk/types/fieldset_ref.py +24 -0
- benchling_v3_sdk/types/fieldset_unpaginated_list.py +20 -0
- benchling_v3_sdk/types/file.py +81 -0
- benchling_v3_sdk/types/file_paginated_list.py +25 -0
- benchling_v3_sdk/types/file_ref.py +24 -0
- benchling_v3_sdk/types/file_source_input.py +5 -0
- benchling_v3_sdk/types/file_upload_ui_block.py +38 -0
- benchling_v3_sdk/types/file_upload_ui_block_input.py +33 -0
- benchling_v3_sdk/types/file_upload_ui_block_input_type.py +5 -0
- benchling_v3_sdk/types/filter_transform.py +43 -0
- benchling_v3_sdk/types/filter_transform_transformation_properties.py +15 -0
- benchling_v3_sdk/types/filter_transform_type.py +23 -0
- benchling_v3_sdk/types/find_replace_transform.py +34 -0
- benchling_v3_sdk/types/find_replace_transform_type.py +23 -0
- benchling_v3_sdk/types/float_app_config_spec.py +35 -0
- benchling_v3_sdk/types/float_app_config_value.py +28 -0
- benchling_v3_sdk/types/float_field_definition.py +63 -0
- benchling_v3_sdk/types/float_field_definition_derivation_type.py +5 -0
- benchling_v3_sdk/types/folder.py +62 -0
- benchling_v3_sdk/types/folder_paginated_list.py +25 -0
- benchling_v3_sdk/types/folder_ref.py +24 -0
- benchling_v3_sdk/types/formula_unit_term.py +35 -0
- benchling_v3_sdk/types/general_error.py +29 -0
- benchling_v3_sdk/types/general_error_detail.py +5 -0
- benchling_v3_sdk/types/germline.py +36 -0
- benchling_v3_sdk/types/germline_paginated_list.py +25 -0
- benchling_v3_sdk/types/grid_coordinates.py +53 -0
- benchling_v3_sdk/types/group.py +8 -0
- benchling_v3_sdk/types/group_collaborator_info.py +33 -0
- benchling_v3_sdk/types/group_collaborator_info_role.py +5 -0
- benchling_v3_sdk/types/group_collaborator_input.py +34 -0
- benchling_v3_sdk/types/group_collaborator_input_role.py +5 -0
- benchling_v3_sdk/types/group_membership.py +42 -0
- benchling_v3_sdk/types/group_membership_paginated_list.py +25 -0
- benchling_v3_sdk/types/group_membership_role.py +5 -0
- benchling_v3_sdk/types/group_membership_unpaginated_list.py +20 -0
- benchling_v3_sdk/types/header_content_input.py +61 -0
- benchling_v3_sdk/types/header_content_input_content_type.py +5 -0
- benchling_v3_sdk/types/header_content_input_header_type.py +5 -0
- benchling_v3_sdk/types/header_document_content.py +66 -0
- benchling_v3_sdk/types/header_document_content_header_type.py +5 -0
- benchling_v3_sdk/types/i_aa_sequence.py +139 -0
- benchling_v3_sdk/types/i_app_installation_ref.py +24 -0
- benchling_v3_sdk/types/i_box.py +85 -0
- benchling_v3_sdk/types/i_container.py +110 -0
- benchling_v3_sdk/types/i_custom_entity.py +96 -0
- benchling_v3_sdk/types/i_dna_oligo.py +152 -0
- benchling_v3_sdk/types/i_dna_sequence.py +166 -0
- benchling_v3_sdk/types/i_entry.py +162 -0
- benchling_v3_sdk/types/i_location.py +117 -0
- benchling_v3_sdk/types/i_location_validation_status.py +5 -0
- benchling_v3_sdk/types/i_matrix_plate.py +131 -0
- benchling_v3_sdk/types/i_mixture.py +120 -0
- benchling_v3_sdk/types/i_mixture_units.py +5 -0
- benchling_v3_sdk/types/i_molecule.py +136 -0
- benchling_v3_sdk/types/i_oligo_conjugate.py +121 -0
- benchling_v3_sdk/types/i_oligo_conjugate_conjugates_item.py +8 -0
- benchling_v3_sdk/types/i_oligo_duplex.py +131 -0
- benchling_v3_sdk/types/i_oligo_duplex_conjugates_item.py +8 -0
- benchling_v3_sdk/types/i_plate.py +119 -0
- benchling_v3_sdk/types/i_plate_type.py +5 -0
- benchling_v3_sdk/types/i_protein.py +158 -0
- benchling_v3_sdk/types/i_result.py +65 -0
- benchling_v3_sdk/types/i_rna_oligo.py +152 -0
- benchling_v3_sdk/types/i_rna_sequence.py +163 -0
- benchling_v3_sdk/types/i_run.py +101 -0
- benchling_v3_sdk/types/i_run_validation_status.py +5 -0
- benchling_v3_sdk/types/i_well_plate.py +95 -0
- benchling_v3_sdk/types/image_grid_attachment.py +77 -0
- benchling_v3_sdk/types/image_grid_document_content.py +42 -0
- benchling_v3_sdk/types/ingredient.py +112 -0
- benchling_v3_sdk/types/ingredient_units.py +7 -0
- benchling_v3_sdk/types/insert_coordinates.py +23 -0
- benchling_v3_sdk/types/insert_coordinates_position.py +7 -0
- benchling_v3_sdk/types/insert_coordinates_position_zero.py +5 -0
- benchling_v3_sdk/types/insert_document_parts_input.py +42 -0
- benchling_v3_sdk/types/insert_document_parts_input_operation_type.py +5 -0
- benchling_v3_sdk/types/integer_app_config_spec.py +35 -0
- benchling_v3_sdk/types/integer_app_config_value.py +28 -0
- benchling_v3_sdk/types/integer_field_definition.py +60 -0
- benchling_v3_sdk/types/integer_field_definition_derivation_type.py +5 -0
- benchling_v3_sdk/types/integer_value.py +31 -0
- benchling_v3_sdk/types/internal_linked_molecule.py +39 -0
- benchling_v3_sdk/types/internal_server_error_body.py +29 -0
- benchling_v3_sdk/types/internal_server_error_body_detail.py +5 -0
- benchling_v3_sdk/types/inventory_structured_table_document_content.py +27 -0
- benchling_v3_sdk/types/json_app_config_spec.py +30 -0
- benchling_v3_sdk/types/json_app_config_value.py +28 -0
- benchling_v3_sdk/types/json_field_definition.py +52 -0
- benchling_v3_sdk/types/json_field_definition_derivation_type.py +5 -0
- benchling_v3_sdk/types/json_value.py +31 -0
- benchling_v3_sdk/types/label_template.py +77 -0
- benchling_v3_sdk/types/label_template_paginated_list.py +25 -0
- benchling_v3_sdk/types/legacy_app_installation.py +81 -0
- benchling_v3_sdk/types/legacy_app_installation_feature_specs_item.py +9 -0
- benchling_v3_sdk/types/legacy_app_installation_paginated_list.py +25 -0
- benchling_v3_sdk/types/library_parameter_definition.py +55 -0
- benchling_v3_sdk/types/library_parameter_definition_data_type.py +39 -0
- benchling_v3_sdk/types/library_parameter_definition_paginated_list.py +25 -0
- benchling_v3_sdk/types/link_span.py +41 -0
- benchling_v3_sdk/types/link_span_input.py +32 -0
- benchling_v3_sdk/types/list_item_content_input.py +61 -0
- benchling_v3_sdk/types/list_item_content_input_content_type.py +5 -0
- benchling_v3_sdk/types/list_item_content_input_list_type.py +7 -0
- benchling_v3_sdk/types/list_item_document_content.py +64 -0
- benchling_v3_sdk/types/list_item_document_content_list_type.py +7 -0
- benchling_v3_sdk/types/location.py +125 -0
- benchling_v3_sdk/types/location_input.py +64 -0
- benchling_v3_sdk/types/location_input_location_type.py +5 -0
- benchling_v3_sdk/types/location_paginated_list.py +25 -0
- benchling_v3_sdk/types/location_ref.py +24 -0
- benchling_v3_sdk/types/location_schema.py +68 -0
- benchling_v3_sdk/types/location_schema_paginated_list.py +25 -0
- benchling_v3_sdk/types/location_schema_ref.py +24 -0
- benchling_v3_sdk/types/long_text_field_definition.py +52 -0
- benchling_v3_sdk/types/long_text_field_definition_derivation_type.py +5 -0
- benchling_v3_sdk/types/mafft_options_input.py +73 -0
- benchling_v3_sdk/types/mafft_options_input_adjust_direction.py +5 -0
- benchling_v3_sdk/types/mafft_options_input_strategy.py +5 -0
- benchling_v3_sdk/types/markdown_ui_block.py +29 -0
- benchling_v3_sdk/types/markdown_ui_block_input.py +22 -0
- benchling_v3_sdk/types/markdown_ui_block_input_type.py +5 -0
- benchling_v3_sdk/types/material_input_value_plan.py +35 -0
- benchling_v3_sdk/types/material_input_value_plan_input.py +36 -0
- benchling_v3_sdk/types/matrix_plate.py +143 -0
- benchling_v3_sdk/types/matrix_plate_paginated_list.py +25 -0
- benchling_v3_sdk/types/matrix_plate_position.py +38 -0
- benchling_v3_sdk/types/matrix_plate_position_input.py +20 -0
- benchling_v3_sdk/types/matrix_plate_schema.py +133 -0
- benchling_v3_sdk/types/matrix_plate_schema_paginated_list.py +25 -0
- benchling_v3_sdk/types/matrix_plate_schema_ref.py +24 -0
- benchling_v3_sdk/types/mcp_server_chat_source_input.py +31 -0
- benchling_v3_sdk/types/mcp_server_chat_source_input_type.py +5 -0
- benchling_v3_sdk/types/measurement.py +36 -0
- benchling_v3_sdk/types/measurement_input.py +24 -0
- benchling_v3_sdk/types/melt_transform.py +43 -0
- benchling_v3_sdk/types/melt_transform_type.py +23 -0
- benchling_v3_sdk/types/melt_transformation_properties.py +42 -0
- benchling_v3_sdk/types/mention.py +40 -0
- benchling_v3_sdk/types/mention_input.py +33 -0
- benchling_v3_sdk/types/merge_transform.py +43 -0
- benchling_v3_sdk/types/merge_transform_type.py +23 -0
- benchling_v3_sdk/types/merge_transformation_properties.py +50 -0
- benchling_v3_sdk/types/merged_cell_anchor.py +36 -0
- benchling_v3_sdk/types/metadata_column_input.py +34 -0
- benchling_v3_sdk/types/metadata_column_input_plate_value.py +5 -0
- benchling_v3_sdk/types/metadata_column_input_type.py +7 -0
- benchling_v3_sdk/types/metadata_well_input.py +25 -0
- benchling_v3_sdk/types/metadata_well_input_value.py +5 -0
- benchling_v3_sdk/types/method_parameters_plan.py +69 -0
- benchling_v3_sdk/types/method_parameters_plan_input.py +49 -0
- benchling_v3_sdk/types/mixture.py +123 -0
- benchling_v3_sdk/types/mixture_link_field_definition.py +72 -0
- benchling_v3_sdk/types/mixture_link_field_definition_derivation_type.py +5 -0
- benchling_v3_sdk/types/mixture_paginated_list.py +25 -0
- benchling_v3_sdk/types/mixture_schema.py +139 -0
- benchling_v3_sdk/types/mixture_schema_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/mixture_schema_containable_type.py +5 -0
- benchling_v3_sdk/types/mixture_schema_icon_id.py +8 -0
- benchling_v3_sdk/types/mixture_schema_paginated_list.py +25 -0
- benchling_v3_sdk/types/mixture_schema_ref.py +24 -0
- benchling_v3_sdk/types/modified_nucleotide.py +93 -0
- benchling_v3_sdk/types/modified_nucleotide_paginated_list.py +25 -0
- benchling_v3_sdk/types/molecule.py +145 -0
- benchling_v3_sdk/types/molecule_link_field_definition.py +74 -0
- benchling_v3_sdk/types/molecule_link_field_definition_derivation_type.py +5 -0
- benchling_v3_sdk/types/molecule_paginated_list.py +25 -0
- benchling_v3_sdk/types/molecule_ref.py +24 -0
- benchling_v3_sdk/types/molecule_schema.py +98 -0
- benchling_v3_sdk/types/molecule_schema_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/molecule_schema_containable_type.py +5 -0
- benchling_v3_sdk/types/molecule_schema_icon_id.py +7 -0
- benchling_v3_sdk/types/molecule_schema_paginated_list.py +25 -0
- benchling_v3_sdk/types/molecule_schema_ref.py +24 -0
- benchling_v3_sdk/types/move_document_parts_input.py +53 -0
- benchling_v3_sdk/types/move_document_parts_input_operation_type.py +5 -0
- benchling_v3_sdk/types/multiple_values_filter_transformation_properties.py +43 -0
- benchling_v3_sdk/types/multiple_values_filter_transformation_properties_type.py +7 -0
- benchling_v3_sdk/types/new_sequence_input.py +30 -0
- benchling_v3_sdk/types/nucleotide_alignment.py +106 -0
- benchling_v3_sdk/types/nucleotide_alignment_alignment_type.py +5 -0
- benchling_v3_sdk/types/nucleotide_alignment_paginated_list.py +25 -0
- benchling_v3_sdk/types/nucleotide_alignment_ref.py +24 -0
- benchling_v3_sdk/types/nucleotide_alignment_unpaginated_list.py +20 -0
- benchling_v3_sdk/types/nucleotide_annotation.py +95 -0
- benchling_v3_sdk/types/nucleotide_annotation_input.py +65 -0
- benchling_v3_sdk/types/nucleotide_annotation_input_strand.py +5 -0
- benchling_v3_sdk/types/nucleotide_annotation_paginated_list.py +25 -0
- benchling_v3_sdk/types/nucleotide_annotation_strand.py +5 -0
- benchling_v3_sdk/types/nucleotide_monomer.py +182 -0
- benchling_v3_sdk/types/nucleotide_monomer_monomer_type.py +5 -0
- benchling_v3_sdk/types/nucleotide_monomer_natural_analog.py +7 -0
- benchling_v3_sdk/types/nucleotide_monomer_paginated_list.py +25 -0
- benchling_v3_sdk/types/nucleotide_monomer_polymer_type.py +5 -0
- benchling_v3_sdk/types/nucleotide_monomer_ref.py +24 -0
- benchling_v3_sdk/types/nucleotide_monomer_visual_symbol.py +34 -0
- benchling_v3_sdk/types/nucleotide_part_input.py +44 -0
- benchling_v3_sdk/types/nucleotide_part_input_strand.py +5 -0
- benchling_v3_sdk/types/nucleotide_sequence_ref.py +24 -0
- benchling_v3_sdk/types/nucleotide_simple_polymer.py +60 -0
- benchling_v3_sdk/types/nucleotide_simple_polymer_nucleotide_type.py +5 -0
- benchling_v3_sdk/types/null_filter_transformation_properties.py +38 -0
- benchling_v3_sdk/types/null_filter_transformation_properties_type.py +7 -0
- benchling_v3_sdk/types/number_cell_evaluation_value.py +31 -0
- benchling_v3_sdk/types/number_value_filter_transformation_properties.py +43 -0
- benchling_v3_sdk/types/number_value_filter_transformation_properties_type.py +7 -0
- benchling_v3_sdk/types/object_link_cell_evaluation_value.py +38 -0
- benchling_v3_sdk/types/object_link_list_value.py +32 -0
- benchling_v3_sdk/types/object_link_value.py +32 -0
- benchling_v3_sdk/types/object_ref.py +24 -0
- benchling_v3_sdk/types/oligo_annotation_input.py +59 -0
- benchling_v3_sdk/types/oligo_conjugate.py +125 -0
- benchling_v3_sdk/types/oligo_conjugate_create.py +100 -0
- benchling_v3_sdk/types/oligo_conjugate_create_naming_strategy.py +16 -0
- benchling_v3_sdk/types/oligo_conjugate_link_field_definition.py +74 -0
- benchling_v3_sdk/types/oligo_conjugate_link_field_definition_derivation_type.py +7 -0
- benchling_v3_sdk/types/oligo_conjugate_paginated_list.py +25 -0
- benchling_v3_sdk/types/oligo_conjugate_schema.py +98 -0
- benchling_v3_sdk/types/oligo_conjugate_schema_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/oligo_conjugate_schema_containable_type.py +5 -0
- benchling_v3_sdk/types/oligo_conjugate_schema_icon_id.py +19 -0
- benchling_v3_sdk/types/oligo_conjugate_schema_paginated_list.py +25 -0
- benchling_v3_sdk/types/oligo_conjugate_schema_ref.py +24 -0
- benchling_v3_sdk/types/oligo_conjugate_update_with_path_params.py +105 -0
- benchling_v3_sdk/types/oligo_conjugate_update_with_path_params_naming_strategy.py +16 -0
- benchling_v3_sdk/types/oligo_duplex.py +135 -0
- benchling_v3_sdk/types/oligo_duplex_create.py +112 -0
- benchling_v3_sdk/types/oligo_duplex_create_naming_strategy.py +16 -0
- benchling_v3_sdk/types/oligo_duplex_link_field_definition.py +74 -0
- benchling_v3_sdk/types/oligo_duplex_link_field_definition_derivation_type.py +7 -0
- benchling_v3_sdk/types/oligo_duplex_paginated_list.py +25 -0
- benchling_v3_sdk/types/oligo_duplex_schema.py +98 -0
- benchling_v3_sdk/types/oligo_duplex_schema_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/oligo_duplex_schema_containable_type.py +5 -0
- benchling_v3_sdk/types/oligo_duplex_schema_icon_id.py +7 -0
- benchling_v3_sdk/types/oligo_duplex_schema_paginated_list.py +25 -0
- benchling_v3_sdk/types/oligo_duplex_schema_ref.py +24 -0
- benchling_v3_sdk/types/oligo_duplex_update_with_path_params.py +117 -0
- benchling_v3_sdk/types/oligo_duplex_update_with_path_params_naming_strategy.py +16 -0
- benchling_v3_sdk/types/oligo_ref.py +24 -0
- benchling_v3_sdk/types/organization.py +45 -0
- benchling_v3_sdk/types/organization_paginated_list.py +25 -0
- benchling_v3_sdk/types/organization_ref.py +24 -0
- benchling_v3_sdk/types/owner_ref.py +24 -0
- benchling_v3_sdk/types/parameter_layer_input.py +30 -0
- benchling_v3_sdk/types/parameter_layer_input_field_type.py +5 -0
- benchling_v3_sdk/types/parameter_well_input.py +25 -0
- benchling_v3_sdk/types/parameter_well_input_value.py +5 -0
- benchling_v3_sdk/types/peptide_simple_polymer.py +40 -0
- benchling_v3_sdk/types/pipeline_ref.py +24 -0
- benchling_v3_sdk/types/pipeline_step.py +63 -0
- benchling_v3_sdk/types/pipeline_step_data.py +49 -0
- benchling_v3_sdk/types/pipeline_step_data_paginated_list.py +25 -0
- benchling_v3_sdk/types/pipeline_step_data_ref.py +24 -0
- benchling_v3_sdk/types/pipeline_step_data_unpaginated_list.py +20 -0
- benchling_v3_sdk/types/pipeline_step_paginated_list.py +25 -0
- benchling_v3_sdk/types/pipeline_step_ref.py +24 -0
- benchling_v3_sdk/types/pipeline_step_status_code.py +7 -0
- benchling_v3_sdk/types/pipeline_step_step_type.py +132 -0
- benchling_v3_sdk/types/pipeline_step_unpaginated_list.py +20 -0
- benchling_v3_sdk/types/pivot_transform.py +43 -0
- benchling_v3_sdk/types/pivot_transform_type.py +23 -0
- benchling_v3_sdk/types/pivot_transformation_properties.py +37 -0
- benchling_v3_sdk/types/plate.py +121 -0
- benchling_v3_sdk/types/plate_design_template.py +55 -0
- benchling_v3_sdk/types/plate_design_template_paginated_list.py +25 -0
- benchling_v3_sdk/types/plate_field_mapping.py +29 -0
- benchling_v3_sdk/types/plate_layout.py +38 -0
- benchling_v3_sdk/types/plate_layout_layout_type.py +16 -0
- benchling_v3_sdk/types/plate_paginated_list.py +25 -0
- benchling_v3_sdk/types/plate_record.py +79 -0
- benchling_v3_sdk/types/plate_record_layer.py +38 -0
- benchling_v3_sdk/types/plate_record_measurement_input.py +47 -0
- benchling_v3_sdk/types/plate_record_paginated_list.py +25 -0
- benchling_v3_sdk/types/plate_record_plate_reader_asm_input.py +23 -0
- benchling_v3_sdk/types/plate_record_ref.py +24 -0
- benchling_v3_sdk/types/plate_record_transfer_input.py +74 -0
- benchling_v3_sdk/types/plate_record_transfer_input_direction.py +5 -0
- benchling_v3_sdk/types/plate_record_transfer_input_layout.py +16 -0
- benchling_v3_sdk/types/plate_record_transfer_request_input.py +64 -0
- benchling_v3_sdk/types/plate_record_vendor_file_input.py +24 -0
- benchling_v3_sdk/types/plate_record_well_input.py +46 -0
- benchling_v3_sdk/types/plate_schema.py +66 -0
- benchling_v3_sdk/types/plate_schema_paginated_list.py +25 -0
- benchling_v3_sdk/types/plate_schema_plate_type.py +5 -0
- benchling_v3_sdk/types/plate_schema_ref.py +24 -0
- benchling_v3_sdk/types/plate_shape_transform.py +43 -0
- benchling_v3_sdk/types/plate_shape_transform_type.py +23 -0
- benchling_v3_sdk/types/plate_shape_transformation_properties.py +68 -0
- benchling_v3_sdk/types/policy.py +51 -0
- benchling_v3_sdk/types/policy_paginated_list.py +25 -0
- benchling_v3_sdk/types/policy_policy_type.py +5 -0
- benchling_v3_sdk/types/policy_ref.py +24 -0
- benchling_v3_sdk/types/policy_statement.py +38 -0
- benchling_v3_sdk/types/policy_statement_action.py +54 -0
- benchling_v3_sdk/types/policy_statement_condition.py +5 -0
- benchling_v3_sdk/types/policy_statement_item_type.py +74 -0
- benchling_v3_sdk/types/prediction_batch.py +64 -0
- benchling_v3_sdk/types/prediction_batch_input.py +37 -0
- benchling_v3_sdk/types/prediction_batch_job_config_input.py +20 -0
- benchling_v3_sdk/types/prediction_batch_paginated_list.py +25 -0
- benchling_v3_sdk/types/prediction_batch_ref.py +24 -0
- benchling_v3_sdk/types/prediction_batch_status.py +7 -0
- benchling_v3_sdk/types/prediction_job.py +54 -0
- benchling_v3_sdk/types/prediction_job_paginated_list.py +25 -0
- benchling_v3_sdk/types/prediction_job_status.py +7 -0
- benchling_v3_sdk/types/primer.py +91 -0
- benchling_v3_sdk/types/primer_bind_position_input.py +54 -0
- benchling_v3_sdk/types/primer_bind_position_input_location_type.py +5 -0
- benchling_v3_sdk/types/primer_input.py +43 -0
- benchling_v3_sdk/types/primer_input_strand.py +5 -0
- benchling_v3_sdk/types/primer_paginated_list.py +25 -0
- benchling_v3_sdk/types/primer_start_end_input.py +42 -0
- benchling_v3_sdk/types/primer_start_end_input_location_type.py +5 -0
- benchling_v3_sdk/types/primer_strand.py +5 -0
- benchling_v3_sdk/types/principal.py +10 -0
- benchling_v3_sdk/types/principal_collaborator_info.py +29 -0
- benchling_v3_sdk/types/principal_collaborator_input.py +28 -0
- benchling_v3_sdk/types/principal_ref.py +24 -0
- benchling_v3_sdk/types/principal_unpaginated_list.py +20 -0
- benchling_v3_sdk/types/printer.py +78 -0
- benchling_v3_sdk/types/printer_paginated_list.py +25 -0
- benchling_v3_sdk/types/procedure.py +103 -0
- benchling_v3_sdk/types/procedure_data_parameter_setting.py +33 -0
- benchling_v3_sdk/types/procedure_edge.py +38 -0
- benchling_v3_sdk/types/procedure_edge_type.py +5 -0
- benchling_v3_sdk/types/procedure_equipment_setting.py +33 -0
- benchling_v3_sdk/types/procedure_execution_step_group.py +33 -0
- benchling_v3_sdk/types/procedure_execution_step_group_group.py +5 -0
- benchling_v3_sdk/types/procedure_flowchart.py +45 -0
- benchling_v3_sdk/types/procedure_flowchart_config_version_proxy.py +42 -0
- benchling_v3_sdk/types/procedure_flowchart_config_version_proxy_paginated_list.py +25 -0
- benchling_v3_sdk/types/procedure_flowchart_config_version_proxy_ref.py +24 -0
- benchling_v3_sdk/types/procedure_flowchart_paginated_list.py +25 -0
- benchling_v3_sdk/types/procedure_flowchart_parent_ref.py +24 -0
- benchling_v3_sdk/types/procedure_flowchart_ref.py +24 -0
- benchling_v3_sdk/types/procedure_material_input_setting.py +33 -0
- benchling_v3_sdk/types/procedure_material_output_setting.py +31 -0
- benchling_v3_sdk/types/procedure_method_definition_version.py +73 -0
- benchling_v3_sdk/types/procedure_method_definition_version_paginated_list.py +25 -0
- benchling_v3_sdk/types/procedure_method_definition_version_ref.py +24 -0
- benchling_v3_sdk/types/procedure_method_definition_version_unpaginated_list.py +20 -0
- benchling_v3_sdk/types/procedure_method_execution_instance.py +156 -0
- benchling_v3_sdk/types/procedure_method_execution_instance_association.py +50 -0
- benchling_v3_sdk/types/procedure_method_execution_instance_association_paginated_list.py +25 -0
- benchling_v3_sdk/types/procedure_method_execution_instance_association_upsert.py +30 -0
- benchling_v3_sdk/types/procedure_method_execution_instance_paginated_list.py +25 -0
- benchling_v3_sdk/types/procedure_method_execution_instance_ref.py +24 -0
- benchling_v3_sdk/types/procedure_method_execution_instance_unpaginated_list.py +20 -0
- benchling_v3_sdk/types/procedure_paginated_list.py +25 -0
- benchling_v3_sdk/types/procedure_parameter.py +49 -0
- benchling_v3_sdk/types/procedure_parameter_confirmation_value.py +69 -0
- benchling_v3_sdk/types/procedure_parameter_confirmation_value_paginated_list.py +25 -0
- benchling_v3_sdk/types/procedure_parameter_confirmation_value_unpaginated_list.py +20 -0
- benchling_v3_sdk/types/procedure_parameter_data_type.py +41 -0
- benchling_v3_sdk/types/procedure_parameter_measured_value.py +61 -0
- benchling_v3_sdk/types/procedure_parameter_measured_value_paginated_list.py +25 -0
- benchling_v3_sdk/types/procedure_parameter_measured_value_unpaginated_list.py +20 -0
- benchling_v3_sdk/types/procedure_parameter_paginated_list.py +25 -0
- benchling_v3_sdk/types/procedure_parameter_parameter_type.py +7 -0
- benchling_v3_sdk/types/procedure_parameter_planned_value.py +64 -0
- benchling_v3_sdk/types/procedure_parameter_planned_value_paginated_list.py +25 -0
- benchling_v3_sdk/types/procedure_parameter_planned_value_ref.py +24 -0
- benchling_v3_sdk/types/procedure_parameter_planned_value_unpaginated_list.py +20 -0
- benchling_v3_sdk/types/procedure_parameter_ref.py +24 -0
- benchling_v3_sdk/types/procedure_parameter_value_linked_plate_well.py +43 -0
- benchling_v3_sdk/types/procedure_parameter_version.py +70 -0
- benchling_v3_sdk/types/procedure_parameter_version_confirmation_method.py +5 -0
- benchling_v3_sdk/types/procedure_parameter_version_paginated_list.py +25 -0
- benchling_v3_sdk/types/procedure_parameter_version_ref.py +24 -0
- benchling_v3_sdk/types/procedure_procedure_type.py +5 -0
- benchling_v3_sdk/types/procedure_ref.py +24 -0
- benchling_v3_sdk/types/procedure_run.py +80 -0
- benchling_v3_sdk/types/procedure_run_condition.py +77 -0
- benchling_v3_sdk/types/procedure_run_condition_paginated_list.py +25 -0
- benchling_v3_sdk/types/procedure_run_condition_ref.py +24 -0
- benchling_v3_sdk/types/procedure_run_condition_replicate.py +62 -0
- benchling_v3_sdk/types/procedure_run_condition_replicate_paginated_list.py +25 -0
- benchling_v3_sdk/types/procedure_run_condition_replicate_ref.py +24 -0
- benchling_v3_sdk/types/procedure_run_condition_replicate_unpaginated_list.py +20 -0
- benchling_v3_sdk/types/procedure_run_condition_unpaginated_list.py +20 -0
- benchling_v3_sdk/types/procedure_run_paginated_list.py +25 -0
- benchling_v3_sdk/types/procedure_run_plan.py +76 -0
- benchling_v3_sdk/types/procedure_run_plan_condition.py +100 -0
- benchling_v3_sdk/types/procedure_run_plan_condition_paginated_list.py +25 -0
- benchling_v3_sdk/types/procedure_run_plan_condition_ref.py +24 -0
- benchling_v3_sdk/types/procedure_run_plan_condition_replicate.py +67 -0
- benchling_v3_sdk/types/procedure_run_plan_condition_replicate_input.py +43 -0
- benchling_v3_sdk/types/procedure_run_plan_condition_unpaginated_list.py +20 -0
- benchling_v3_sdk/types/procedure_run_plan_data_entry_mode.py +7 -0
- benchling_v3_sdk/types/procedure_run_plan_paginated_list.py +25 -0
- benchling_v3_sdk/types/procedure_run_plan_ref.py +24 -0
- benchling_v3_sdk/types/procedure_run_procedure_type.py +5 -0
- benchling_v3_sdk/types/procedure_run_ref.py +24 -0
- benchling_v3_sdk/types/procedure_step_definition_version.py +38 -0
- benchling_v3_sdk/types/procedure_step_definition_version_paginated_list.py +25 -0
- benchling_v3_sdk/types/procedure_step_definition_version_ref.py +24 -0
- benchling_v3_sdk/types/procedure_step_execution_instance.py +59 -0
- benchling_v3_sdk/types/procedure_step_execution_instance_paginated_list.py +25 -0
- benchling_v3_sdk/types/procedure_step_execution_instance_ref.py +24 -0
- benchling_v3_sdk/types/procedure_step_group.py +33 -0
- benchling_v3_sdk/types/procedure_step_group_group.py +5 -0
- benchling_v3_sdk/types/product_component.py +79 -0
- benchling_v3_sdk/types/product_component_calculation_base.py +5 -0
- benchling_v3_sdk/types/product_component_linked_molecule.py +8 -0
- benchling_v3_sdk/types/product_component_role.py +7 -0
- benchling_v3_sdk/types/project.py +76 -0
- benchling_v3_sdk/types/project_created_webhook_envelope_v3.py +25 -0
- benchling_v3_sdk/types/project_created_webhook_v3.py +64 -0
- benchling_v3_sdk/types/project_created_webhook_v3type.py +5 -0
- benchling_v3_sdk/types/project_paginated_list.py +25 -0
- benchling_v3_sdk/types/project_ref.py +24 -0
- benchling_v3_sdk/types/project_updated_webhook_envelope_v3.py +25 -0
- benchling_v3_sdk/types/project_updated_webhook_v3.py +69 -0
- benchling_v3_sdk/types/project_updated_webhook_v3type.py +5 -0
- benchling_v3_sdk/types/promote_procedure_run_plan_output.py +24 -0
- benchling_v3_sdk/types/promoted_procedure_run_item.py +31 -0
- benchling_v3_sdk/types/protein.py +167 -0
- benchling_v3_sdk/types/protein_chain.py +64 -0
- benchling_v3_sdk/types/protein_chain_input.py +33 -0
- benchling_v3_sdk/types/protein_chain_name_template_part_configuration.py +31 -0
- benchling_v3_sdk/types/protein_chain_name_template_part_configuration_input.py +19 -0
- benchling_v3_sdk/types/protein_chain_type.py +5 -0
- benchling_v3_sdk/types/protein_domain.py +59 -0
- benchling_v3_sdk/types/protein_domain_input.py +33 -0
- benchling_v3_sdk/types/protein_domain_name_template_part_configuration.py +33 -0
- benchling_v3_sdk/types/protein_domain_name_template_part_configuration_input.py +19 -0
- benchling_v3_sdk/types/protein_domain_type.py +30 -0
- benchling_v3_sdk/types/protein_format.py +138 -0
- benchling_v3_sdk/types/protein_format_chain.py +60 -0
- benchling_v3_sdk/types/protein_format_chain_position.py +54 -0
- benchling_v3_sdk/types/protein_format_chain_position_type.py +7 -0
- benchling_v3_sdk/types/protein_format_chain_type.py +5 -0
- benchling_v3_sdk/types/protein_format_domain.py +55 -0
- benchling_v3_sdk/types/protein_format_domain_position.py +47 -0
- benchling_v3_sdk/types/protein_format_domain_position_type.py +30 -0
- benchling_v3_sdk/types/protein_format_domain_type.py +30 -0
- benchling_v3_sdk/types/protein_format_paginated_list.py +25 -0
- benchling_v3_sdk/types/protein_format_ref.py +24 -0
- benchling_v3_sdk/types/protein_paginated_list.py +25 -0
- benchling_v3_sdk/types/protein_ref.py +24 -0
- benchling_v3_sdk/types/protein_schema.py +130 -0
- benchling_v3_sdk/types/protein_schema_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/protein_schema_containable_type.py +5 -0
- benchling_v3_sdk/types/protein_schema_icon_id.py +5 -0
- benchling_v3_sdk/types/protein_schema_paginated_list.py +25 -0
- benchling_v3_sdk/types/protein_schema_ref.py +24 -0
- benchling_v3_sdk/types/protein_version.py +90 -0
- benchling_v3_sdk/types/protein_version_paginated_list.py +25 -0
- benchling_v3_sdk/types/protein_version_ref.py +24 -0
- benchling_v3_sdk/types/public_data_chat_source_input.py +20 -0
- benchling_v3_sdk/types/public_data_chat_source_input_type.py +5 -0
- benchling_v3_sdk/types/put_plate_record_in_inventory_input.py +110 -0
- benchling_v3_sdk/types/quantity_input.py +21 -0
- benchling_v3_sdk/types/range_coordinates.py +43 -0
- benchling_v3_sdk/types/reactant_component.py +79 -0
- benchling_v3_sdk/types/reactant_component_calculation_base.py +5 -0
- benchling_v3_sdk/types/reactant_component_linked_molecule.py +8 -0
- benchling_v3_sdk/types/reactant_component_role.py +7 -0
- benchling_v3_sdk/types/reaction.py +51 -0
- benchling_v3_sdk/types/reaction_components_item.py +9 -0
- benchling_v3_sdk/types/reaction_paginated_list.py +25 -0
- benchling_v3_sdk/types/regions_list_item.py +41 -0
- benchling_v3_sdk/types/registration_origin.py +38 -0
- benchling_v3_sdk/types/registration_structured_table_document_content.py +27 -0
- benchling_v3_sdk/types/registry.py +54 -0
- benchling_v3_sdk/types/registry_paginated_list.py +25 -0
- benchling_v3_sdk/types/registry_ref.py +24 -0
- benchling_v3_sdk/types/remove_quotes_transform.py +44 -0
- benchling_v3_sdk/types/remove_quotes_transform_type.py +23 -0
- benchling_v3_sdk/types/request_v2definition.py +78 -0
- benchling_v3_sdk/types/request_v2definition_paginated_list.py +25 -0
- benchling_v3_sdk/types/request_v2definition_ref.py +24 -0
- benchling_v3_sdk/types/request_v2submission.py +80 -0
- benchling_v3_sdk/types/request_v2submission_paginated_list.py +25 -0
- benchling_v3_sdk/types/request_v2submission_ref.py +24 -0
- benchling_v3_sdk/types/request_v2submission_status.py +7 -0
- benchling_v3_sdk/types/resource_app_config_spec.py +36 -0
- benchling_v3_sdk/types/resource_app_config_spec_type.py +46 -0
- benchling_v3_sdk/types/resource_app_config_value.py +33 -0
- benchling_v3_sdk/types/resource_app_config_value_type.py +46 -0
- benchling_v3_sdk/types/result.py +83 -0
- benchling_v3_sdk/types/result_paginated_list.py +25 -0
- benchling_v3_sdk/types/result_ref.py +24 -0
- benchling_v3_sdk/types/result_schema.py +69 -0
- benchling_v3_sdk/types/result_schema_paginated_list.py +25 -0
- benchling_v3_sdk/types/result_schema_ref.py +24 -0
- benchling_v3_sdk/types/results_structured_table_document_content.py +27 -0
- benchling_v3_sdk/types/review.py +108 -0
- benchling_v3_sdk/types/review_change.py +76 -0
- benchling_v3_sdk/types/review_change_action.py +22 -0
- benchling_v3_sdk/types/review_change_paginated_list.py +25 -0
- benchling_v3_sdk/types/review_paginated_list.py +25 -0
- benchling_v3_sdk/types/review_process.py +81 -0
- benchling_v3_sdk/types/review_process_paginated_list.py +25 -0
- benchling_v3_sdk/types/review_process_ref.py +24 -0
- benchling_v3_sdk/types/review_process_stage.py +128 -0
- benchling_v3_sdk/types/review_process_stage_action.py +7 -0
- benchling_v3_sdk/types/review_process_stage_paginated_list.py +25 -0
- benchling_v3_sdk/types/review_process_stage_ref.py +24 -0
- benchling_v3_sdk/types/review_process_stage_reviewer_type.py +5 -0
- benchling_v3_sdk/types/review_process_unpaginated_list.py +20 -0
- benchling_v3_sdk/types/review_process_version.py +60 -0
- benchling_v3_sdk/types/review_process_version_process_type.py +5 -0
- benchling_v3_sdk/types/review_process_version_terminal_state.py +7 -0
- benchling_v3_sdk/types/review_ref.py +24 -0
- benchling_v3_sdk/types/review_snapshot.py +51 -0
- benchling_v3_sdk/types/review_snapshot_status.py +5 -0
- benchling_v3_sdk/types/review_status.py +17 -0
- benchling_v3_sdk/types/reviewer.py +59 -0
- benchling_v3_sdk/types/reviewer_reviewer_status.py +5 -0
- benchling_v3_sdk/types/rna_annotation_input.py +59 -0
- benchling_v3_sdk/types/rna_oligo.py +161 -0
- benchling_v3_sdk/types/rna_oligo_created_webhook_envelope_v3.py +25 -0
- benchling_v3_sdk/types/rna_oligo_created_webhook_v3.py +64 -0
- benchling_v3_sdk/types/rna_oligo_created_webhook_v3type.py +5 -0
- benchling_v3_sdk/types/rna_oligo_link_field_definition.py +81 -0
- benchling_v3_sdk/types/rna_oligo_link_field_definition_derivation_type.py +5 -0
- benchling_v3_sdk/types/rna_oligo_paginated_list.py +25 -0
- benchling_v3_sdk/types/rna_oligo_schema.py +107 -0
- benchling_v3_sdk/types/rna_oligo_schema_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/rna_oligo_schema_containable_type.py +5 -0
- benchling_v3_sdk/types/rna_oligo_schema_icon_id.py +7 -0
- benchling_v3_sdk/types/rna_oligo_schema_paginated_list.py +25 -0
- benchling_v3_sdk/types/rna_oligo_schema_ref.py +24 -0
- benchling_v3_sdk/types/rna_oligo_updated_webhook_envelope_v3.py +25 -0
- benchling_v3_sdk/types/rna_oligo_updated_webhook_v3.py +69 -0
- benchling_v3_sdk/types/rna_oligo_updated_webhook_v3type.py +5 -0
- benchling_v3_sdk/types/rna_part.py +68 -0
- benchling_v3_sdk/types/rna_part_input.py +38 -0
- benchling_v3_sdk/types/rna_part_link_field_definition.py +68 -0
- benchling_v3_sdk/types/rna_part_link_field_definition_derivation_type.py +5 -0
- benchling_v3_sdk/types/rna_part_paginated_list.py +25 -0
- benchling_v3_sdk/types/rna_part_strand.py +5 -0
- benchling_v3_sdk/types/rna_sequence.py +172 -0
- benchling_v3_sdk/types/rna_sequence_created_webhook_envelope_v3.py +25 -0
- benchling_v3_sdk/types/rna_sequence_created_webhook_v3.py +64 -0
- benchling_v3_sdk/types/rna_sequence_created_webhook_v3type.py +5 -0
- benchling_v3_sdk/types/rna_sequence_link_field_definition.py +81 -0
- benchling_v3_sdk/types/rna_sequence_link_field_definition_derivation_type.py +7 -0
- benchling_v3_sdk/types/rna_sequence_paginated_list.py +25 -0
- benchling_v3_sdk/types/rna_sequence_ref.py +24 -0
- benchling_v3_sdk/types/rna_sequence_schema.py +107 -0
- benchling_v3_sdk/types/rna_sequence_schema_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/rna_sequence_schema_containable_type.py +5 -0
- benchling_v3_sdk/types/rna_sequence_schema_icon_id.py +7 -0
- benchling_v3_sdk/types/rna_sequence_schema_paginated_list.py +25 -0
- benchling_v3_sdk/types/rna_sequence_schema_ref.py +24 -0
- benchling_v3_sdk/types/rna_sequence_updated_webhook_envelope_v3.py +25 -0
- benchling_v3_sdk/types/rna_sequence_updated_webhook_v3.py +69 -0
- benchling_v3_sdk/types/rna_sequence_updated_webhook_v3type.py +5 -0
- benchling_v3_sdk/types/rna_translation_input.py +74 -0
- benchling_v3_sdk/types/rna_translation_input_genetic_code.py +34 -0
- benchling_v3_sdk/types/run.py +123 -0
- benchling_v3_sdk/types/run_created_webhook_envelope_v3.py +25 -0
- benchling_v3_sdk/types/run_created_webhook_v3.py +64 -0
- benchling_v3_sdk/types/run_created_webhook_v3type.py +5 -0
- benchling_v3_sdk/types/run_document_content.py +47 -0
- benchling_v3_sdk/types/run_paginated_list.py +25 -0
- benchling_v3_sdk/types/run_ref.py +24 -0
- benchling_v3_sdk/types/run_schema.py +156 -0
- benchling_v3_sdk/types/run_schema_paginated_list.py +25 -0
- benchling_v3_sdk/types/run_schema_ref.py +24 -0
- benchling_v3_sdk/types/salt.py +82 -0
- benchling_v3_sdk/types/salt_paginated_list.py +25 -0
- benchling_v3_sdk/types/schema_app_config_spec.py +42 -0
- benchling_v3_sdk/types/schema_app_config_spec_type.py +46 -0
- benchling_v3_sdk/types/schema_field_definition.py +81 -0
- benchling_v3_sdk/types/schema_field_definition_ref.py +24 -0
- benchling_v3_sdk/types/schema_field_definition_unpaginated_list.py +20 -0
- benchling_v3_sdk/types/schema_field_value.py +46 -0
- benchling_v3_sdk/types/schema_field_value_value.py +29 -0
- benchling_v3_sdk/types/schema_link_field_definition.py +70 -0
- benchling_v3_sdk/types/schema_link_field_definition_derivation_type.py +5 -0
- benchling_v3_sdk/types/schema_link_field_definition_type.py +39 -0
- benchling_v3_sdk/types/schema_set_field_definitions_output.py +33 -0
- benchling_v3_sdk/types/scratch_file.py +75 -0
- benchling_v3_sdk/types/scratch_file_paginated_list.py +25 -0
- benchling_v3_sdk/types/scratch_file_ref.py +24 -0
- benchling_v3_sdk/types/scratch_file_source_input.py +34 -0
- benchling_v3_sdk/types/scratch_file_source_input_type.py +5 -0
- benchling_v3_sdk/types/scratch_file_upload_status.py +7 -0
- benchling_v3_sdk/types/search_input_multi_value_ui_block.py +42 -0
- benchling_v3_sdk/types/search_input_multi_value_ui_block_input.py +35 -0
- benchling_v3_sdk/types/search_input_multi_value_ui_block_input_item_type.py +19 -0
- benchling_v3_sdk/types/search_input_multi_value_ui_block_input_type.py +5 -0
- benchling_v3_sdk/types/search_input_multi_value_ui_block_item_type.py +19 -0
- benchling_v3_sdk/types/search_input_ui_block.py +40 -0
- benchling_v3_sdk/types/search_input_ui_block_input.py +35 -0
- benchling_v3_sdk/types/search_input_ui_block_input_item_type.py +19 -0
- benchling_v3_sdk/types/search_input_ui_block_input_type.py +5 -0
- benchling_v3_sdk/types/search_input_ui_block_item_type.py +19 -0
- benchling_v3_sdk/types/section_content_input.py +34 -0
- benchling_v3_sdk/types/section_content_input_content_type.py +5 -0
- benchling_v3_sdk/types/section_document_content.py +43 -0
- benchling_v3_sdk/types/section_document_content_color.py +25 -0
- benchling_v3_sdk/types/section_ui_block.py +30 -0
- benchling_v3_sdk/types/section_ui_block_children_item.py +29 -0
- benchling_v3_sdk/types/section_ui_block_input.py +23 -0
- benchling_v3_sdk/types/section_ui_block_input_type.py +5 -0
- benchling_v3_sdk/types/secure_text_app_config_spec.py +31 -0
- benchling_v3_sdk/types/secure_text_app_config_value.py +29 -0
- benchling_v3_sdk/types/selector_input.py +46 -0
- benchling_v3_sdk/types/selector_input_multi_value_ui_block.py +34 -0
- benchling_v3_sdk/types/selector_input_multi_value_ui_block_input.py +27 -0
- benchling_v3_sdk/types/selector_input_multi_value_ui_block_input_type.py +5 -0
- benchling_v3_sdk/types/selector_input_ui_block.py +34 -0
- benchling_v3_sdk/types/selector_input_ui_block_input.py +27 -0
- benchling_v3_sdk/types/selector_input_ui_block_input_type.py +5 -0
- benchling_v3_sdk/types/service_principal.py +39 -0
- benchling_v3_sdk/types/service_principal_paginated_list.py +25 -0
- benchling_v3_sdk/types/single_transfer_input.py +41 -0
- benchling_v3_sdk/types/solvent.py +82 -0
- benchling_v3_sdk/types/solvent_paginated_list.py +25 -0
- benchling_v3_sdk/types/split_transform.py +43 -0
- benchling_v3_sdk/types/split_transform_type.py +23 -0
- benchling_v3_sdk/types/split_transformation_properties.py +46 -0
- benchling_v3_sdk/types/sql_dashboard.py +46 -0
- benchling_v3_sdk/types/sql_dashboard_block.py +40 -0
- benchling_v3_sdk/types/sql_dashboard_block_paginated_list.py +25 -0
- benchling_v3_sdk/types/sql_dashboard_block_unpaginated_list.py +20 -0
- benchling_v3_sdk/types/sql_dashboard_paginated_list.py +25 -0
- benchling_v3_sdk/types/stage_entry.py +148 -0
- benchling_v3_sdk/types/stage_entry_paginated_list.py +25 -0
- benchling_v3_sdk/types/standard_reaction_component.py +76 -0
- benchling_v3_sdk/types/standard_reaction_component_calculation_base.py +7 -0
- benchling_v3_sdk/types/standard_reaction_component_linked_molecule.py +8 -0
- benchling_v3_sdk/types/standard_reaction_component_role.py +7 -0
- benchling_v3_sdk/types/storable_link_field_definition.py +55 -0
- benchling_v3_sdk/types/storable_link_field_definition_derivation_type.py +5 -0
- benchling_v3_sdk/types/string_cell_evaluation_value.py +31 -0
- benchling_v3_sdk/types/string_value_filter_transformation_properties.py +43 -0
- benchling_v3_sdk/types/string_value_filter_transformation_properties_type.py +7 -0
- benchling_v3_sdk/types/structured_table_document_content.py +27 -0
- benchling_v3_sdk/types/study.py +92 -0
- benchling_v3_sdk/types/study_item_association.py +39 -0
- benchling_v3_sdk/types/study_item_association_paginated_list.py +25 -0
- benchling_v3_sdk/types/study_paginated_list.py +25 -0
- benchling_v3_sdk/types/study_phase.py +5 -0
- benchling_v3_sdk/types/study_ref.py +24 -0
- benchling_v3_sdk/types/study_schema.py +79 -0
- benchling_v3_sdk/types/study_schema_id_generation_mode.py +5 -0
- benchling_v3_sdk/types/study_schema_paginated_list.py +25 -0
- benchling_v3_sdk/types/study_schema_ref.py +24 -0
- benchling_v3_sdk/types/study_schema_study_type.py +7 -0
- benchling_v3_sdk/types/studyable_ref.py +24 -0
- benchling_v3_sdk/types/system_category_configuration.py +5 -0
- benchling_v3_sdk/types/system_category_configuration_input_base.py +28 -0
- benchling_v3_sdk/types/system_category_configuration_input_base_system_category_id.py +18 -0
- benchling_v3_sdk/types/system_category_link_field_definition.py +55 -0
- benchling_v3_sdk/types/system_category_link_field_definition_derivation_type.py +7 -0
- benchling_v3_sdk/types/table_cell.py +107 -0
- benchling_v3_sdk/types/table_cell_evaluation_value.py +25 -0
- benchling_v3_sdk/types/table_cell_format.py +80 -0
- benchling_v3_sdk/types/table_cell_format_alignment.py +5 -0
- benchling_v3_sdk/types/table_cell_format_input.py +45 -0
- benchling_v3_sdk/types/table_cell_format_properties_item.py +7 -0
- benchling_v3_sdk/types/table_cell_input_value.py +29 -0
- benchling_v3_sdk/types/table_cell_selector.py +48 -0
- benchling_v3_sdk/types/table_column_definition.py +45 -0
- benchling_v3_sdk/types/table_merge_range.py +50 -0
- benchling_v3_sdk/types/table_merge_range_input.py +26 -0
- benchling_v3_sdk/types/table_merge_range_parent_input.py +20 -0
- benchling_v3_sdk/types/table_row.py +48 -0
- benchling_v3_sdk/types/table_ui_block.py +33 -0
- benchling_v3_sdk/types/table_ui_block_input.py +34 -0
- benchling_v3_sdk/types/table_ui_block_input_type.py +5 -0
- benchling_v3_sdk/types/task_transition_extension.py +38 -0
- benchling_v3_sdk/types/team.py +60 -0
- benchling_v3_sdk/types/team_paginated_list.py +25 -0
- benchling_v3_sdk/types/team_ref.py +24 -0
- benchling_v3_sdk/types/template_collectible.py +14 -0
- benchling_v3_sdk/types/template_collectible_paginated_list.py +25 -0
- benchling_v3_sdk/types/template_collection.py +74 -0
- benchling_v3_sdk/types/template_collection_paginated_list.py +25 -0
- benchling_v3_sdk/types/template_collection_ref.py +24 -0
- benchling_v3_sdk/types/test_definition.py +94 -0
- benchling_v3_sdk/types/test_definition_paginated_list.py +25 -0
- benchling_v3_sdk/types/test_definition_ref.py +24 -0
- benchling_v3_sdk/types/test_order.py +139 -0
- benchling_v3_sdk/types/test_order_paginated_list.py +25 -0
- benchling_v3_sdk/types/test_order_status.py +7 -0
- benchling_v3_sdk/types/text_and_url_value.py +36 -0
- benchling_v3_sdk/types/text_app_config_spec.py +35 -0
- benchling_v3_sdk/types/text_app_config_value.py +28 -0
- benchling_v3_sdk/types/text_box_document_content.py +83 -0
- benchling_v3_sdk/types/text_box_document_content_submission_status.py +7 -0
- benchling_v3_sdk/types/text_content_input.py +51 -0
- benchling_v3_sdk/types/text_content_input_content_type.py +5 -0
- benchling_v3_sdk/types/text_document_content.py +54 -0
- benchling_v3_sdk/types/text_field_definition.py +52 -0
- benchling_v3_sdk/types/text_field_definition_derivation_type.py +5 -0
- benchling_v3_sdk/types/text_format.py +65 -0
- benchling_v3_sdk/types/text_format_input.py +59 -0
- benchling_v3_sdk/types/text_format_input_properties_item.py +7 -0
- benchling_v3_sdk/types/text_format_properties_item.py +7 -0
- benchling_v3_sdk/types/text_input_ui_block.py +33 -0
- benchling_v3_sdk/types/text_input_ui_block_input.py +26 -0
- benchling_v3_sdk/types/text_input_ui_block_input_type.py +5 -0
- benchling_v3_sdk/types/text_name_template_part_configuration.py +28 -0
- benchling_v3_sdk/types/text_name_template_part_configuration_input.py +19 -0
- benchling_v3_sdk/types/text_value.py +31 -0
- benchling_v3_sdk/types/text_value_input.py +21 -0
- benchling_v3_sdk/types/text_value_input_type.py +5 -0
- benchling_v3_sdk/types/transcription_link_field_definition.py +74 -0
- benchling_v3_sdk/types/transcription_link_field_definition_derivation_type.py +7 -0
- benchling_v3_sdk/types/transfer_output.py +29 -0
- benchling_v3_sdk/types/transfer_plate_records_result.py +54 -0
- benchling_v3_sdk/types/translation.py +133 -0
- benchling_v3_sdk/types/translation_genetic_code.py +34 -0
- benchling_v3_sdk/types/translation_input.py +80 -0
- benchling_v3_sdk/types/translation_input_genetic_code.py +34 -0
- benchling_v3_sdk/types/translation_input_strand.py +5 -0
- benchling_v3_sdk/types/translation_link_field_definition.py +68 -0
- benchling_v3_sdk/types/translation_link_field_definition_derivation_type.py +7 -0
- benchling_v3_sdk/types/translation_paginated_list.py +25 -0
- benchling_v3_sdk/types/translation_region_input.py +27 -0
- benchling_v3_sdk/types/translation_strand.py +5 -0
- benchling_v3_sdk/types/ui_block_leaf_node_input.py +46 -0
- benchling_v3_sdk/types/ui_block_leaf_node_input_item_type.py +19 -0
- benchling_v3_sdk/types/ui_block_leaf_node_input_type.py +20 -0
- benchling_v3_sdk/types/unit.py +61 -0
- benchling_v3_sdk/types/unit_input.py +23 -0
- benchling_v3_sdk/types/unit_paginated_list.py +25 -0
- benchling_v3_sdk/types/unit_ref.py +24 -0
- benchling_v3_sdk/types/unit_type.py +82 -0
- benchling_v3_sdk/types/unit_type_paginated_list.py +25 -0
- benchling_v3_sdk/types/unit_type_ref.py +24 -0
- benchling_v3_sdk/types/unit_type_term.py +35 -0
- benchling_v3_sdk/types/unit_type_term_value.py +7 -0
- benchling_v3_sdk/types/unit_unpaginated_list.py +20 -0
- benchling_v3_sdk/types/unresolvable_embedded_item.py +31 -0
- benchling_v3_sdk/types/unstructured_table_cell_input.py +55 -0
- benchling_v3_sdk/types/unstructured_table_column_input.py +29 -0
- benchling_v3_sdk/types/unstructured_table_content_input.py +55 -0
- benchling_v3_sdk/types/unstructured_table_content_input_content_type.py +5 -0
- benchling_v3_sdk/types/unstructured_table_document_content_detail.py +79 -0
- benchling_v3_sdk/types/unstructured_table_document_content_summary.py +68 -0
- benchling_v3_sdk/types/unstructured_table_row_input.py +23 -0
- benchling_v3_sdk/types/unsupported_cell_evaluation_value.py +37 -0
- benchling_v3_sdk/types/update_aa_monomer_input_with_path_params.py +48 -0
- benchling_v3_sdk/types/update_aa_part_link_field_definition_input.py +50 -0
- benchling_v3_sdk/types/update_aa_part_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_aa_sequence_input_with_path_params.py +118 -0
- benchling_v3_sdk/types/update_aa_sequence_input_with_path_params_naming_strategy.py +16 -0
- benchling_v3_sdk/types/update_aa_sequence_link_field_definition_input.py +50 -0
- benchling_v3_sdk/types/update_aa_sequence_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_aa_sequence_schema_input_with_path_params.py +135 -0
- benchling_v3_sdk/types/update_aa_sequence_schema_input_with_path_params_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/update_aa_sequence_schema_input_with_path_params_icon_id.py +7 -0
- benchling_v3_sdk/types/update_antibody_link_field_definition_input.py +50 -0
- benchling_v3_sdk/types/update_antibody_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_any_entity_link_field_definition_input.py +34 -0
- benchling_v3_sdk/types/update_any_entity_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_app_canvas_input_with_path_params.py +49 -0
- benchling_v3_sdk/types/update_app_session_input_with_path_params.py +44 -0
- benchling_v3_sdk/types/update_app_session_input_with_path_params_status.py +7 -0
- benchling_v3_sdk/types/update_assay_request_link_field_definition_input.py +37 -0
- benchling_v3_sdk/types/update_assay_request_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_assay_result_link_field_definition_input.py +37 -0
- benchling_v3_sdk/types/update_assay_result_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_assay_run_link_field_definition_input.py +37 -0
- benchling_v3_sdk/types/update_assay_run_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_blob_link_field_definition_input.py +34 -0
- benchling_v3_sdk/types/update_blob_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_boolean_field_definition_input.py +33 -0
- benchling_v3_sdk/types/update_boolean_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_box_input_with_path_params.py +39 -0
- benchling_v3_sdk/types/update_box_schema_input_with_path_params.py +86 -0
- benchling_v3_sdk/types/update_chart_input_with_path_params.py +26 -0
- benchling_v3_sdk/types/update_collaboration_input_with_path_params.py +27 -0
- benchling_v3_sdk/types/update_container_input_with_path_params.py +69 -0
- benchling_v3_sdk/types/update_container_input_with_path_params_restriction_status.py +7 -0
- benchling_v3_sdk/types/update_container_schema_input_with_path_params.py +64 -0
- benchling_v3_sdk/types/update_custom_entity_input_with_path_params.py +98 -0
- benchling_v3_sdk/types/update_custom_entity_input_with_path_params_naming_strategy.py +16 -0
- benchling_v3_sdk/types/update_custom_entity_link_field_definition_input.py +50 -0
- benchling_v3_sdk/types/update_custom_entity_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_custom_entity_schema_input_with_path_params.py +126 -0
- benchling_v3_sdk/types/update_custom_entity_schema_input_with_path_params_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/update_custom_entity_schema_input_with_path_params_icon_id.py +87 -0
- benchling_v3_sdk/types/update_date_field_definition_input.py +33 -0
- benchling_v3_sdk/types/update_date_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_date_time_field_definition_input.py +33 -0
- benchling_v3_sdk/types/update_date_time_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_dna_oligo_input_with_path_params.py +140 -0
- benchling_v3_sdk/types/update_dna_oligo_input_with_path_params_naming_strategy.py +16 -0
- benchling_v3_sdk/types/update_dna_oligo_link_field_definition_input.py +50 -0
- benchling_v3_sdk/types/update_dna_oligo_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_dna_oligo_schema_input_with_path_params.py +133 -0
- benchling_v3_sdk/types/update_dna_oligo_schema_input_with_path_params_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/update_dna_oligo_schema_input_with_path_params_icon_id.py +7 -0
- benchling_v3_sdk/types/update_dna_part_link_field_definition_input.py +50 -0
- benchling_v3_sdk/types/update_dna_part_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_dna_sequence_input_with_path_params.py +144 -0
- benchling_v3_sdk/types/update_dna_sequence_input_with_path_params_naming_strategy.py +16 -0
- benchling_v3_sdk/types/update_dna_sequence_link_field_definition_input.py +50 -0
- benchling_v3_sdk/types/update_dna_sequence_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_dna_sequence_schema_input_with_path_params.py +133 -0
- benchling_v3_sdk/types/update_dna_sequence_schema_input_with_path_params_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/update_dna_sequence_schema_input_with_path_params_icon_id.py +8 -0
- benchling_v3_sdk/types/update_document_parts_input.py +70 -0
- benchling_v3_sdk/types/update_document_parts_input_operation_type.py +5 -0
- benchling_v3_sdk/types/update_dropdown_input_with_path_params.py +35 -0
- benchling_v3_sdk/types/update_dropdown_input_with_path_params_options_item.py +8 -0
- benchling_v3_sdk/types/update_dropdown_link_field_definition_input.py +35 -0
- benchling_v3_sdk/types/update_dropdown_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_dropdown_option_input.py +26 -0
- benchling_v3_sdk/types/update_entry_input_with_path_params.py +109 -0
- benchling_v3_sdk/types/update_entry_link_field_definition_input.py +34 -0
- benchling_v3_sdk/types/update_entry_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_entry_schema_input_with_path_params.py +62 -0
- benchling_v3_sdk/types/update_enzyme_list_input_with_path_params.py +42 -0
- benchling_v3_sdk/types/update_equipment_link_field_definition_input.py +50 -0
- benchling_v3_sdk/types/update_equipment_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_equipment_schema_input_with_path_params.py +124 -0
- benchling_v3_sdk/types/update_equipment_schema_input_with_path_params_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/update_equipment_schema_input_with_path_params_icon_id.py +7 -0
- benchling_v3_sdk/types/update_feature_library_input_with_path_params.py +28 -0
- benchling_v3_sdk/types/update_feature_library_item_input_with_path_params.py +56 -0
- benchling_v3_sdk/types/update_field_value_input.py +25 -0
- benchling_v3_sdk/types/update_fieldset_input_with_path_params.py +86 -0
- benchling_v3_sdk/types/update_fieldset_input_with_path_params_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/update_fieldset_input_with_path_params_item_type.py +23 -0
- benchling_v3_sdk/types/update_fieldset_link_field_definition_input.py +50 -0
- benchling_v3_sdk/types/update_fieldset_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_file_input_with_path_params.py +29 -0
- benchling_v3_sdk/types/update_float_field_definition_input.py +45 -0
- benchling_v3_sdk/types/update_float_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_folder_input_with_path_params.py +27 -0
- benchling_v3_sdk/types/update_integer_field_definition_input.py +42 -0
- benchling_v3_sdk/types/update_integer_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_library_parameter_definition_input_with_path_params.py +34 -0
- benchling_v3_sdk/types/update_location_input_with_path_params.py +36 -0
- benchling_v3_sdk/types/update_location_schema_input_with_path_params.py +64 -0
- benchling_v3_sdk/types/update_long_text_field_definition_input.py +33 -0
- benchling_v3_sdk/types/update_long_text_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_matrix_plate_input_with_path_params.py +57 -0
- benchling_v3_sdk/types/update_matrix_plate_schema_input_with_path_params.py +96 -0
- benchling_v3_sdk/types/update_mixture_link_field_definition_input.py +50 -0
- benchling_v3_sdk/types/update_mixture_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_mixture_schema_input_with_path_params.py +165 -0
- benchling_v3_sdk/types/update_mixture_schema_input_with_path_params_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/update_mixture_schema_input_with_path_params_icon_id.py +8 -0
- benchling_v3_sdk/types/update_molecule_input_with_path_params.py +98 -0
- benchling_v3_sdk/types/update_molecule_input_with_path_params_naming_strategy.py +16 -0
- benchling_v3_sdk/types/update_molecule_link_field_definition_input.py +50 -0
- benchling_v3_sdk/types/update_molecule_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_molecule_schema_input_with_path_params.py +124 -0
- benchling_v3_sdk/types/update_molecule_schema_input_with_path_params_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/update_molecule_schema_input_with_path_params_icon_id.py +7 -0
- benchling_v3_sdk/types/update_oligo_conjugate_link_field_definition_input.py +50 -0
- benchling_v3_sdk/types/update_oligo_conjugate_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_oligo_conjugate_schema_input_with_path_params.py +128 -0
- benchling_v3_sdk/types/update_oligo_conjugate_schema_input_with_path_params_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/update_oligo_conjugate_schema_input_with_path_params_icon_id.py +19 -0
- benchling_v3_sdk/types/update_oligo_duplex_link_field_definition_input.py +50 -0
- benchling_v3_sdk/types/update_oligo_duplex_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_oligo_duplex_schema_input_with_path_params.py +124 -0
- benchling_v3_sdk/types/update_oligo_duplex_schema_input_with_path_params_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/update_oligo_duplex_schema_input_with_path_params_icon_id.py +7 -0
- benchling_v3_sdk/types/update_organization_input_with_path_params.py +23 -0
- benchling_v3_sdk/types/update_plate_design_template_input_with_path_params.py +26 -0
- benchling_v3_sdk/types/update_plate_record_input_with_path_params.py +63 -0
- benchling_v3_sdk/types/update_procedure_run_plan_condition_input_with_path_params.py +61 -0
- benchling_v3_sdk/types/update_procedure_run_plan_input_with_path_params.py +78 -0
- benchling_v3_sdk/types/update_procedure_run_plan_input_with_path_params_data_entry_mode.py +7 -0
- benchling_v3_sdk/types/update_project_input_with_path_params.py +39 -0
- benchling_v3_sdk/types/update_protein_format_input_with_path_params.py +33 -0
- benchling_v3_sdk/types/update_protein_input_with_path_params.py +108 -0
- benchling_v3_sdk/types/update_protein_input_with_path_params_naming_strategy.py +16 -0
- benchling_v3_sdk/types/update_protein_schema_input_with_path_params.py +116 -0
- benchling_v3_sdk/types/update_protein_schema_input_with_path_params_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/update_reaction_input_with_path_params.py +25 -0
- benchling_v3_sdk/types/update_request_v2definition_input_with_path_params.py +51 -0
- benchling_v3_sdk/types/update_result_input_with_path_params.py +31 -0
- benchling_v3_sdk/types/update_rna_oligo_input_with_path_params.py +140 -0
- benchling_v3_sdk/types/update_rna_oligo_input_with_path_params_naming_strategy.py +16 -0
- benchling_v3_sdk/types/update_rna_oligo_link_field_definition_input.py +50 -0
- benchling_v3_sdk/types/update_rna_oligo_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_rna_oligo_schema_input_with_path_params.py +133 -0
- benchling_v3_sdk/types/update_rna_oligo_schema_input_with_path_params_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/update_rna_oligo_schema_input_with_path_params_icon_id.py +7 -0
- benchling_v3_sdk/types/update_rna_part_link_field_definition_input.py +50 -0
- benchling_v3_sdk/types/update_rna_part_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_rna_sequence_input_with_path_params.py +161 -0
- benchling_v3_sdk/types/update_rna_sequence_input_with_path_params_naming_strategy.py +16 -0
- benchling_v3_sdk/types/update_rna_sequence_link_field_definition_input.py +50 -0
- benchling_v3_sdk/types/update_rna_sequence_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_rna_sequence_schema_input_with_path_params.py +133 -0
- benchling_v3_sdk/types/update_rna_sequence_schema_input_with_path_params_available_registration_naming_options_item.py +16 -0
- benchling_v3_sdk/types/update_rna_sequence_schema_input_with_path_params_icon_id.py +7 -0
- benchling_v3_sdk/types/update_salt_input_with_path_params.py +34 -0
- benchling_v3_sdk/types/update_scratch_file_input_with_path_params.py +30 -0
- benchling_v3_sdk/types/update_scratch_file_input_with_path_params_upload_status.py +7 -0
- benchling_v3_sdk/types/update_solvent_input_with_path_params.py +34 -0
- benchling_v3_sdk/types/update_sql_dashboard_block_input_with_path_params.py +42 -0
- benchling_v3_sdk/types/update_storable_link_field_definition_input.py +37 -0
- benchling_v3_sdk/types/update_storable_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_study_input_with_path_params.py +88 -0
- benchling_v3_sdk/types/update_study_input_with_path_params_phase.py +5 -0
- benchling_v3_sdk/types/update_study_schema_input_with_path_params.py +97 -0
- benchling_v3_sdk/types/update_study_schema_input_with_path_params_id_generation_mode.py +7 -0
- benchling_v3_sdk/types/update_system_category_link_field_definition_input.py +37 -0
- benchling_v3_sdk/types/update_system_category_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_test_definition_input_with_path_params.py +62 -0
- benchling_v3_sdk/types/update_text_field_definition_input.py +33 -0
- benchling_v3_sdk/types/update_text_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_transcription_link_field_definition_input.py +50 -0
- benchling_v3_sdk/types/update_transcription_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_translation_link_field_definition_input.py +50 -0
- benchling_v3_sdk/types/update_translation_link_field_definition_input_type.py +5 -0
- benchling_v3_sdk/types/update_unit_input_with_path_params.py +32 -0
- benchling_v3_sdk/types/update_unit_type_input_with_path_params.py +54 -0
- benchling_v3_sdk/types/update_user_input_with_path_params.py +24 -0
- benchling_v3_sdk/types/update_user_input_with_path_params_status.py +5 -0
- benchling_v3_sdk/types/update_warehouse_credential_input_with_path_params.py +23 -0
- benchling_v3_sdk/types/update_well_plate_input_with_path_params.py +60 -0
- benchling_v3_sdk/types/update_well_plate_schema_input_with_path_params.py +96 -0
- benchling_v3_sdk/types/update_workflow_output_input_with_path_params.py +30 -0
- benchling_v3_sdk/types/update_workflow_output_schema_input.py +22 -0
- benchling_v3_sdk/types/update_workflow_task_group_input_with_path_params.py +33 -0
- benchling_v3_sdk/types/update_workflow_task_input_with_path_params.py +69 -0
- benchling_v3_sdk/types/update_workflow_task_input_with_path_params_status.py +21 -0
- benchling_v3_sdk/types/update_workflow_task_schema_input_with_path_params.py +163 -0
- benchling_v3_sdk/types/update_worklist_input_with_path_params.py +48 -0
- benchling_v3_sdk/types/use_name_as_barcode_input.py +27 -0
- benchling_v3_sdk/types/use_name_as_barcode_input_barcode_mode.py +5 -0
- benchling_v3_sdk/types/user.py +48 -0
- benchling_v3_sdk/types/user_paginated_list.py +25 -0
- benchling_v3_sdk/types/user_ref.py +24 -0
- benchling_v3_sdk/types/user_status.py +5 -0
- benchling_v3_sdk/types/v3event_base.py +63 -0
- benchling_v3_sdk/types/v3event_base_stability.py +5 -0
- benchling_v3_sdk/types/v3update_event_base.py +27 -0
- benchling_v3_sdk/types/variable_pair.py +64 -0
- benchling_v3_sdk/types/warehouse_credential.py +77 -0
- benchling_v3_sdk/types/warehouse_credential_paginated_list.py +25 -0
- benchling_v3_sdk/types/warehouse_credential_ref.py +24 -0
- benchling_v3_sdk/types/warehouse_custom_view.py +50 -0
- benchling_v3_sdk/types/warehouse_custom_view_paginated_list.py +25 -0
- benchling_v3_sdk/types/webhook_app.py +26 -0
- benchling_v3_sdk/types/webhook_app_definition.py +39 -0
- benchling_v3_sdk/types/webhook_envelope_base_v0.py +53 -0
- benchling_v3_sdk/types/webhook_envelope_base_v0version.py +5 -0
- benchling_v3_sdk/types/well_plate.py +116 -0
- benchling_v3_sdk/types/well_plate_paginated_list.py +25 -0
- benchling_v3_sdk/types/well_plate_position.py +102 -0
- benchling_v3_sdk/types/well_plate_position_paginated_list.py +25 -0
- benchling_v3_sdk/types/well_plate_position_unpaginated_list.py +20 -0
- benchling_v3_sdk/types/well_plate_schema.py +135 -0
- benchling_v3_sdk/types/well_plate_schema_paginated_list.py +25 -0
- benchling_v3_sdk/types/well_plate_schema_ref.py +24 -0
- benchling_v3_sdk/types/well_role_input.py +21 -0
- benchling_v3_sdk/types/well_transfer_input.py +52 -0
- benchling_v3_sdk/types/workflow_output.py +90 -0
- benchling_v3_sdk/types/workflow_output_paginated_list.py +25 -0
- benchling_v3_sdk/types/workflow_output_schema.py +55 -0
- benchling_v3_sdk/types/workflow_output_schema_paginated_list.py +25 -0
- benchling_v3_sdk/types/workflow_output_schema_ref.py +24 -0
- benchling_v3_sdk/types/workflow_task.py +183 -0
- benchling_v3_sdk/types/workflow_task_execution_type.py +8 -0
- benchling_v3_sdk/types/workflow_task_group.py +134 -0
- benchling_v3_sdk/types/workflow_task_group_paginated_list.py +25 -0
- benchling_v3_sdk/types/workflow_task_group_ref.py +24 -0
- benchling_v3_sdk/types/workflow_task_paginated_list.py +25 -0
- benchling_v3_sdk/types/workflow_task_ref.py +24 -0
- benchling_v3_sdk/types/workflow_task_schema.py +183 -0
- benchling_v3_sdk/types/workflow_task_schema_app_config_spec.py +43 -0
- benchling_v3_sdk/types/workflow_task_schema_execution_type.py +8 -0
- benchling_v3_sdk/types/workflow_task_schema_paginated_list.py +25 -0
- benchling_v3_sdk/types/workflow_task_schema_ref.py +24 -0
- benchling_v3_sdk/types/workflow_task_status.py +21 -0
- benchling_v3_sdk/types/workflow_task_unpaginated_list.py +20 -0
- benchling_v3_sdk/types/worklist.py +51 -0
- benchling_v3_sdk/types/worklist_item_type.py +5 -0
- benchling_v3_sdk/types/worklist_paginated_list.py +25 -0
- benchling_v3_sdk/types/worklistable.py +41 -0
- benchling_v3_sdk/types/worklistable_unpaginated_list.py +20 -0
- benchling_v3_sdk/types/worksheet.py +61 -0
- benchling_v3_sdk/types/worksheet_paginated_list.py +25 -0
- benchling_v3_sdk/unit/__init__.py +38 -0
- benchling_v3_sdk/unit/client.py +996 -0
- benchling_v3_sdk/unit/raw_client.py +2050 -0
- benchling_v3_sdk/unit/types/__init__.py +40 -0
- benchling_v3_sdk/unit/types/batch_create_unit_response.py +20 -0
- benchling_v3_sdk/unit/types/batch_update_unit_response.py +20 -0
- benchling_v3_sdk/unit/types/list_unit_request_sort.py +7 -0
- benchling_v3_sdk/unit_type/__init__.py +38 -0
- benchling_v3_sdk/unit_type/client.py +1140 -0
- benchling_v3_sdk/unit_type/raw_client.py +2266 -0
- benchling_v3_sdk/unit_type/types/__init__.py +40 -0
- benchling_v3_sdk/unit_type/types/batch_create_unit_type_response.py +20 -0
- benchling_v3_sdk/unit_type/types/batch_update_unit_type_response.py +20 -0
- benchling_v3_sdk/unit_type/types/list_unit_type_request_sort.py +7 -0
- benchling_v3_sdk/user/__init__.py +39 -0
- benchling_v3_sdk/user/client.py +891 -0
- benchling_v3_sdk/user/raw_client.py +1951 -0
- benchling_v3_sdk/user/types/__init__.py +42 -0
- benchling_v3_sdk/user/types/batch_create_user_response.py +20 -0
- benchling_v3_sdk/user/types/batch_update_user_response.py +20 -0
- benchling_v3_sdk/user/types/list_user_request_sort.py +5 -0
- benchling_v3_sdk/user/types/update_user_input_status.py +5 -0
- benchling_v3_sdk/version.py +3 -0
- benchling_v3_sdk/warehouse_credential/__init__.py +37 -0
- benchling_v3_sdk/warehouse_credential/client.py +731 -0
- benchling_v3_sdk/warehouse_credential/raw_client.py +1533 -0
- benchling_v3_sdk/warehouse_credential/types/__init__.py +38 -0
- benchling_v3_sdk/warehouse_credential/types/batch_update_warehouse_credential_response.py +20 -0
- benchling_v3_sdk/warehouse_credential/types/list_warehouse_credential_request_sort.py +7 -0
- benchling_v3_sdk/warehouse_custom_view/__init__.py +34 -0
- benchling_v3_sdk/warehouse_custom_view/client.py +368 -0
- benchling_v3_sdk/warehouse_custom_view/raw_client.py +641 -0
- benchling_v3_sdk/warehouse_custom_view/types/__init__.py +36 -0
- benchling_v3_sdk/warehouse_custom_view/types/list_warehouse_custom_view_request_sort.py +7 -0
- benchling_v3_sdk/well_plate/__init__.py +38 -0
- benchling_v3_sdk/well_plate/client.py +1126 -0
- benchling_v3_sdk/well_plate/raw_client.py +2336 -0
- benchling_v3_sdk/well_plate/types/__init__.py +40 -0
- benchling_v3_sdk/well_plate/types/batch_create_well_plate_response.py +20 -0
- benchling_v3_sdk/well_plate/types/batch_update_well_plate_response.py +20 -0
- benchling_v3_sdk/well_plate/types/list_well_plate_request_sort.py +7 -0
- benchling_v3_sdk/well_plate_position/__init__.py +34 -0
- benchling_v3_sdk/well_plate_position/client.py +388 -0
- benchling_v3_sdk/well_plate_position/raw_client.py +673 -0
- benchling_v3_sdk/well_plate_position/types/__init__.py +34 -0
- benchling_v3_sdk/well_plate_position/types/list_well_plate_position_request_sort.py +7 -0
- benchling_v3_sdk/well_plate_schema/__init__.py +42 -0
- benchling_v3_sdk/well_plate_schema/client.py +1207 -0
- benchling_v3_sdk/well_plate_schema/raw_client.py +2382 -0
- benchling_v3_sdk/well_plate_schema/types/__init__.py +40 -0
- benchling_v3_sdk/well_plate_schema/types/batch_create_well_plate_schema_response.py +20 -0
- benchling_v3_sdk/well_plate_schema/types/batch_update_well_plate_schema_response.py +20 -0
- benchling_v3_sdk/well_plate_schema/types/list_well_plate_schema_request_sort.py +7 -0
- benchling_v3_sdk/workflow_output/__init__.py +42 -0
- benchling_v3_sdk/workflow_output/client.py +942 -0
- benchling_v3_sdk/workflow_output/raw_client.py +2027 -0
- benchling_v3_sdk/workflow_output/types/__init__.py +40 -0
- benchling_v3_sdk/workflow_output/types/batch_create_workflow_output_response.py +20 -0
- benchling_v3_sdk/workflow_output/types/batch_update_workflow_output_response.py +20 -0
- benchling_v3_sdk/workflow_output/types/list_workflow_output_request_sort.py +7 -0
- benchling_v3_sdk/workflow_output_schema/__init__.py +34 -0
- benchling_v3_sdk/workflow_output_schema/client.py +467 -0
- benchling_v3_sdk/workflow_output_schema/raw_client.py +870 -0
- benchling_v3_sdk/workflow_output_schema/types/__init__.py +36 -0
- benchling_v3_sdk/workflow_output_schema/types/list_workflow_output_schema_request_sort.py +7 -0
- benchling_v3_sdk/workflow_task/__init__.py +55 -0
- benchling_v3_sdk/workflow_task/client.py +1637 -0
- benchling_v3_sdk/workflow_task/raw_client.py +3182 -0
- benchling_v3_sdk/workflow_task/types/__init__.py +53 -0
- benchling_v3_sdk/workflow_task/types/batch_create_workflow_task_response.py +20 -0
- benchling_v3_sdk/workflow_task/types/batch_update_workflow_task_response.py +20 -0
- benchling_v3_sdk/workflow_task/types/list_child_tasks_workflow_task_request_sort.py +7 -0
- benchling_v3_sdk/workflow_task/types/list_workflow_outputs_workflow_task_request_sort.py +7 -0
- benchling_v3_sdk/workflow_task/types/list_workflow_task_request_sort.py +7 -0
- benchling_v3_sdk/workflow_task/types/update_workflow_task_input_status.py +21 -0
- benchling_v3_sdk/workflow_task_group/__init__.py +55 -0
- benchling_v3_sdk/workflow_task_group/client.py +1903 -0
- benchling_v3_sdk/workflow_task_group/raw_client.py +3617 -0
- benchling_v3_sdk/workflow_task_group/types/__init__.py +55 -0
- benchling_v3_sdk/workflow_task_group/types/batch_create_workflow_task_group_response.py +20 -0
- benchling_v3_sdk/workflow_task_group/types/batch_update_workflow_task_group_response.py +20 -0
- benchling_v3_sdk/workflow_task_group/types/list_child_workflow_task_groups_workflow_task_group_request_sort.py +7 -0
- benchling_v3_sdk/workflow_task_group/types/list_workflow_outputs_workflow_task_group_request_sort.py +7 -0
- benchling_v3_sdk/workflow_task_group/types/list_workflow_task_group_request_sort.py +7 -0
- benchling_v3_sdk/workflow_task_group/types/list_workflow_tasks_workflow_task_group_request_sort.py +7 -0
- benchling_v3_sdk/workflow_task_schema/__init__.py +64 -0
- benchling_v3_sdk/workflow_task_schema/client.py +1676 -0
- benchling_v3_sdk/workflow_task_schema/raw_client.py +3336 -0
- benchling_v3_sdk/workflow_task_schema/types/__init__.py +74 -0
- benchling_v3_sdk/workflow_task_schema/types/batch_create_workflow_task_schema_response.py +20 -0
- benchling_v3_sdk/workflow_task_schema/types/batch_update_workflow_task_schema_response.py +20 -0
- benchling_v3_sdk/workflow_task_schema/types/get_task_for_set_field_definitions_workflow_task_schema_response.py +25 -0
- benchling_v3_sdk/workflow_task_schema/types/get_task_for_set_field_definitions_workflow_task_schema_response_status.py +7 -0
- benchling_v3_sdk/workflow_task_schema/types/get_task_for_set_output_field_definitions_workflow_task_schema_response.py +25 -0
- benchling_v3_sdk/workflow_task_schema/types/get_task_for_set_output_field_definitions_workflow_task_schema_response_status.py +7 -0
- benchling_v3_sdk/workflow_task_schema/types/list_workflow_task_schema_request_sort.py +7 -0
- benchling_v3_sdk/workflow_task_schema/types/workflow_task_schema_set_field_definitions_input_field_definitions_item.py +123 -0
- benchling_v3_sdk/workflow_task_schema/types/workflow_task_schema_set_output_field_definitions_input_field_definitions_item.py +123 -0
- benchling_v3_sdk/worklist/__init__.py +52 -0
- benchling_v3_sdk/worklist/client.py +1176 -0
- benchling_v3_sdk/worklist/raw_client.py +2594 -0
- benchling_v3_sdk/worklist/types/__init__.py +50 -0
- benchling_v3_sdk/worklist/types/batch_create_worklist_response.py +20 -0
- benchling_v3_sdk/worklist/types/batch_delete_worklist_response.py +20 -0
- benchling_v3_sdk/worklist/types/batch_delete_worklist_response_items_item.py +19 -0
- benchling_v3_sdk/worklist/types/batch_update_worklist_response.py +20 -0
- benchling_v3_sdk/worklist/types/list_worklist_request_sort.py +7 -0
- benchling_v3_sdk/worksheet/__init__.py +34 -0
- benchling_v3_sdk/worksheet/client.py +572 -0
- benchling_v3_sdk/worksheet/raw_client.py +1115 -0
- benchling_v3_sdk/worksheet/types/__init__.py +34 -0
- benchling_v3_sdk/worksheet/types/list_worksheet_request_sort.py +7 -0
- benchling_v3_sdk_python-5.0.0.dist-info/LICENSE +201 -0
- benchling_v3_sdk_python-5.0.0.dist-info/METADATA +286 -0
- benchling_v3_sdk_python-5.0.0.dist-info/RECORD +2930 -0
- benchling_v3_sdk_python-5.0.0.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
# isort: skip_file
|
|
4
|
+
|
|
5
|
+
import typing
|
|
6
|
+
from importlib import import_module
|
|
7
|
+
|
|
8
|
+
if typing.TYPE_CHECKING:
|
|
9
|
+
from .list_worksheet_request_sort import ListWorksheetRequestSort
|
|
10
|
+
_dynamic_imports: typing.Dict[str, str] = {"ListWorksheetRequestSort": ".list_worksheet_request_sort"}
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
def __getattr__(attr_name: str) -> typing.Any:
|
|
14
|
+
module_name = _dynamic_imports.get(attr_name)
|
|
15
|
+
if module_name is None:
|
|
16
|
+
raise AttributeError(f"No {attr_name} found in _dynamic_imports for module name -> {__name__}")
|
|
17
|
+
try:
|
|
18
|
+
module = import_module(module_name, __package__)
|
|
19
|
+
if module_name == f".{attr_name}":
|
|
20
|
+
return module
|
|
21
|
+
else:
|
|
22
|
+
return getattr(module, attr_name)
|
|
23
|
+
except ImportError as e:
|
|
24
|
+
raise ImportError(f"Failed to import {attr_name} from {module_name}: {e}") from e
|
|
25
|
+
except AttributeError as e:
|
|
26
|
+
raise AttributeError(f"Failed to get {attr_name} from {module_name}: {e}") from e
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
def __dir__():
|
|
30
|
+
lazy_attrs = list(_dynamic_imports.keys())
|
|
31
|
+
return sorted(lazy_attrs)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
__all__ = ["ListWorksheetRequestSort"]
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright (c) 2026 Benchling.
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -0,0 +1,286 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: benchling-v3-sdk-python
|
|
3
|
+
Version: 5.0.0
|
|
4
|
+
Summary:
|
|
5
|
+
License: Apache-2.0
|
|
6
|
+
Keywords: benchling,v3,sdk,python,api
|
|
7
|
+
Requires-Python: >=3.10,<4.0
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
10
|
+
Classifier: Operating System :: MacOS
|
|
11
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: Operating System :: POSIX
|
|
14
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
15
|
+
Classifier: Programming Language :: Python
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.15
|
|
23
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
24
|
+
Classifier: Typing :: Typed
|
|
25
|
+
Provides-Extra: aiohttp
|
|
26
|
+
Requires-Dist: aiohttp (>=3.14.1,<4) ; (python_version >= "3.10") and (extra == "aiohttp")
|
|
27
|
+
Requires-Dist: httpx (>=0.21.2)
|
|
28
|
+
Requires-Dist: httpx-aiohttp (>=0.1.8,<0.2.0) ; (python_version >= "3.10") and (extra == "aiohttp")
|
|
29
|
+
Requires-Dist: jwcrypto (>=1.5.1,<2.0.0)
|
|
30
|
+
Requires-Dist: pydantic (>=1.9.2)
|
|
31
|
+
Requires-Dist: pydantic-core (>=2.18.2,<3.0.0)
|
|
32
|
+
Requires-Dist: typing_extensions (>=4.0.0)
|
|
33
|
+
Project-URL: Homepage, https://www.benchling.com
|
|
34
|
+
Project-URL: Repository, https://github.com/benchling/v3-rest-sdk-python
|
|
35
|
+
Description-Content-Type: text/markdown
|
|
36
|
+
|
|
37
|
+
# Benchling Python Library
|
|
38
|
+
|
|
39
|
+
[](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Fbenchling%2Fv3-rest-sdk-python)
|
|
40
|
+
[](https://pypi.python.org/pypi/benchling-v3-sdk-python)
|
|
41
|
+
|
|
42
|
+
The Benchling Python library provides convenient access to the Benchling APIs from Python.
|
|
43
|
+
|
|
44
|
+
## Table of Contents
|
|
45
|
+
|
|
46
|
+
- [Installation](#installation)
|
|
47
|
+
- [Reference](#reference)
|
|
48
|
+
- [Usage](#usage)
|
|
49
|
+
- [Environments](#environments)
|
|
50
|
+
- [Async Client](#async-client)
|
|
51
|
+
- [Exception Handling](#exception-handling)
|
|
52
|
+
- [Pagination](#pagination)
|
|
53
|
+
- [Oauth Token Override](#oauth-token-override)
|
|
54
|
+
- [Advanced](#advanced)
|
|
55
|
+
- [Access Raw Response Data](#access-raw-response-data)
|
|
56
|
+
- [Retries](#retries)
|
|
57
|
+
- [Timeouts](#timeouts)
|
|
58
|
+
- [Custom Client](#custom-client)
|
|
59
|
+
- [Contributing](#contributing)
|
|
60
|
+
|
|
61
|
+
## Installation
|
|
62
|
+
|
|
63
|
+
```sh
|
|
64
|
+
pip install benchling-v3-sdk-python
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
## Reference
|
|
68
|
+
|
|
69
|
+
A full reference for this library is available [here](https://github.com/benchling/v3-rest-sdk-python/blob/HEAD/./reference.md).
|
|
70
|
+
|
|
71
|
+
## Usage
|
|
72
|
+
|
|
73
|
+
Instantiate and use the client with the following:
|
|
74
|
+
|
|
75
|
+
```python
|
|
76
|
+
from benchling_v3_sdk import Benchling, AaMonomerChemicalStructureInput
|
|
77
|
+
|
|
78
|
+
client = Benchling(
|
|
79
|
+
client_id="<clientId>",
|
|
80
|
+
client_secret="<clientSecret>",
|
|
81
|
+
)
|
|
82
|
+
|
|
83
|
+
client.aa_monomer.create(
|
|
84
|
+
chemical_structure=AaMonomerChemicalStructureInput(
|
|
85
|
+
structure_format="smiles",
|
|
86
|
+
value="value",
|
|
87
|
+
),
|
|
88
|
+
name="name",
|
|
89
|
+
natural_analog="A",
|
|
90
|
+
symbol="symbol",
|
|
91
|
+
)
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
## Environments
|
|
95
|
+
|
|
96
|
+
This SDK allows you to configure different environments for API requests.
|
|
97
|
+
|
|
98
|
+
```python
|
|
99
|
+
from benchling_v3_sdk import Benchling
|
|
100
|
+
from benchling_v3_sdk.environment import BenchlingEnvironment
|
|
101
|
+
|
|
102
|
+
client = Benchling(
|
|
103
|
+
environment=BenchlingEnvironment.DEFAULT,
|
|
104
|
+
)
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
## Async Client
|
|
108
|
+
|
|
109
|
+
The SDK also exports an `async` client so that you can make non-blocking calls to our API. Note that if you are constructing an Async httpx client class to pass into this client, use `httpx.AsyncClient()` instead of `httpx.Client()` (e.g. for the `httpx_client` parameter of this client).
|
|
110
|
+
|
|
111
|
+
```python
|
|
112
|
+
import asyncio
|
|
113
|
+
|
|
114
|
+
from benchling_v3_sdk import AsyncBenchling
|
|
115
|
+
|
|
116
|
+
client = AsyncBenchling(
|
|
117
|
+
client_id="<clientId>",
|
|
118
|
+
client_secret="<clientSecret>",
|
|
119
|
+
)
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
async def main() -> None:
|
|
123
|
+
await client.aa_monomer.create(
|
|
124
|
+
chemical_structure=AaMonomerChemicalStructureInput(
|
|
125
|
+
structure_format="smiles",
|
|
126
|
+
value="value",
|
|
127
|
+
),
|
|
128
|
+
name="name",
|
|
129
|
+
natural_analog="A",
|
|
130
|
+
symbol="symbol",
|
|
131
|
+
)
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
asyncio.run(main())
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
## Exception Handling
|
|
138
|
+
|
|
139
|
+
When the API returns a non-success status code (4xx or 5xx response), a subclass of the following error
|
|
140
|
+
will be thrown.
|
|
141
|
+
|
|
142
|
+
```python
|
|
143
|
+
from benchling_v3_sdk.core.api_error import ApiError
|
|
144
|
+
|
|
145
|
+
try:
|
|
146
|
+
client.aa_monomer.create(...)
|
|
147
|
+
except ApiError as e:
|
|
148
|
+
print(e.status_code)
|
|
149
|
+
print(e.body)
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
## Pagination
|
|
153
|
+
|
|
154
|
+
Paginated requests will return a `SyncPager` or `AsyncPager`, which can be used as generators for the underlying object.
|
|
155
|
+
|
|
156
|
+
```python
|
|
157
|
+
from benchling_v3_sdk import Benchling
|
|
158
|
+
|
|
159
|
+
client = Benchling(
|
|
160
|
+
client_id="<clientId>",
|
|
161
|
+
client_secret="<clientSecret>",
|
|
162
|
+
)
|
|
163
|
+
|
|
164
|
+
client.aa_monomer.list()
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
```python
|
|
168
|
+
# You can also iterate through pages and access the typed response per page
|
|
169
|
+
pager = client.aa_monomer.list(...)
|
|
170
|
+
for page in pager.iter_pages():
|
|
171
|
+
print(page.response) # access the typed response for each page
|
|
172
|
+
for item in page:
|
|
173
|
+
print(item)
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
## Oauth Token Override
|
|
177
|
+
|
|
178
|
+
This SDK supports two authentication methods: OAuth client credentials flow (automatic token management) or direct bearer token authentication. You can choose between these options when initializing the client:
|
|
179
|
+
|
|
180
|
+
```python
|
|
181
|
+
from benchling_v3_sdk import Benchling
|
|
182
|
+
|
|
183
|
+
# Option 1: Direct bearer token (bypass OAuth flow)
|
|
184
|
+
client = Benchling(
|
|
185
|
+
...,
|
|
186
|
+
token="my-pre-generated-bearer-token",
|
|
187
|
+
)
|
|
188
|
+
|
|
189
|
+
# Option 2: OAuth client credentials flow (automatic token management)
|
|
190
|
+
client = Benchling(
|
|
191
|
+
...,
|
|
192
|
+
client_id="your-client-id",
|
|
193
|
+
client_secret="your-client-secret",
|
|
194
|
+
)
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
## Advanced
|
|
198
|
+
|
|
199
|
+
### Access Raw Response Data
|
|
200
|
+
|
|
201
|
+
The SDK provides access to raw response data, including headers, through the `.with_raw_response` property.
|
|
202
|
+
The `.with_raw_response` property returns a "raw" client that can be used to access the `.headers` and `.data` attributes.
|
|
203
|
+
|
|
204
|
+
```python
|
|
205
|
+
from benchling_v3_sdk import Benchling
|
|
206
|
+
|
|
207
|
+
client = Benchling(...)
|
|
208
|
+
response = client.aa_monomer.with_raw_response.create(...)
|
|
209
|
+
print(response.headers) # access the response headers
|
|
210
|
+
print(response.status_code) # access the response status code
|
|
211
|
+
print(response.data) # access the underlying object
|
|
212
|
+
```
|
|
213
|
+
|
|
214
|
+
### Retries
|
|
215
|
+
|
|
216
|
+
The SDK is instrumented with automatic retries with exponential backoff. A request will be retried as long
|
|
217
|
+
as the request is deemed retryable and the number of retry attempts has not grown larger than the configured
|
|
218
|
+
retry limit (default: 2).
|
|
219
|
+
|
|
220
|
+
Which status codes are retried depends on the `retryStatusCodes` generator configuration:
|
|
221
|
+
|
|
222
|
+
**`legacy`** (current default): retries on
|
|
223
|
+
- [408](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/408) (Timeout)
|
|
224
|
+
- [409](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/409) (Conflict)
|
|
225
|
+
- [429](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/429) (Too Many Requests)
|
|
226
|
+
- [5XX](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#server_error_responses) (All server errors, including 500)
|
|
227
|
+
|
|
228
|
+
**`recommended`**: retries on
|
|
229
|
+
- [408](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/408) (Timeout)
|
|
230
|
+
- [409](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/409) (Conflict)
|
|
231
|
+
- [429](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/429) (Too Many Requests)
|
|
232
|
+
- [502](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/502) (Bad Gateway)
|
|
233
|
+
- [503](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/503) (Service Unavailable)
|
|
234
|
+
- [504](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/504) (Gateway Timeout)
|
|
235
|
+
|
|
236
|
+
Use the `max_retries` request option to configure this behavior.
|
|
237
|
+
|
|
238
|
+
```python
|
|
239
|
+
client.aa_monomer.create(..., request_options={
|
|
240
|
+
"max_retries": 1
|
|
241
|
+
})
|
|
242
|
+
```
|
|
243
|
+
|
|
244
|
+
### Timeouts
|
|
245
|
+
|
|
246
|
+
The SDK defaults to a 60 second timeout. You can configure this with a timeout option at the client or request level.
|
|
247
|
+
|
|
248
|
+
```python
|
|
249
|
+
from benchling_v3_sdk import Benchling
|
|
250
|
+
|
|
251
|
+
client = Benchling(..., timeout=20.0)
|
|
252
|
+
|
|
253
|
+
# Override timeout for a specific method
|
|
254
|
+
client.aa_monomer.create(..., request_options={
|
|
255
|
+
"timeout": 1
|
|
256
|
+
})
|
|
257
|
+
```
|
|
258
|
+
|
|
259
|
+
### Custom Client
|
|
260
|
+
|
|
261
|
+
You can override the `httpx` client to customize it for your use-case. Some common use-cases include support for proxies
|
|
262
|
+
and transports.
|
|
263
|
+
|
|
264
|
+
```python
|
|
265
|
+
import httpx
|
|
266
|
+
from benchling_v3_sdk import Benchling
|
|
267
|
+
|
|
268
|
+
client = Benchling(
|
|
269
|
+
...,
|
|
270
|
+
httpx_client=httpx.Client(
|
|
271
|
+
proxy="http://my.test.proxy.example.com",
|
|
272
|
+
transport=httpx.HTTPTransport(local_address="0.0.0.0"),
|
|
273
|
+
),
|
|
274
|
+
)
|
|
275
|
+
```
|
|
276
|
+
|
|
277
|
+
## Contributing
|
|
278
|
+
|
|
279
|
+
While we value open-source contributions to this SDK, this library is generated programmatically.
|
|
280
|
+
Additions made directly to this library would have to be moved over to our generation code,
|
|
281
|
+
otherwise they would be overwritten upon the next generated release. Feel free to open a PR as
|
|
282
|
+
a proof of concept, but know that we will not be able to merge it as-is. We suggest opening
|
|
283
|
+
an issue first to discuss with us!
|
|
284
|
+
|
|
285
|
+
On the other hand, contributions to the README are always very welcome!
|
|
286
|
+
|