elabapi-python 5.5.11__tar.gz → 5.6.1__tar.gz
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.
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/PKG-INFO +1 -1
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/README.md +10 -3
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/__init__.py +7 -1
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/__init__.py +3 -1
- elabapi_python-5.6.1/elabapi_python/api/branding_api.py +247 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/containers_api.py +2 -2
- elabapi_python-5.5.11/elabapi_python/api/extra_fields_keys_api.py → elabapi_python-5.6.1/elabapi_python/api/custom_fields_keys_api.py +14 -14
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/experiments_api.py +9 -5
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/experiments_templates_api.py +9 -5
- elabapi_python-5.6.1/elabapi_python/api/instance_api.py +130 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/items_api.py +9 -5
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/items_types__resources_templates_api.py +9 -5
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/notifications_api.py +11 -3
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/storage_units_api.py +2 -2
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/teamgroups_api.py +3 -3
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api_client.py +1 -1
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/configuration.py +1 -1
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/__init__.py +4 -0
- elabapi_python-5.6.1/elabapi_python/models/all_ofentity_editable_metadatamerge.py +90 -0
- elabapi_python-5.6.1/elabapi_python/models/branding_id_body.py +147 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/containers_subid_body1.py +31 -3
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/entity_and_item_editable.py +93 -3
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/entity_editable.py +57 -1
- elabapi_python-5.6.1/elabapi_python/models/event.py +726 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/events_id_body.py +10 -10
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/id_experiments_categories_body.py +3 -31
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/id_experiments_status_body.py +3 -31
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/id_items_status_body.py +3 -31
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/id_resources_categories_body.py +3 -31
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/idp.py +53 -27
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/idps_body.py +59 -31
- elabapi_python-5.6.1/elabapi_python/models/instance_body.py +84 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/item.py +93 -3
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/item_editable.py +93 -3
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/metadata_elabftw.py +2 -2
- elabapi_python-5.6.1/elabapi_python/models/notifications_subid_body.py +118 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/statuslike.py +3 -29
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/storage_units_id_body.py +33 -6
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/team.py +31 -1
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python.egg-info/PKG-INFO +1 -1
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python.egg-info/SOURCES.txt +14 -2
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/setup.py +1 -1
- elabapi_python-5.6.1/test/test_all_ofentity_editable_metadatamerge.py +39 -0
- elabapi_python-5.6.1/test/test_branding_api.py +47 -0
- elabapi_python-5.6.1/test/test_branding_id_body.py +39 -0
- elabapi_python-5.5.11/test/test_extra_fields_keys_api.py → elabapi_python-5.6.1/test/test_custom_fields_keys_api.py +7 -7
- elabapi_python-5.6.1/test/test_instance_api.py +40 -0
- elabapi_python-5.6.1/test/test_instance_body.py +39 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_notifications_api.py +1 -1
- elabapi_python-5.6.1/test/test_notifications_subid_body.py +39 -0
- elabapi_python-5.5.11/elabapi_python/models/event.py +0 -428
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/api_keys_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/comments_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/compounds_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/config_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/d_space_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/events_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/experiments_categories_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/experiments_status_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/exports_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/favorite_tags_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/idps_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/idps_sources_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/import_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/info_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/links_to_compounds_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/links_to_experiments_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/links_to_items_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/reports_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/resources_categories_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/resources_status_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/revisions_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/steps_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/tags_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/team_tags_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/teams_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/todolist_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/unfinished_steps_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/uploads_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/user_uploads_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/users_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/any_ofuploads_subid_body1.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/apikey.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/apikeys_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/changelog.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/comment.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/compound.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/compound_create_request.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/compound_duplicate_request.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/compounds_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/compounds_links_subid_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/config.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/container.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/containers_subid_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/dspace_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/dspace_body1.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/dspace_entity.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/dspace_metadata.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/dspace_metadata1.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/entity.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/entity_duplicate.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/entity_template.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/entity_template_editable.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/error.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/event_id_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/eventid_delta.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/exclusive_edit_mode.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/experiment.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/experiments_links_subid_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/experiments_templates_id_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/export.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/exports_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/extra_fields_keys.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/favtags_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/id.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/id1.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/id2.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/id3.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/id4.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/id_certs_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/id_comments_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/id_endpoints_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/id_steps_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/id_tags_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/id_tags_body1.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/id_teamgroups_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/id_uploads_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/idp_cert.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/idp_endpoint.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/idp_source.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/idps_id_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/idps_sources_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/idps_sources_id_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/import_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/inline_response200.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/inline_response2001.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/inline_response20010.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/inline_response2001_experiments.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/inline_response2001_items.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/inline_response2001_users.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/inline_response2002.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/inline_response2003.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/inline_response2004.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/inline_response2004_query_parameters.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/inline_response2005.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/inline_response2006.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/inline_response2007.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/inline_response2008.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/inline_response2009.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/inline_response2009_embedded.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/inline_response2009_embedded_entries.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/items_links_subid_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/items_types_id_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/link.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/metadata.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/metadata_elabftw_extra_fields_groups.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/metadata_extra_fields.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/notification.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/patch_action.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/revision.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/revisions_subid_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/step.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/steps_subid_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/storage_unit.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/storage_units_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/tag.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/tags_subid_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/tags_subid_body1.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/teamgroup.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/teamgroup_users.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/teamgroups_subid_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/teams_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/teams_id_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/todoitem.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/todolist_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/todolist_id_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/unfinished_step.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/unfinished_steps.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/upload.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/uploads_subid_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/uploads_subid_body1.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/users.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/users_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/users_full.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/users_full_teams.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/models/users_id_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/rest.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python.egg-info/dependency_links.txt +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python.egg-info/requires.txt +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python.egg-info/top_level.txt +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/setup.cfg +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/__init__.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_any_ofuploads_subid_body1.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_api_keys_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_apikey.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_apikeys_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_changelog.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_comment.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_comments_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_compound.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_compound_create_request.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_compound_duplicate_request.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_compounds_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_compounds_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_compounds_links_subid_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_config.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_config_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_container.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_containers_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_containers_subid_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_containers_subid_body1.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_d_space_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_dspace_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_dspace_body1.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_dspace_entity.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_dspace_metadata.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_dspace_metadata1.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_entity.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_entity_and_item_editable.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_entity_duplicate.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_entity_editable.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_entity_template.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_entity_template_editable.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_error.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_event.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_event_id_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_eventid_delta.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_events_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_events_id_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_exclusive_edit_mode.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_experiment.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_experiments_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_experiments_categories_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_experiments_links_subid_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_experiments_status_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_experiments_templates_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_experiments_templates_id_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_export.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_exports_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_exports_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_extra_fields_keys.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_favorite_tags_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_favtags_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_id.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_id1.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_id2.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_id3.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_id4.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_id_certs_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_id_comments_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_id_endpoints_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_id_experiments_categories_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_id_experiments_status_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_id_items_status_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_id_resources_categories_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_id_steps_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_id_tags_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_id_tags_body1.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_id_teamgroups_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_id_uploads_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_idp.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_idp_cert.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_idp_endpoint.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_idp_source.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_idps_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_idps_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_idps_id_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_idps_sources_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_idps_sources_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_idps_sources_id_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_import_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_import_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_info_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_inline_response200.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_inline_response2001.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_inline_response20010.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_inline_response2001_experiments.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_inline_response2001_items.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_inline_response2001_users.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_inline_response2002.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_inline_response2003.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_inline_response2004.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_inline_response2004_query_parameters.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_inline_response2005.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_inline_response2006.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_inline_response2007.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_inline_response2008.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_inline_response2009.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_inline_response2009_embedded.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_inline_response2009_embedded_entries.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_item.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_item_editable.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_items_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_items_links_subid_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_items_types__resources_templates_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_items_types_id_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_link.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_links_to_compounds_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_links_to_experiments_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_links_to_items_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_metadata.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_metadata_elabftw.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_metadata_elabftw_extra_fields_groups.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_metadata_extra_fields.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_notification.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_patch_action.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_reports_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_resources_categories_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_resources_status_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_revision.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_revisions_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_revisions_subid_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_statuslike.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_step.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_steps_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_steps_subid_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_storage_unit.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_storage_units_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_storage_units_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_storage_units_id_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_tag.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_tags_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_tags_subid_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_tags_subid_body1.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_team.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_team_tags_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_teamgroup.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_teamgroup_users.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_teamgroups_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_teamgroups_subid_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_teams_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_teams_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_teams_id_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_todoitem.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_todolist_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_todolist_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_todolist_id_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_unfinished_step.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_unfinished_steps.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_unfinished_steps_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_upload.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_uploads_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_uploads_subid_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_uploads_subid_body1.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_user_uploads_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_users.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_users_api.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_users_body.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_users_full.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_users_full_teams.py +0 -0
- {elabapi_python-5.5.11 → elabapi_python-5.6.1}/test/test_users_id_body.py +0 -0
|
@@ -4,7 +4,7 @@ This document describes all available endpoints and methods for eLabFTW's API ve
|
|
|
4
4
|
This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
|
|
5
5
|
|
|
6
6
|
- API version: 2.0.0
|
|
7
|
-
- Package version: 5.
|
|
7
|
+
- Package version: 5.6.1
|
|
8
8
|
- Build package: io.swagger.codegen.v3.generators.python.PythonClientCodegen
|
|
9
9
|
|
|
10
10
|
## Requirements.
|
|
@@ -109,6 +109,8 @@ Class | Method | HTTP request | Description
|
|
|
109
109
|
*ApiKeysApi* | [**delete_apikey**](docs/ApiKeysApi.md#delete_apikey) | **DELETE** /apikeys/{id} | Delete an API key.
|
|
110
110
|
*ApiKeysApi* | [**get_apikeys**](docs/ApiKeysApi.md#get_apikeys) | **GET** /apikeys | Read API keys
|
|
111
111
|
*ApiKeysApi* | [**post_apikeys**](docs/ApiKeysApi.md#post_apikeys) | **POST** /apikeys | Create an API key
|
|
112
|
+
*BrandingApi* | [**get_instance_branding**](docs/BrandingApi.md#get_instance_branding) | **GET** /instance/branding/{id} | Read a branding asset as a binary file.
|
|
113
|
+
*BrandingApi* | [**post_instance_branding**](docs/BrandingApi.md#post_instance_branding) | **POST** /instance/branding/{id} | Update a branding asset.
|
|
112
114
|
*CommentsApi* | [**delete_entity_comment**](docs/CommentsApi.md#delete_entity_comment) | **DELETE** /{entity_type}/{id}/comments/{subid} | Delete an entity comment.
|
|
113
115
|
*CommentsApi* | [**patch_entity_comment**](docs/CommentsApi.md#patch_entity_comment) | **PATCH** /{entity_type}/{id}/comments/{subid} | Modify an entity comment.
|
|
114
116
|
*CommentsApi* | [**post_entity_comments**](docs/CommentsApi.md#post_entity_comments) | **POST** /{entity_type}/{id}/comments | Create a comment.
|
|
@@ -126,6 +128,7 @@ Class | Method | HTTP request | Description
|
|
|
126
128
|
*ContainersApi* | [**post_container**](docs/ContainersApi.md#post_container) | **POST** /{entity_type}/{id}/containers/{subid} | Create a container for this entity.
|
|
127
129
|
*ContainersApi* | [**read_container**](docs/ContainersApi.md#read_container) | **GET** /{entity_type}/{id}/containers/{subid} | Read a container.
|
|
128
130
|
*ContainersApi* | [**read_containers**](docs/ContainersApi.md#read_containers) | **GET** /{entity_type}/{id}/containers | Read all containers for this entity.
|
|
131
|
+
*CustomFieldsKeysApi* | [**custom_fields_keys**](docs/CustomFieldsKeysApi.md#custom_fields_keys) | **GET** /extra_fields_keys | Read custom fields keys.
|
|
129
132
|
*DSpaceApi* | [**dspace_create**](docs/DSpaceApi.md#dspace_create) | **POST** /dspace | Create a new DSpace workspace item.
|
|
130
133
|
*DSpaceApi* | [**dspace_read**](docs/DSpaceApi.md#dspace_read) | **GET** /dspace | Read DSpace information.
|
|
131
134
|
*DSpaceApi* | [**dspace_submit**](docs/DSpaceApi.md#dspace_submit) | **PATCH** /dspace | Submit an eLabFTW entry to DSpace.
|
|
@@ -160,7 +163,6 @@ Class | Method | HTTP request | Description
|
|
|
160
163
|
*ExportsApi* | [**post_export**](docs/ExportsApi.md#post_export) | **POST** /exports | Register an export request
|
|
161
164
|
*ExportsApi* | [**read_export**](docs/ExportsApi.md#read_export) | **GET** /exports/{id} | Get export
|
|
162
165
|
*ExportsApi* | [**readall_exports**](docs/ExportsApi.md#readall_exports) | **GET** /exports | List exports
|
|
163
|
-
*ExtraFieldsKeysApi* | [**extra_fields_keys**](docs/ExtraFieldsKeysApi.md#extra_fields_keys) | **GET** /extra_fields_keys | Read extra fields keys.
|
|
164
166
|
*FavoriteTagsApi* | [**delete_favtag**](docs/FavoriteTagsApi.md#delete_favtag) | **DELETE** /favtags/{id} | Unfavorite a tag.
|
|
165
167
|
*FavoriteTagsApi* | [**post_favtags**](docs/FavoriteTagsApi.md#post_favtags) | **POST** /favtags | Add a tag as favorite.
|
|
166
168
|
*FavoriteTagsApi* | [**read_favtags**](docs/FavoriteTagsApi.md#read_favtags) | **GET** /favtags | Read all favorite tags for the user.
|
|
@@ -185,6 +187,7 @@ Class | Method | HTTP request | Description
|
|
|
185
187
|
*ImportApi* | [**post_import**](docs/ImportApi.md#post_import) | **POST** /import | Send a file to import
|
|
186
188
|
*ImportApi* | [**read_import**](docs/ImportApi.md#read_import) | **GET** /import | Get information about this endpoint
|
|
187
189
|
*InfoApi* | [**get_info**](docs/InfoApi.md#get_info) | **GET** /info | Get information about the instance.
|
|
190
|
+
*InstanceApi* | [**post_instance**](docs/InstanceApi.md#post_instance) | **POST** /instance | Run an instance level action.
|
|
188
191
|
*ItemsApi* | [**delete_item**](docs/ItemsApi.md#delete_item) | **DELETE** /items/{id} | Delete an item.
|
|
189
192
|
*ItemsApi* | [**get_item**](docs/ItemsApi.md#get_item) | **GET** /items/{id} | Read an item
|
|
190
193
|
*ItemsApi* | [**patch_item**](docs/ItemsApi.md#patch_item) | **PATCH** /items/{id} | Modify an item
|
|
@@ -207,7 +210,7 @@ Class | Method | HTTP request | Description
|
|
|
207
210
|
*LinksToItemsApi* | [**post_entity_items_links**](docs/LinksToItemsApi.md#post_entity_items_links) | **POST** /{entity_type}/{id}/items_links/{subid} | Create or import a link.
|
|
208
211
|
*LinksToItemsApi* | [**read_entity_items_links**](docs/LinksToItemsApi.md#read_entity_items_links) | **GET** /{entity_type}/{id}/items_links | Read all items links of that entity.
|
|
209
212
|
*NotificationsApi* | [**delete_notifications**](docs/NotificationsApi.md#delete_notifications) | **DELETE** /users/{id}/notifications | Delete all notifications of the user.
|
|
210
|
-
*NotificationsApi* | [**patch_notification**](docs/NotificationsApi.md#patch_notification) | **PATCH** /users/{id}/notifications/{subid} |
|
|
213
|
+
*NotificationsApi* | [**patch_notification**](docs/NotificationsApi.md#patch_notification) | **PATCH** /users/{id}/notifications/{subid} | Update the acknowledgment status of a notification.
|
|
211
214
|
*NotificationsApi* | [**read_notification**](docs/NotificationsApi.md#read_notification) | **GET** /users/{id}/notifications/{subid} | Read a notification.
|
|
212
215
|
*NotificationsApi* | [**read_notifications**](docs/NotificationsApi.md#read_notifications) | **GET** /users/{id}/notifications | Read notifications of a user.
|
|
213
216
|
*ReportsApi* | [**get_reports**](docs/ReportsApi.md#get_reports) | **GET** /reports | Get usage reports
|
|
@@ -272,9 +275,11 @@ Class | Method | HTTP request | Description
|
|
|
272
275
|
|
|
273
276
|
## Documentation For Models
|
|
274
277
|
|
|
278
|
+
- [AllOfentityEditableMetadatamerge](docs/AllOfentityEditableMetadatamerge.md)
|
|
275
279
|
- [AnyOfuploadsSubidBody1](docs/AnyOfuploadsSubidBody1.md)
|
|
276
280
|
- [Apikey](docs/Apikey.md)
|
|
277
281
|
- [ApikeysBody](docs/ApikeysBody.md)
|
|
282
|
+
- [BrandingIdBody](docs/BrandingIdBody.md)
|
|
278
283
|
- [Changelog](docs/Changelog.md)
|
|
279
284
|
- [Comment](docs/Comment.md)
|
|
280
285
|
- [Compound](docs/Compound.md)
|
|
@@ -353,6 +358,7 @@ Class | Method | HTTP request | Description
|
|
|
353
358
|
- [InlineResponse2009](docs/InlineResponse2009.md)
|
|
354
359
|
- [InlineResponse2009Embedded](docs/InlineResponse2009Embedded.md)
|
|
355
360
|
- [InlineResponse2009EmbeddedEntries](docs/InlineResponse2009EmbeddedEntries.md)
|
|
361
|
+
- [InstanceBody](docs/InstanceBody.md)
|
|
356
362
|
- [Item](docs/Item.md)
|
|
357
363
|
- [ItemEditable](docs/ItemEditable.md)
|
|
358
364
|
- [ItemsLinksSubidBody](docs/ItemsLinksSubidBody.md)
|
|
@@ -363,6 +369,7 @@ Class | Method | HTTP request | Description
|
|
|
363
369
|
- [MetadataElabftwExtraFieldsGroups](docs/MetadataElabftwExtraFieldsGroups.md)
|
|
364
370
|
- [MetadataExtraFields](docs/MetadataExtraFields.md)
|
|
365
371
|
- [Notification](docs/Notification.md)
|
|
372
|
+
- [NotificationsSubidBody](docs/NotificationsSubidBody.md)
|
|
366
373
|
- [PatchAction](docs/PatchAction.md)
|
|
367
374
|
- [Revision](docs/Revision.md)
|
|
368
375
|
- [RevisionsSubidBody](docs/RevisionsSubidBody.md)
|
|
@@ -16,10 +16,12 @@ from __future__ import absolute_import
|
|
|
16
16
|
|
|
17
17
|
# import apis into sdk package
|
|
18
18
|
from elabapi_python.api.api_keys_api import ApiKeysApi
|
|
19
|
+
from elabapi_python.api.branding_api import BrandingApi
|
|
19
20
|
from elabapi_python.api.comments_api import CommentsApi
|
|
20
21
|
from elabapi_python.api.compounds_api import CompoundsApi
|
|
21
22
|
from elabapi_python.api.config_api import ConfigApi
|
|
22
23
|
from elabapi_python.api.containers_api import ContainersApi
|
|
24
|
+
from elabapi_python.api.custom_fields_keys_api import CustomFieldsKeysApi
|
|
23
25
|
from elabapi_python.api.d_space_api import DSpaceApi
|
|
24
26
|
from elabapi_python.api.events_api import EventsApi
|
|
25
27
|
from elabapi_python.api.experiments_api import ExperimentsApi
|
|
@@ -27,12 +29,12 @@ from elabapi_python.api.experiments_categories_api import ExperimentsCategoriesA
|
|
|
27
29
|
from elabapi_python.api.experiments_status_api import ExperimentsStatusApi
|
|
28
30
|
from elabapi_python.api.experiments_templates_api import ExperimentsTemplatesApi
|
|
29
31
|
from elabapi_python.api.exports_api import ExportsApi
|
|
30
|
-
from elabapi_python.api.extra_fields_keys_api import ExtraFieldsKeysApi
|
|
31
32
|
from elabapi_python.api.favorite_tags_api import FavoriteTagsApi
|
|
32
33
|
from elabapi_python.api.idps_api import IdpsApi
|
|
33
34
|
from elabapi_python.api.idps_sources_api import IdpsSourcesApi
|
|
34
35
|
from elabapi_python.api.import_api import ImportApi
|
|
35
36
|
from elabapi_python.api.info_api import InfoApi
|
|
37
|
+
from elabapi_python.api.instance_api import InstanceApi
|
|
36
38
|
from elabapi_python.api.items_api import ItemsApi
|
|
37
39
|
from elabapi_python.api.items_types__resources_templates_api import ItemsTypesResourcesTemplatesApi
|
|
38
40
|
from elabapi_python.api.links_to_compounds_api import LinksToCompoundsApi
|
|
@@ -58,9 +60,11 @@ from elabapi_python.api.users_api import UsersApi
|
|
|
58
60
|
from elabapi_python.api_client import ApiClient
|
|
59
61
|
from elabapi_python.configuration import Configuration
|
|
60
62
|
# import models into sdk package
|
|
63
|
+
from elabapi_python.models.all_ofentity_editable_metadatamerge import AllOfentityEditableMetadatamerge
|
|
61
64
|
from elabapi_python.models.any_ofuploads_subid_body1 import AnyOfuploadsSubidBody1
|
|
62
65
|
from elabapi_python.models.apikey import Apikey
|
|
63
66
|
from elabapi_python.models.apikeys_body import ApikeysBody
|
|
67
|
+
from elabapi_python.models.branding_id_body import BrandingIdBody
|
|
64
68
|
from elabapi_python.models.changelog import Changelog
|
|
65
69
|
from elabapi_python.models.comment import Comment
|
|
66
70
|
from elabapi_python.models.compound import Compound
|
|
@@ -139,6 +143,7 @@ from elabapi_python.models.inline_response2008 import InlineResponse2008
|
|
|
139
143
|
from elabapi_python.models.inline_response2009 import InlineResponse2009
|
|
140
144
|
from elabapi_python.models.inline_response2009_embedded import InlineResponse2009Embedded
|
|
141
145
|
from elabapi_python.models.inline_response2009_embedded_entries import InlineResponse2009EmbeddedEntries
|
|
146
|
+
from elabapi_python.models.instance_body import InstanceBody
|
|
142
147
|
from elabapi_python.models.item import Item
|
|
143
148
|
from elabapi_python.models.item_editable import ItemEditable
|
|
144
149
|
from elabapi_python.models.items_links_subid_body import ItemsLinksSubidBody
|
|
@@ -149,6 +154,7 @@ from elabapi_python.models.metadata_elabftw import MetadataElabftw
|
|
|
149
154
|
from elabapi_python.models.metadata_elabftw_extra_fields_groups import MetadataElabftwExtraFieldsGroups
|
|
150
155
|
from elabapi_python.models.metadata_extra_fields import MetadataExtraFields
|
|
151
156
|
from elabapi_python.models.notification import Notification
|
|
157
|
+
from elabapi_python.models.notifications_subid_body import NotificationsSubidBody
|
|
152
158
|
from elabapi_python.models.patch_action import PatchAction
|
|
153
159
|
from elabapi_python.models.revision import Revision
|
|
154
160
|
from elabapi_python.models.revisions_subid_body import RevisionsSubidBody
|
|
@@ -4,10 +4,12 @@ from __future__ import absolute_import
|
|
|
4
4
|
|
|
5
5
|
# import apis into api package
|
|
6
6
|
from elabapi_python.api.api_keys_api import ApiKeysApi
|
|
7
|
+
from elabapi_python.api.branding_api import BrandingApi
|
|
7
8
|
from elabapi_python.api.comments_api import CommentsApi
|
|
8
9
|
from elabapi_python.api.compounds_api import CompoundsApi
|
|
9
10
|
from elabapi_python.api.config_api import ConfigApi
|
|
10
11
|
from elabapi_python.api.containers_api import ContainersApi
|
|
12
|
+
from elabapi_python.api.custom_fields_keys_api import CustomFieldsKeysApi
|
|
11
13
|
from elabapi_python.api.d_space_api import DSpaceApi
|
|
12
14
|
from elabapi_python.api.events_api import EventsApi
|
|
13
15
|
from elabapi_python.api.experiments_api import ExperimentsApi
|
|
@@ -15,12 +17,12 @@ from elabapi_python.api.experiments_categories_api import ExperimentsCategoriesA
|
|
|
15
17
|
from elabapi_python.api.experiments_status_api import ExperimentsStatusApi
|
|
16
18
|
from elabapi_python.api.experiments_templates_api import ExperimentsTemplatesApi
|
|
17
19
|
from elabapi_python.api.exports_api import ExportsApi
|
|
18
|
-
from elabapi_python.api.extra_fields_keys_api import ExtraFieldsKeysApi
|
|
19
20
|
from elabapi_python.api.favorite_tags_api import FavoriteTagsApi
|
|
20
21
|
from elabapi_python.api.idps_api import IdpsApi
|
|
21
22
|
from elabapi_python.api.idps_sources_api import IdpsSourcesApi
|
|
22
23
|
from elabapi_python.api.import_api import ImportApi
|
|
23
24
|
from elabapi_python.api.info_api import InfoApi
|
|
25
|
+
from elabapi_python.api.instance_api import InstanceApi
|
|
24
26
|
from elabapi_python.api.items_api import ItemsApi
|
|
25
27
|
from elabapi_python.api.items_types__resources_templates_api import ItemsTypesResourcesTemplatesApi
|
|
26
28
|
from elabapi_python.api.links_to_compounds_api import LinksToCompoundsApi
|
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
eLabFTW REST API v2 Documentation
|
|
5
|
+
|
|
6
|
+
This document describes all available endpoints and methods for eLabFTW's API version 2. # noqa: E501
|
|
7
|
+
|
|
8
|
+
OpenAPI spec version: 2.0.0
|
|
9
|
+
|
|
10
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from __future__ import absolute_import
|
|
14
|
+
|
|
15
|
+
import re # noqa: F401
|
|
16
|
+
|
|
17
|
+
# python 2 and python 3 compatibility library
|
|
18
|
+
import six
|
|
19
|
+
|
|
20
|
+
from elabapi_python.api_client import ApiClient
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class BrandingApi(object):
|
|
24
|
+
"""NOTE: This class is auto generated by the swagger code generator program.
|
|
25
|
+
|
|
26
|
+
Do not edit the class manually.
|
|
27
|
+
Ref: https://github.com/swagger-api/swagger-codegen
|
|
28
|
+
"""
|
|
29
|
+
|
|
30
|
+
def __init__(self, api_client=None):
|
|
31
|
+
if api_client is None:
|
|
32
|
+
api_client = ApiClient()
|
|
33
|
+
self.api_client = api_client
|
|
34
|
+
|
|
35
|
+
def get_instance_branding(self, id, format, **kwargs): # noqa: E501
|
|
36
|
+
"""Read a branding asset as a binary file. # noqa: E501
|
|
37
|
+
|
|
38
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
39
|
+
asynchronous HTTP request, please pass async_req=True
|
|
40
|
+
>>> thread = api.get_instance_branding(id, format, async_req=True)
|
|
41
|
+
>>> result = thread.get()
|
|
42
|
+
|
|
43
|
+
:param async_req bool
|
|
44
|
+
:param int id: Branding id. (required)
|
|
45
|
+
:param str format: Use binary format to retrieve the branding asset. (required)
|
|
46
|
+
:return: str
|
|
47
|
+
If the method is called asynchronously,
|
|
48
|
+
returns the request thread.
|
|
49
|
+
"""
|
|
50
|
+
kwargs['_return_http_data_only'] = True
|
|
51
|
+
if kwargs.get('async_req'):
|
|
52
|
+
return self.get_instance_branding_with_http_info(id, format, **kwargs) # noqa: E501
|
|
53
|
+
else:
|
|
54
|
+
(data) = self.get_instance_branding_with_http_info(id, format, **kwargs) # noqa: E501
|
|
55
|
+
return data
|
|
56
|
+
|
|
57
|
+
def get_instance_branding_with_http_info(self, id, format, **kwargs): # noqa: E501
|
|
58
|
+
"""Read a branding asset as a binary file. # noqa: E501
|
|
59
|
+
|
|
60
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
61
|
+
asynchronous HTTP request, please pass async_req=True
|
|
62
|
+
>>> thread = api.get_instance_branding_with_http_info(id, format, async_req=True)
|
|
63
|
+
>>> result = thread.get()
|
|
64
|
+
|
|
65
|
+
:param async_req bool
|
|
66
|
+
:param int id: Branding id. (required)
|
|
67
|
+
:param str format: Use binary format to retrieve the branding asset. (required)
|
|
68
|
+
:return: str
|
|
69
|
+
If the method is called asynchronously,
|
|
70
|
+
returns the request thread.
|
|
71
|
+
"""
|
|
72
|
+
|
|
73
|
+
all_params = ['id', 'format'] # noqa: E501
|
|
74
|
+
all_params.append('async_req')
|
|
75
|
+
all_params.append('_return_http_data_only')
|
|
76
|
+
all_params.append('_preload_content')
|
|
77
|
+
all_params.append('_request_timeout')
|
|
78
|
+
|
|
79
|
+
params = locals()
|
|
80
|
+
for key, val in six.iteritems(params['kwargs']):
|
|
81
|
+
if key not in all_params:
|
|
82
|
+
raise TypeError(
|
|
83
|
+
"Got an unexpected keyword argument '%s'"
|
|
84
|
+
" to method get_instance_branding" % key
|
|
85
|
+
)
|
|
86
|
+
params[key] = val
|
|
87
|
+
del params['kwargs']
|
|
88
|
+
# verify the required parameter 'id' is set
|
|
89
|
+
if ('id' not in params or
|
|
90
|
+
params['id'] is None):
|
|
91
|
+
raise ValueError("Missing the required parameter `id` when calling `get_instance_branding`") # noqa: E501
|
|
92
|
+
# verify the required parameter 'format' is set
|
|
93
|
+
if ('format' not in params or
|
|
94
|
+
params['format'] is None):
|
|
95
|
+
raise ValueError("Missing the required parameter `format` when calling `get_instance_branding`") # noqa: E501
|
|
96
|
+
|
|
97
|
+
collection_formats = {}
|
|
98
|
+
|
|
99
|
+
path_params = {}
|
|
100
|
+
if 'id' in params:
|
|
101
|
+
path_params['id'] = params['id'] # noqa: E501
|
|
102
|
+
|
|
103
|
+
query_params = []
|
|
104
|
+
if 'format' in params:
|
|
105
|
+
query_params.append(('format', params['format'])) # noqa: E501
|
|
106
|
+
|
|
107
|
+
header_params = {}
|
|
108
|
+
|
|
109
|
+
form_params = []
|
|
110
|
+
local_var_files = {}
|
|
111
|
+
|
|
112
|
+
body_params = None
|
|
113
|
+
# HTTP header `Accept`
|
|
114
|
+
header_params['Accept'] = self.api_client.select_header_accept(
|
|
115
|
+
['image/svg+xml', 'image/png', 'image/jpeg', 'image/webp', 'image/x-icon', 'image/vnd.microsoft.icon', 'application/json']) # noqa: E501
|
|
116
|
+
|
|
117
|
+
# Authentication setting
|
|
118
|
+
auth_settings = ['token'] # noqa: E501
|
|
119
|
+
|
|
120
|
+
return self.api_client.call_api(
|
|
121
|
+
'/instance/branding/{id}', 'GET',
|
|
122
|
+
path_params,
|
|
123
|
+
query_params,
|
|
124
|
+
header_params,
|
|
125
|
+
body=body_params,
|
|
126
|
+
post_params=form_params,
|
|
127
|
+
files=local_var_files,
|
|
128
|
+
response_type='str', # noqa: E501
|
|
129
|
+
auth_settings=auth_settings,
|
|
130
|
+
async_req=params.get('async_req'),
|
|
131
|
+
_return_http_data_only=params.get('_return_http_data_only'),
|
|
132
|
+
_preload_content=params.get('_preload_content', True),
|
|
133
|
+
_request_timeout=params.get('_request_timeout'),
|
|
134
|
+
collection_formats=collection_formats)
|
|
135
|
+
|
|
136
|
+
def post_instance_branding(self, action, file, id, **kwargs): # noqa: E501
|
|
137
|
+
"""Update a branding asset. # noqa: E501
|
|
138
|
+
|
|
139
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
140
|
+
asynchronous HTTP request, please pass async_req=True
|
|
141
|
+
>>> thread = api.post_instance_branding(action, file, id, async_req=True)
|
|
142
|
+
>>> result = thread.get()
|
|
143
|
+
|
|
144
|
+
:param async_req bool
|
|
145
|
+
:param str action: (required)
|
|
146
|
+
:param str file: (required)
|
|
147
|
+
:param int id: Branding id. (required)
|
|
148
|
+
:return: None
|
|
149
|
+
If the method is called asynchronously,
|
|
150
|
+
returns the request thread.
|
|
151
|
+
"""
|
|
152
|
+
kwargs['_return_http_data_only'] = True
|
|
153
|
+
if kwargs.get('async_req'):
|
|
154
|
+
return self.post_instance_branding_with_http_info(action, file, id, **kwargs) # noqa: E501
|
|
155
|
+
else:
|
|
156
|
+
(data) = self.post_instance_branding_with_http_info(action, file, id, **kwargs) # noqa: E501
|
|
157
|
+
return data
|
|
158
|
+
|
|
159
|
+
def post_instance_branding_with_http_info(self, action, file, id, **kwargs): # noqa: E501
|
|
160
|
+
"""Update a branding asset. # noqa: E501
|
|
161
|
+
|
|
162
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
163
|
+
asynchronous HTTP request, please pass async_req=True
|
|
164
|
+
>>> thread = api.post_instance_branding_with_http_info(action, file, id, async_req=True)
|
|
165
|
+
>>> result = thread.get()
|
|
166
|
+
|
|
167
|
+
:param async_req bool
|
|
168
|
+
:param str action: (required)
|
|
169
|
+
:param str file: (required)
|
|
170
|
+
:param int id: Branding id. (required)
|
|
171
|
+
:return: None
|
|
172
|
+
If the method is called asynchronously,
|
|
173
|
+
returns the request thread.
|
|
174
|
+
"""
|
|
175
|
+
|
|
176
|
+
all_params = ['action', 'file', 'id'] # noqa: E501
|
|
177
|
+
all_params.append('async_req')
|
|
178
|
+
all_params.append('_return_http_data_only')
|
|
179
|
+
all_params.append('_preload_content')
|
|
180
|
+
all_params.append('_request_timeout')
|
|
181
|
+
|
|
182
|
+
params = locals()
|
|
183
|
+
for key, val in six.iteritems(params['kwargs']):
|
|
184
|
+
if key not in all_params:
|
|
185
|
+
raise TypeError(
|
|
186
|
+
"Got an unexpected keyword argument '%s'"
|
|
187
|
+
" to method post_instance_branding" % key
|
|
188
|
+
)
|
|
189
|
+
params[key] = val
|
|
190
|
+
del params['kwargs']
|
|
191
|
+
# verify the required parameter 'action' is set
|
|
192
|
+
if ('action' not in params or
|
|
193
|
+
params['action'] is None):
|
|
194
|
+
raise ValueError("Missing the required parameter `action` when calling `post_instance_branding`") # noqa: E501
|
|
195
|
+
# verify the required parameter 'file' is set
|
|
196
|
+
if ('file' not in params or
|
|
197
|
+
params['file'] is None):
|
|
198
|
+
raise ValueError("Missing the required parameter `file` when calling `post_instance_branding`") # noqa: E501
|
|
199
|
+
# verify the required parameter 'id' is set
|
|
200
|
+
if ('id' not in params or
|
|
201
|
+
params['id'] is None):
|
|
202
|
+
raise ValueError("Missing the required parameter `id` when calling `post_instance_branding`") # noqa: E501
|
|
203
|
+
|
|
204
|
+
collection_formats = {}
|
|
205
|
+
|
|
206
|
+
path_params = {}
|
|
207
|
+
if 'id' in params:
|
|
208
|
+
path_params['id'] = params['id'] # noqa: E501
|
|
209
|
+
|
|
210
|
+
query_params = []
|
|
211
|
+
|
|
212
|
+
header_params = {}
|
|
213
|
+
|
|
214
|
+
form_params = []
|
|
215
|
+
local_var_files = {}
|
|
216
|
+
if 'action' in params:
|
|
217
|
+
form_params.append(('action', params['action'])) # noqa: E501
|
|
218
|
+
if 'file' in params:
|
|
219
|
+
local_var_files['file'] = params['file'] # noqa: E501
|
|
220
|
+
|
|
221
|
+
body_params = None
|
|
222
|
+
# HTTP header `Accept`
|
|
223
|
+
header_params['Accept'] = self.api_client.select_header_accept(
|
|
224
|
+
['application/json']) # noqa: E501
|
|
225
|
+
|
|
226
|
+
# HTTP header `Content-Type`
|
|
227
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
228
|
+
['multipart/form-data']) # noqa: E501
|
|
229
|
+
|
|
230
|
+
# Authentication setting
|
|
231
|
+
auth_settings = ['token'] # noqa: E501
|
|
232
|
+
|
|
233
|
+
return self.api_client.call_api(
|
|
234
|
+
'/instance/branding/{id}', 'POST',
|
|
235
|
+
path_params,
|
|
236
|
+
query_params,
|
|
237
|
+
header_params,
|
|
238
|
+
body=body_params,
|
|
239
|
+
post_params=form_params,
|
|
240
|
+
files=local_var_files,
|
|
241
|
+
response_type=None, # noqa: E501
|
|
242
|
+
auth_settings=auth_settings,
|
|
243
|
+
async_req=params.get('async_req'),
|
|
244
|
+
_return_http_data_only=params.get('_return_http_data_only'),
|
|
245
|
+
_preload_content=params.get('_preload_content', True),
|
|
246
|
+
_request_timeout=params.get('_request_timeout'),
|
|
247
|
+
collection_formats=collection_formats)
|
|
@@ -146,7 +146,7 @@ class ContainersApi(object):
|
|
|
146
146
|
def patch_container(self, entity_type, id, subid, **kwargs): # noqa: E501
|
|
147
147
|
"""Modify a container. # noqa: E501
|
|
148
148
|
|
|
149
|
-
Update the quantity stored or the
|
|
149
|
+
Update the quantity stored, the unit, or the storage location of a container. Setting `storage_id` moves the container to a different storage unit while preserving its `id` and `created_at`. # noqa: E501
|
|
150
150
|
This method makes a synchronous HTTP request by default. To make an
|
|
151
151
|
asynchronous HTTP request, please pass async_req=True
|
|
152
152
|
>>> thread = api.patch_container(entity_type, id, subid, async_req=True)
|
|
@@ -171,7 +171,7 @@ class ContainersApi(object):
|
|
|
171
171
|
def patch_container_with_http_info(self, entity_type, id, subid, **kwargs): # noqa: E501
|
|
172
172
|
"""Modify a container. # noqa: E501
|
|
173
173
|
|
|
174
|
-
Update the quantity stored or the
|
|
174
|
+
Update the quantity stored, the unit, or the storage location of a container. Setting `storage_id` moves the container to a different storage unit while preserving its `id` and `created_at`. # noqa: E501
|
|
175
175
|
This method makes a synchronous HTTP request by default. To make an
|
|
176
176
|
asynchronous HTTP request, please pass async_req=True
|
|
177
177
|
>>> thread = api.patch_container_with_http_info(entity_type, id, subid, async_req=True)
|
|
@@ -20,7 +20,7 @@ import six
|
|
|
20
20
|
from elabapi_python.api_client import ApiClient
|
|
21
21
|
|
|
22
22
|
|
|
23
|
-
class
|
|
23
|
+
class CustomFieldsKeysApi(object):
|
|
24
24
|
"""NOTE: This class is auto generated by the swagger code generator program.
|
|
25
25
|
|
|
26
26
|
Do not edit the class manually.
|
|
@@ -32,39 +32,39 @@ class ExtraFieldsKeysApi(object):
|
|
|
32
32
|
api_client = ApiClient()
|
|
33
33
|
self.api_client = api_client
|
|
34
34
|
|
|
35
|
-
def
|
|
36
|
-
"""Read
|
|
35
|
+
def custom_fields_keys(self, **kwargs): # noqa: E501
|
|
36
|
+
"""Read custom fields keys. # noqa: E501
|
|
37
37
|
|
|
38
38
|
This method makes a synchronous HTTP request by default. To make an
|
|
39
39
|
asynchronous HTTP request, please pass async_req=True
|
|
40
|
-
>>> thread = api.
|
|
40
|
+
>>> thread = api.custom_fields_keys(async_req=True)
|
|
41
41
|
>>> result = thread.get()
|
|
42
42
|
|
|
43
43
|
:param async_req bool
|
|
44
|
-
:param str q: Search for a term in the
|
|
45
|
-
:param int limit: Number of
|
|
44
|
+
:param str q: Search for a term in the custom fields keys.
|
|
45
|
+
:param int limit: Number of custom fields keys that will be returned. Value >= -1; -1: no limit, 0: users default setting from UCP.
|
|
46
46
|
:return: list[ExtraFieldsKeys]
|
|
47
47
|
If the method is called asynchronously,
|
|
48
48
|
returns the request thread.
|
|
49
49
|
"""
|
|
50
50
|
kwargs['_return_http_data_only'] = True
|
|
51
51
|
if kwargs.get('async_req'):
|
|
52
|
-
return self.
|
|
52
|
+
return self.custom_fields_keys_with_http_info(**kwargs) # noqa: E501
|
|
53
53
|
else:
|
|
54
|
-
(data) = self.
|
|
54
|
+
(data) = self.custom_fields_keys_with_http_info(**kwargs) # noqa: E501
|
|
55
55
|
return data
|
|
56
56
|
|
|
57
|
-
def
|
|
58
|
-
"""Read
|
|
57
|
+
def custom_fields_keys_with_http_info(self, **kwargs): # noqa: E501
|
|
58
|
+
"""Read custom fields keys. # noqa: E501
|
|
59
59
|
|
|
60
60
|
This method makes a synchronous HTTP request by default. To make an
|
|
61
61
|
asynchronous HTTP request, please pass async_req=True
|
|
62
|
-
>>> thread = api.
|
|
62
|
+
>>> thread = api.custom_fields_keys_with_http_info(async_req=True)
|
|
63
63
|
>>> result = thread.get()
|
|
64
64
|
|
|
65
65
|
:param async_req bool
|
|
66
|
-
:param str q: Search for a term in the
|
|
67
|
-
:param int limit: Number of
|
|
66
|
+
:param str q: Search for a term in the custom fields keys.
|
|
67
|
+
:param int limit: Number of custom fields keys that will be returned. Value >= -1; -1: no limit, 0: users default setting from UCP.
|
|
68
68
|
:return: list[ExtraFieldsKeys]
|
|
69
69
|
If the method is called asynchronously,
|
|
70
70
|
returns the request thread.
|
|
@@ -81,7 +81,7 @@ class ExtraFieldsKeysApi(object):
|
|
|
81
81
|
if key not in all_params:
|
|
82
82
|
raise TypeError(
|
|
83
83
|
"Got an unexpected keyword argument '%s'"
|
|
84
|
-
" to method
|
|
84
|
+
" to method custom_fields_keys" % key
|
|
85
85
|
)
|
|
86
86
|
params[key] = val
|
|
87
87
|
del params['kwargs']
|
|
@@ -552,7 +552,7 @@ class ExperimentsApi(object):
|
|
|
552
552
|
:param str extended: Extended search (advanced query).
|
|
553
553
|
:param int related: Look only for entries linked to this entry id.
|
|
554
554
|
:param str related_origin: When using the \"related\" query parameter, select the type of the related ID (experiments or items)
|
|
555
|
-
:param str
|
|
555
|
+
:param str category: Add a filter on the Category. Supports comma separated list of numbers, including \"null\".
|
|
556
556
|
:param str status: Add a filter on the Status. Supports comma separated list of numbers, including \"null\".
|
|
557
557
|
:param list[str] tags: An array of tags for filtering results containing all of these tags.
|
|
558
558
|
:param int limit: Limit the number of results.
|
|
@@ -562,6 +562,7 @@ class ExperimentsApi(object):
|
|
|
562
562
|
:param str order: Change the ordering of the results.
|
|
563
563
|
:param str sort: Change the sorting of results: ascending or descending.
|
|
564
564
|
:param str state: Filter results based on their state: 1 (Normal), 2 (Archived), 3 (Deleted). Supports comma separated values.
|
|
565
|
+
:param int full: Return all columns of each entry when set to 1.
|
|
565
566
|
:return: list[Experiment]
|
|
566
567
|
If the method is called asynchronously,
|
|
567
568
|
returns the request thread.
|
|
@@ -586,7 +587,7 @@ class ExperimentsApi(object):
|
|
|
586
587
|
:param str extended: Extended search (advanced query).
|
|
587
588
|
:param int related: Look only for entries linked to this entry id.
|
|
588
589
|
:param str related_origin: When using the \"related\" query parameter, select the type of the related ID (experiments or items)
|
|
589
|
-
:param str
|
|
590
|
+
:param str category: Add a filter on the Category. Supports comma separated list of numbers, including \"null\".
|
|
590
591
|
:param str status: Add a filter on the Status. Supports comma separated list of numbers, including \"null\".
|
|
591
592
|
:param list[str] tags: An array of tags for filtering results containing all of these tags.
|
|
592
593
|
:param int limit: Limit the number of results.
|
|
@@ -596,12 +597,13 @@ class ExperimentsApi(object):
|
|
|
596
597
|
:param str order: Change the ordering of the results.
|
|
597
598
|
:param str sort: Change the sorting of results: ascending or descending.
|
|
598
599
|
:param str state: Filter results based on their state: 1 (Normal), 2 (Archived), 3 (Deleted). Supports comma separated values.
|
|
600
|
+
:param int full: Return all columns of each entry when set to 1.
|
|
599
601
|
:return: list[Experiment]
|
|
600
602
|
If the method is called asynchronously,
|
|
601
603
|
returns the request thread.
|
|
602
604
|
"""
|
|
603
605
|
|
|
604
|
-
all_params = ['q', 'extended', 'related', 'related_origin', '
|
|
606
|
+
all_params = ['q', 'extended', 'related', 'related_origin', 'category', 'status', 'tags', 'limit', 'offset', 'owner', 'scope', 'order', 'sort', 'state', 'full'] # noqa: E501
|
|
605
607
|
all_params.append('async_req')
|
|
606
608
|
all_params.append('_return_http_data_only')
|
|
607
609
|
all_params.append('_preload_content')
|
|
@@ -630,8 +632,8 @@ class ExperimentsApi(object):
|
|
|
630
632
|
query_params.append(('related', params['related'])) # noqa: E501
|
|
631
633
|
if 'related_origin' in params:
|
|
632
634
|
query_params.append(('related_origin', params['related_origin'])) # noqa: E501
|
|
633
|
-
if '
|
|
634
|
-
query_params.append(('
|
|
635
|
+
if 'category' in params:
|
|
636
|
+
query_params.append(('category', params['category'])) # noqa: E501
|
|
635
637
|
if 'status' in params:
|
|
636
638
|
query_params.append(('status', params['status'])) # noqa: E501
|
|
637
639
|
if 'tags' in params:
|
|
@@ -651,6 +653,8 @@ class ExperimentsApi(object):
|
|
|
651
653
|
query_params.append(('sort', params['sort'])) # noqa: E501
|
|
652
654
|
if 'state' in params:
|
|
653
655
|
query_params.append(('state', params['state'])) # noqa: E501
|
|
656
|
+
if 'full' in params:
|
|
657
|
+
query_params.append(('full', params['full'])) # noqa: E501
|
|
654
658
|
|
|
655
659
|
header_params = {}
|
|
656
660
|
|
{elabapi_python-5.5.11 → elabapi_python-5.6.1}/elabapi_python/api/experiments_templates_api.py
RENAMED
|
@@ -528,7 +528,7 @@ class ExperimentsTemplatesApi(object):
|
|
|
528
528
|
:param str extended: Extended search (advanced query).
|
|
529
529
|
:param int related: Look only for entries linked to this entry id.
|
|
530
530
|
:param str related_origin: When using the \"related\" query parameter, select the type of the related ID (experiments or items)
|
|
531
|
-
:param str
|
|
531
|
+
:param str category: Add a filter on the Category. Supports comma separated list of numbers, including \"null\".
|
|
532
532
|
:param str status: Add a filter on the Status. Supports comma separated list of numbers, including \"null\".
|
|
533
533
|
:param list[str] tags: An array of tags for filtering results containing all of these tags.
|
|
534
534
|
:param int limit: Limit the number of results.
|
|
@@ -538,6 +538,7 @@ class ExperimentsTemplatesApi(object):
|
|
|
538
538
|
:param str order: Change the ordering of the results.
|
|
539
539
|
:param str sort: Change the sorting of results: ascending or descending.
|
|
540
540
|
:param str state: Filter results based on their state: 1 (Normal), 2 (Archived), 3 (Deleted). Supports comma separated values.
|
|
541
|
+
:param int full: Return all columns of each entry when set to 1.
|
|
541
542
|
:return: list[EntityTemplate]
|
|
542
543
|
If the method is called asynchronously,
|
|
543
544
|
returns the request thread.
|
|
@@ -562,7 +563,7 @@ class ExperimentsTemplatesApi(object):
|
|
|
562
563
|
:param str extended: Extended search (advanced query).
|
|
563
564
|
:param int related: Look only for entries linked to this entry id.
|
|
564
565
|
:param str related_origin: When using the \"related\" query parameter, select the type of the related ID (experiments or items)
|
|
565
|
-
:param str
|
|
566
|
+
:param str category: Add a filter on the Category. Supports comma separated list of numbers, including \"null\".
|
|
566
567
|
:param str status: Add a filter on the Status. Supports comma separated list of numbers, including \"null\".
|
|
567
568
|
:param list[str] tags: An array of tags for filtering results containing all of these tags.
|
|
568
569
|
:param int limit: Limit the number of results.
|
|
@@ -572,12 +573,13 @@ class ExperimentsTemplatesApi(object):
|
|
|
572
573
|
:param str order: Change the ordering of the results.
|
|
573
574
|
:param str sort: Change the sorting of results: ascending or descending.
|
|
574
575
|
:param str state: Filter results based on their state: 1 (Normal), 2 (Archived), 3 (Deleted). Supports comma separated values.
|
|
576
|
+
:param int full: Return all columns of each entry when set to 1.
|
|
575
577
|
:return: list[EntityTemplate]
|
|
576
578
|
If the method is called asynchronously,
|
|
577
579
|
returns the request thread.
|
|
578
580
|
"""
|
|
579
581
|
|
|
580
|
-
all_params = ['q', 'extended', 'related', 'related_origin', '
|
|
582
|
+
all_params = ['q', 'extended', 'related', 'related_origin', 'category', 'status', 'tags', 'limit', 'offset', 'owner', 'scope', 'order', 'sort', 'state', 'full'] # noqa: E501
|
|
581
583
|
all_params.append('async_req')
|
|
582
584
|
all_params.append('_return_http_data_only')
|
|
583
585
|
all_params.append('_preload_content')
|
|
@@ -606,8 +608,8 @@ class ExperimentsTemplatesApi(object):
|
|
|
606
608
|
query_params.append(('related', params['related'])) # noqa: E501
|
|
607
609
|
if 'related_origin' in params:
|
|
608
610
|
query_params.append(('related_origin', params['related_origin'])) # noqa: E501
|
|
609
|
-
if '
|
|
610
|
-
query_params.append(('
|
|
611
|
+
if 'category' in params:
|
|
612
|
+
query_params.append(('category', params['category'])) # noqa: E501
|
|
611
613
|
if 'status' in params:
|
|
612
614
|
query_params.append(('status', params['status'])) # noqa: E501
|
|
613
615
|
if 'tags' in params:
|
|
@@ -627,6 +629,8 @@ class ExperimentsTemplatesApi(object):
|
|
|
627
629
|
query_params.append(('sort', params['sort'])) # noqa: E501
|
|
628
630
|
if 'state' in params:
|
|
629
631
|
query_params.append(('state', params['state'])) # noqa: E501
|
|
632
|
+
if 'full' in params:
|
|
633
|
+
query_params.append(('full', params['full'])) # noqa: E501
|
|
630
634
|
|
|
631
635
|
header_params = {}
|
|
632
636
|
|