diff --git a/README.md b/README.md index 1b54f4f..a19747b 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,8 @@ No description provided (generated by Openapi Generator https://github.com/opena This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 0.0.36 -- Package version: 2.0.1 +- API version: 0.0.37 +- Package version: 2.0.2 - Generator version: 7.4.0 - Build package: org.openapitools.codegen.languages.PythonClientCodegen @@ -62,6 +62,7 @@ import os configuration = ecotaxa_py_client.Configuration( host = "https://ecotaxa.obs-vlfr.fr/api" ) + # In case of ssl error configuration.verify_ssl=False @@ -89,6 +90,20 @@ from ecotaxa_py_client.models.user_model_with_rights import UserModelWithRights configuration.access_token = os.environ["ACCESS_TOKEN"] +# Enter a context with an instance of the API client +with ecotaxa_py_client.ApiClient(configuration) as api_client: + # Create an instance of the API class + api_instance = ecotaxa_py_client.FilesApi(api_client) + path = '/ftp_plankton/Ecotaxa_Exported_data' # str | + + try: + # List Common Files + api_response = api_instance.list_common_files(path) + print("The response of FilesApi->list_common_files:\n") + pprint(api_response) + except ApiException as e: + print("Exception when calling FilesApi->list_common_files: %s\n" % e) + # Enter a context with an instance of the API client with ecotaxa_py_client.ApiClient(configuration) as api_client: # Create an instance of the API class diff --git a/docs/ProjectsApi.md b/docs/ProjectsApi.md index fcbc087..676709e 100644 --- a/docs/ProjectsApi.md +++ b/docs/ProjectsApi.md @@ -1029,7 +1029,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **search_projects** -> List[ProjectModel] search_projects(also_others=also_others, not_granted=not_granted, for_managing=for_managing, title_filter=title_filter, instrument_filter=instrument_filter, filter_subset=filter_subset, order_field=order_field, window_start=window_start, window_size=window_size) +> List[ProjectModel] search_projects(also_others=also_others, not_granted=not_granted, for_managing=for_managing, title_filter=title_filter, instrument_filter=instrument_filter, filter_subset=filter_subset, order_field=order_field, summary=summary, window_start=window_start, window_size=window_size) Search Projects @@ -1069,12 +1069,13 @@ with ecotaxa_py_client.ApiClient(configuration) as api_client: instrument_filter = '' # str | Only return projects where this instrument was used. (optional) (default to '') filter_subset = False # bool | Only return projects having 'subset' in their names. (optional) (default to False) order_field = 'instrument' # str | One of ['instrument', 'instrument_url', 'highest_right', 'projid', 'title', 'visible', 'status', 'objcount', 'pctvalidated', 'pctclassified', 'classifsettings', 'classiffieldlist', 'popoverfieldlist', 'comments', 'description', 'rf_models_used', 'cnn_network_id'] (optional) + summary = true # bool | Return projects except somme fields like bodc_variables if set to True. For projects list display purpose. (optional) window_start = 0 # int | Skip `window_start` before returning data. (optional) window_size = 100 # int | Return only `window_size` lines. (optional) try: # Search Projects - api_response = api_instance.search_projects(also_others=also_others, not_granted=not_granted, for_managing=for_managing, title_filter=title_filter, instrument_filter=instrument_filter, filter_subset=filter_subset, order_field=order_field, window_start=window_start, window_size=window_size) + api_response = api_instance.search_projects(also_others=also_others, not_granted=not_granted, for_managing=for_managing, title_filter=title_filter, instrument_filter=instrument_filter, filter_subset=filter_subset, order_field=order_field, summary=summary, window_start=window_start, window_size=window_size) print("The response of ProjectsApi->search_projects:\n") pprint(api_response) except Exception as e: @@ -1095,6 +1096,7 @@ Name | Type | Description | Notes **instrument_filter** | **str**| Only return projects where this instrument was used. | [optional] [default to ''] **filter_subset** | **bool**| Only return projects having 'subset' in their names. | [optional] [default to False] **order_field** | **str**| One of ['instrument', 'instrument_url', 'highest_right', 'projid', 'title', 'visible', 'status', 'objcount', 'pctvalidated', 'pctclassified', 'classifsettings', 'classiffieldlist', 'popoverfieldlist', 'comments', 'description', 'rf_models_used', 'cnn_network_id'] | [optional] + **summary** | **bool**| Return projects except somme fields like bodc_variables if set to True. For projects list display purpose. | [optional] **window_start** | **int**| Skip `window_start` before returning data. | [optional] **window_size** | **int**| Return only `window_size` lines. | [optional] diff --git a/docs/UsersApi.md b/docs/UsersApi.md index 8bae1b7..9e48427 100644 --- a/docs/UsersApi.md +++ b/docs/UsersApi.md @@ -406,7 +406,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_users** -> List[UserModelWithRights] get_users(ids=ids) +> List[UserModelWithRights] get_users(ids=ids, summary=summary) Get Users @@ -440,10 +440,11 @@ with ecotaxa_py_client.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ecotaxa_py_client.UsersApi(api_client) ids = '' # str | String containing the list of one or more id separated by non-num char. **If several ids are provided**, one full info is returned per user. (optional) (default to '') + summary = true # bool | Return users except rights and last_used_projects if set to True. For users list display purpose. (optional) try: # Get Users - api_response = api_instance.get_users(ids=ids) + api_response = api_instance.get_users(ids=ids, summary=summary) print("The response of UsersApi->get_users:\n") pprint(api_response) except Exception as e: @@ -458,6 +459,7 @@ with ecotaxa_py_client.ApiClient(configuration) as api_client: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **ids** | **str**| String containing the list of one or more id separated by non-num char. **If several ids are provided**, one full info is returned per user. | [optional] [default to ''] + **summary** | **bool**| Return users except rights and last_used_projects if set to True. For users list display purpose. | [optional] ### Return type diff --git a/ecotaxa_py_client/__init__.py b/ecotaxa_py_client/__init__.py index 4706329..acf64ca 100644 --- a/ecotaxa_py_client/__init__.py +++ b/ecotaxa_py_client/__init__.py @@ -7,14 +7,14 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. """ # noqa: E501 -__version__ = "2.0.1" +__version__ = "2.0.2" # import apis into sdk package from ecotaxa_py_client.api.files_api import FilesApi diff --git a/ecotaxa_py_client/api/acquisitions_api.py b/ecotaxa_py_client/api/acquisitions_api.py index 4c9c5ca..590d086 100644 --- a/ecotaxa_py_client/api/acquisitions_api.py +++ b/ecotaxa_py_client/api/acquisitions_api.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/api/admin_api.py b/ecotaxa_py_client/api/admin_api.py index 2c02f56..f1a1f82 100644 --- a/ecotaxa_py_client/api/admin_api.py +++ b/ecotaxa_py_client/api/admin_api.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/api/authentification_api.py b/ecotaxa_py_client/api/authentification_api.py index 0281ce8..543db61 100644 --- a/ecotaxa_py_client/api/authentification_api.py +++ b/ecotaxa_py_client/api/authentification_api.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/api/collections_api.py b/ecotaxa_py_client/api/collections_api.py index cf822e1..bfdda30 100644 --- a/ecotaxa_py_client/api/collections_api.py +++ b/ecotaxa_py_client/api/collections_api.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/api/files_api.py b/ecotaxa_py_client/api/files_api.py index 86215a3..ed0cb2d 100644 --- a/ecotaxa_py_client/api/files_api.py +++ b/ecotaxa_py_client/api/files_api.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/api/instruments_api.py b/ecotaxa_py_client/api/instruments_api.py index 638a7a4..8ef686a 100644 --- a/ecotaxa_py_client/api/instruments_api.py +++ b/ecotaxa_py_client/api/instruments_api.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/api/jobs_api.py b/ecotaxa_py_client/api/jobs_api.py index 69a8858..91ba2ef 100644 --- a/ecotaxa_py_client/api/jobs_api.py +++ b/ecotaxa_py_client/api/jobs_api.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/api/misc_api.py b/ecotaxa_py_client/api/misc_api.py index caadcee..6e860c5 100644 --- a/ecotaxa_py_client/api/misc_api.py +++ b/ecotaxa_py_client/api/misc_api.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/api/object_api.py b/ecotaxa_py_client/api/object_api.py index abb72be..b684350 100644 --- a/ecotaxa_py_client/api/object_api.py +++ b/ecotaxa_py_client/api/object_api.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/api/objects_api.py b/ecotaxa_py_client/api/objects_api.py index 23686b2..6e3ab3b 100644 --- a/ecotaxa_py_client/api/objects_api.py +++ b/ecotaxa_py_client/api/objects_api.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/api/processes_api.py b/ecotaxa_py_client/api/processes_api.py index a35e358..05b0b8a 100644 --- a/ecotaxa_py_client/api/processes_api.py +++ b/ecotaxa_py_client/api/processes_api.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/api/projects_api.py b/ecotaxa_py_client/api/projects_api.py index 3cb97a4..18b1108 100644 --- a/ecotaxa_py_client/api/projects_api.py +++ b/ecotaxa_py_client/api/projects_api.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. @@ -3664,6 +3664,7 @@ def search_projects( instrument_filter: Annotated[Optional[StrictStr], Field(description="Only return projects where this instrument was used.")] = None, filter_subset: Annotated[Optional[StrictBool], Field(description="Only return projects having 'subset' in their names.")] = None, order_field: Annotated[Optional[StrictStr], Field(description="One of ['instrument', 'instrument_url', 'highest_right', 'projid', 'title', 'visible', 'status', 'objcount', 'pctvalidated', 'pctclassified', 'classifsettings', 'classiffieldlist', 'popoverfieldlist', 'comments', 'description', 'rf_models_used', 'cnn_network_id']")] = None, + summary: Annotated[Optional[StrictBool], Field(description="Return projects except somme fields like bodc_variables if set to True. For projects list display purpose.")] = None, window_start: Annotated[Optional[StrictInt], Field(description="Skip `window_start` before returning data.")] = None, window_size: Annotated[Optional[StrictInt], Field(description="Return only `window_size` lines.")] = None, _request_timeout: Union[ @@ -3697,6 +3698,8 @@ def search_projects( :type filter_subset: bool :param order_field: One of ['instrument', 'instrument_url', 'highest_right', 'projid', 'title', 'visible', 'status', 'objcount', 'pctvalidated', 'pctclassified', 'classifsettings', 'classiffieldlist', 'popoverfieldlist', 'comments', 'description', 'rf_models_used', 'cnn_network_id'] :type order_field: str + :param summary: Return projects except somme fields like bodc_variables if set to True. For projects list display purpose. + :type summary: bool :param window_start: Skip `window_start` before returning data. :type window_start: int :param window_size: Return only `window_size` lines. @@ -3731,6 +3734,7 @@ def search_projects( instrument_filter=instrument_filter, filter_subset=filter_subset, order_field=order_field, + summary=summary, window_start=window_start, window_size=window_size, _request_auth=_request_auth, @@ -3764,6 +3768,7 @@ def search_projects_with_http_info( instrument_filter: Annotated[Optional[StrictStr], Field(description="Only return projects where this instrument was used.")] = None, filter_subset: Annotated[Optional[StrictBool], Field(description="Only return projects having 'subset' in their names.")] = None, order_field: Annotated[Optional[StrictStr], Field(description="One of ['instrument', 'instrument_url', 'highest_right', 'projid', 'title', 'visible', 'status', 'objcount', 'pctvalidated', 'pctclassified', 'classifsettings', 'classiffieldlist', 'popoverfieldlist', 'comments', 'description', 'rf_models_used', 'cnn_network_id']")] = None, + summary: Annotated[Optional[StrictBool], Field(description="Return projects except somme fields like bodc_variables if set to True. For projects list display purpose.")] = None, window_start: Annotated[Optional[StrictInt], Field(description="Skip `window_start` before returning data.")] = None, window_size: Annotated[Optional[StrictInt], Field(description="Return only `window_size` lines.")] = None, _request_timeout: Union[ @@ -3797,6 +3802,8 @@ def search_projects_with_http_info( :type filter_subset: bool :param order_field: One of ['instrument', 'instrument_url', 'highest_right', 'projid', 'title', 'visible', 'status', 'objcount', 'pctvalidated', 'pctclassified', 'classifsettings', 'classiffieldlist', 'popoverfieldlist', 'comments', 'description', 'rf_models_used', 'cnn_network_id'] :type order_field: str + :param summary: Return projects except somme fields like bodc_variables if set to True. For projects list display purpose. + :type summary: bool :param window_start: Skip `window_start` before returning data. :type window_start: int :param window_size: Return only `window_size` lines. @@ -3831,6 +3838,7 @@ def search_projects_with_http_info( instrument_filter=instrument_filter, filter_subset=filter_subset, order_field=order_field, + summary=summary, window_start=window_start, window_size=window_size, _request_auth=_request_auth, @@ -3864,6 +3872,7 @@ def search_projects_without_preload_content( instrument_filter: Annotated[Optional[StrictStr], Field(description="Only return projects where this instrument was used.")] = None, filter_subset: Annotated[Optional[StrictBool], Field(description="Only return projects having 'subset' in their names.")] = None, order_field: Annotated[Optional[StrictStr], Field(description="One of ['instrument', 'instrument_url', 'highest_right', 'projid', 'title', 'visible', 'status', 'objcount', 'pctvalidated', 'pctclassified', 'classifsettings', 'classiffieldlist', 'popoverfieldlist', 'comments', 'description', 'rf_models_used', 'cnn_network_id']")] = None, + summary: Annotated[Optional[StrictBool], Field(description="Return projects except somme fields like bodc_variables if set to True. For projects list display purpose.")] = None, window_start: Annotated[Optional[StrictInt], Field(description="Skip `window_start` before returning data.")] = None, window_size: Annotated[Optional[StrictInt], Field(description="Return only `window_size` lines.")] = None, _request_timeout: Union[ @@ -3897,6 +3906,8 @@ def search_projects_without_preload_content( :type filter_subset: bool :param order_field: One of ['instrument', 'instrument_url', 'highest_right', 'projid', 'title', 'visible', 'status', 'objcount', 'pctvalidated', 'pctclassified', 'classifsettings', 'classiffieldlist', 'popoverfieldlist', 'comments', 'description', 'rf_models_used', 'cnn_network_id'] :type order_field: str + :param summary: Return projects except somme fields like bodc_variables if set to True. For projects list display purpose. + :type summary: bool :param window_start: Skip `window_start` before returning data. :type window_start: int :param window_size: Return only `window_size` lines. @@ -3931,6 +3942,7 @@ def search_projects_without_preload_content( instrument_filter=instrument_filter, filter_subset=filter_subset, order_field=order_field, + summary=summary, window_start=window_start, window_size=window_size, _request_auth=_request_auth, @@ -3959,6 +3971,7 @@ def _search_projects_serialize( instrument_filter, filter_subset, order_field, + summary, window_start, window_size, _request_auth, @@ -4009,6 +4022,10 @@ def _search_projects_serialize( _query_params.append(('order_field', order_field)) + if summary is not None: + + _query_params.append(('summary', summary)) + if window_start is not None: _query_params.append(('window_start', window_start)) diff --git a/ecotaxa_py_client/api/samples_api.py b/ecotaxa_py_client/api/samples_api.py index 4f13613..c76376e 100644 --- a/ecotaxa_py_client/api/samples_api.py +++ b/ecotaxa_py_client/api/samples_api.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/api/taxonomy_tree_api.py b/ecotaxa_py_client/api/taxonomy_tree_api.py index e1a038b..c13cd40 100644 --- a/ecotaxa_py_client/api/taxonomy_tree_api.py +++ b/ecotaxa_py_client/api/taxonomy_tree_api.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/api/users_api.py b/ecotaxa_py_client/api/users_api.py index e479084..61cdb72 100644 --- a/ecotaxa_py_client/api/users_api.py +++ b/ecotaxa_py_client/api/users_api.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. @@ -16,7 +16,7 @@ from typing import Any, Dict, List, Optional, Tuple, Union from typing_extensions import Annotated -from pydantic import Field, StrictInt, StrictStr +from pydantic import Field, StrictBool, StrictInt, StrictStr from typing import List, Optional from typing_extensions import Annotated from ecotaxa_py_client.models.min_user_model import MinUserModel @@ -1459,6 +1459,7 @@ def _get_user_serialize( def get_users( self, ids: Annotated[Optional[StrictStr], Field(description="String containing the list of one or more id separated by non-num char. **If several ids are provided**, one full info is returned per user.")] = None, + summary: Annotated[Optional[StrictBool], Field(description="Return users except rights and last_used_projects if set to True. For users list display purpose.")] = None, _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -1478,6 +1479,8 @@ def get_users( :param ids: String containing the list of one or more id separated by non-num char. **If several ids are provided**, one full info is returned per user. :type ids: str + :param summary: Return users except rights and last_used_projects if set to True. For users list display purpose. + :type summary: bool :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of @@ -1502,6 +1505,7 @@ def get_users( _param = self._get_users_serialize( ids=ids, + summary=summary, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, @@ -1527,6 +1531,7 @@ def get_users( def get_users_with_http_info( self, ids: Annotated[Optional[StrictStr], Field(description="String containing the list of one or more id separated by non-num char. **If several ids are provided**, one full info is returned per user.")] = None, + summary: Annotated[Optional[StrictBool], Field(description="Return users except rights and last_used_projects if set to True. For users list display purpose.")] = None, _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -1546,6 +1551,8 @@ def get_users_with_http_info( :param ids: String containing the list of one or more id separated by non-num char. **If several ids are provided**, one full info is returned per user. :type ids: str + :param summary: Return users except rights and last_used_projects if set to True. For users list display purpose. + :type summary: bool :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of @@ -1570,6 +1577,7 @@ def get_users_with_http_info( _param = self._get_users_serialize( ids=ids, + summary=summary, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, @@ -1595,6 +1603,7 @@ def get_users_with_http_info( def get_users_without_preload_content( self, ids: Annotated[Optional[StrictStr], Field(description="String containing the list of one or more id separated by non-num char. **If several ids are provided**, one full info is returned per user.")] = None, + summary: Annotated[Optional[StrictBool], Field(description="Return users except rights and last_used_projects if set to True. For users list display purpose.")] = None, _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -1614,6 +1623,8 @@ def get_users_without_preload_content( :param ids: String containing the list of one or more id separated by non-num char. **If several ids are provided**, one full info is returned per user. :type ids: str + :param summary: Return users except rights and last_used_projects if set to True. For users list display purpose. + :type summary: bool :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of @@ -1638,6 +1649,7 @@ def get_users_without_preload_content( _param = self._get_users_serialize( ids=ids, + summary=summary, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, @@ -1658,6 +1670,7 @@ def get_users_without_preload_content( def _get_users_serialize( self, ids, + summary, _request_auth, _content_type, _headers, @@ -1682,6 +1695,10 @@ def _get_users_serialize( _query_params.append(('ids', ids)) + if summary is not None: + + _query_params.append(('summary', summary)) + # process the header parameters # process the form parameters # process the body parameter diff --git a/ecotaxa_py_client/api/wip_api.py b/ecotaxa_py_client/api/wip_api.py index bb9d840..448b31b 100644 --- a/ecotaxa_py_client/api/wip_api.py +++ b/ecotaxa_py_client/api/wip_api.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/api_client.py b/ecotaxa_py_client/api_client.py index e364f42..f6d3172 100644 --- a/ecotaxa_py_client/api_client.py +++ b/ecotaxa_py_client/api_client.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. @@ -87,7 +87,7 @@ def __init__( self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'OpenAPI-Generator/2.0.1/python' + self.user_agent = 'OpenAPI-Generator/2.0.2/python' self.client_side_validation = configuration.client_side_validation def __enter__(self): diff --git a/ecotaxa_py_client/configuration.py b/ecotaxa_py_client/configuration.py index a87d8e4..fd4a9c7 100644 --- a/ecotaxa_py_client/configuration.py +++ b/ecotaxa_py_client/configuration.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. @@ -377,8 +377,8 @@ def to_debug_report(self): return "Python SDK Debug Report:\n"\ "OS: {env}\n"\ "Python Version: {pyversion}\n"\ - "Version of the API: 0.0.36\n"\ - "SDK Package Version: 2.0.1".\ + "Version of the API: 0.0.37\n"\ + "SDK Package Version: 2.0.2".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self): diff --git a/ecotaxa_py_client/exceptions.py b/ecotaxa_py_client/exceptions.py index 7ca5464..dc682e7 100644 --- a/ecotaxa_py_client/exceptions.py +++ b/ecotaxa_py_client/exceptions.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/__init__.py b/ecotaxa_py_client/models/__init__.py index 0cecc59..bbdb7b9 100644 --- a/ecotaxa_py_client/models/__init__.py +++ b/ecotaxa_py_client/models/__init__.py @@ -6,7 +6,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/acquisition_model.py b/ecotaxa_py_client/models/acquisition_model.py index 2b1ec78..9768614 100644 --- a/ecotaxa_py_client/models/acquisition_model.py +++ b/ecotaxa_py_client/models/acquisition_model.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/backup_export_req.py b/ecotaxa_py_client/models/backup_export_req.py index b2e77e9..9e78a7c 100644 --- a/ecotaxa_py_client/models/backup_export_req.py +++ b/ecotaxa_py_client/models/backup_export_req.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/body_export_object_set_backup_object_set_export_backup_post.py b/ecotaxa_py_client/models/body_export_object_set_backup_object_set_export_backup_post.py index 4ebeca9..7522782 100644 --- a/ecotaxa_py_client/models/body_export_object_set_backup_object_set_export_backup_post.py +++ b/ecotaxa_py_client/models/body_export_object_set_backup_object_set_export_backup_post.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/body_export_object_set_general_object_set_export_general_post.py b/ecotaxa_py_client/models/body_export_object_set_general_object_set_export_general_post.py index ea8a6d0..91c885a 100644 --- a/ecotaxa_py_client/models/body_export_object_set_general_object_set_export_general_post.py +++ b/ecotaxa_py_client/models/body_export_object_set_general_object_set_export_general_post.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/body_export_object_set_object_set_export_post.py b/ecotaxa_py_client/models/body_export_object_set_object_set_export_post.py index 0e254bb..72e8f27 100644 --- a/ecotaxa_py_client/models/body_export_object_set_object_set_export_post.py +++ b/ecotaxa_py_client/models/body_export_object_set_object_set_export_post.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/body_export_object_set_summary_object_set_export_summary_post.py b/ecotaxa_py_client/models/body_export_object_set_summary_object_set_export_summary_post.py index dc13411..de9a3a9 100644 --- a/ecotaxa_py_client/models/body_export_object_set_summary_object_set_export_summary_post.py +++ b/ecotaxa_py_client/models/body_export_object_set_summary_object_set_export_summary_post.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/body_predict_object_set_object_set_predict_post.py b/ecotaxa_py_client/models/body_predict_object_set_object_set_predict_post.py index f30ae8a..93f5bc0 100644 --- a/ecotaxa_py_client/models/body_predict_object_set_object_set_predict_post.py +++ b/ecotaxa_py_client/models/body_predict_object_set_object_set_predict_post.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/bulk_update_req.py b/ecotaxa_py_client/models/bulk_update_req.py index 207bda7..f4d2178 100644 --- a/ecotaxa_py_client/models/bulk_update_req.py +++ b/ecotaxa_py_client/models/bulk_update_req.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/classify_auto_req.py b/ecotaxa_py_client/models/classify_auto_req.py index 7168200..c59fd67 100644 --- a/ecotaxa_py_client/models/classify_auto_req.py +++ b/ecotaxa_py_client/models/classify_auto_req.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/classify_req.py b/ecotaxa_py_client/models/classify_req.py index b8ddd11..d04195e 100644 --- a/ecotaxa_py_client/models/classify_req.py +++ b/ecotaxa_py_client/models/classify_req.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/col_update.py b/ecotaxa_py_client/models/col_update.py index 56ef7c1..bafab3c 100644 --- a/ecotaxa_py_client/models/col_update.py +++ b/ecotaxa_py_client/models/col_update.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/collection_model.py b/ecotaxa_py_client/models/collection_model.py index c2a2617..e0bdbc5 100644 --- a/ecotaxa_py_client/models/collection_model.py +++ b/ecotaxa_py_client/models/collection_model.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/constants.py b/ecotaxa_py_client/models/constants.py index dafe9d3..6a33b04 100644 --- a/ecotaxa_py_client/models/constants.py +++ b/ecotaxa_py_client/models/constants.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/create_collection_req.py b/ecotaxa_py_client/models/create_collection_req.py index ea7831a..4d62c9d 100644 --- a/ecotaxa_py_client/models/create_collection_req.py +++ b/ecotaxa_py_client/models/create_collection_req.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/create_project_req.py b/ecotaxa_py_client/models/create_project_req.py index 0c499a6..2c83fdf 100644 --- a/ecotaxa_py_client/models/create_project_req.py +++ b/ecotaxa_py_client/models/create_project_req.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/darwin_core_export_req.py b/ecotaxa_py_client/models/darwin_core_export_req.py index 3fa6060..c474c5e 100644 --- a/ecotaxa_py_client/models/darwin_core_export_req.py +++ b/ecotaxa_py_client/models/darwin_core_export_req.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/directory_entry_model.py b/ecotaxa_py_client/models/directory_entry_model.py index 67d21fe..0a05dc5 100644 --- a/ecotaxa_py_client/models/directory_entry_model.py +++ b/ecotaxa_py_client/models/directory_entry_model.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/directory_model.py b/ecotaxa_py_client/models/directory_model.py index 4c6d70c..b06fb9d 100644 --- a/ecotaxa_py_client/models/directory_model.py +++ b/ecotaxa_py_client/models/directory_model.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/export_images_options_enum.py b/ecotaxa_py_client/models/export_images_options_enum.py index fd6be70..8c4113a 100644 --- a/ecotaxa_py_client/models/export_images_options_enum.py +++ b/ecotaxa_py_client/models/export_images_options_enum.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/export_req.py b/ecotaxa_py_client/models/export_req.py index 330e01e..558cad1 100644 --- a/ecotaxa_py_client/models/export_req.py +++ b/ecotaxa_py_client/models/export_req.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/export_rsp.py b/ecotaxa_py_client/models/export_rsp.py index e77ad26..b3bba62 100644 --- a/ecotaxa_py_client/models/export_rsp.py +++ b/ecotaxa_py_client/models/export_rsp.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/export_split_options_enum.py b/ecotaxa_py_client/models/export_split_options_enum.py index ea7a315..fa82b88 100644 --- a/ecotaxa_py_client/models/export_split_options_enum.py +++ b/ecotaxa_py_client/models/export_split_options_enum.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/export_type_enum.py b/ecotaxa_py_client/models/export_type_enum.py index 9925f6d..0c35ff7 100644 --- a/ecotaxa_py_client/models/export_type_enum.py +++ b/ecotaxa_py_client/models/export_type_enum.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/general_export_req.py b/ecotaxa_py_client/models/general_export_req.py index 8b5ee73..f83840b 100644 --- a/ecotaxa_py_client/models/general_export_req.py +++ b/ecotaxa_py_client/models/general_export_req.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/group_definitions.py b/ecotaxa_py_client/models/group_definitions.py index 1f9c6cd..d4ca4db 100644 --- a/ecotaxa_py_client/models/group_definitions.py +++ b/ecotaxa_py_client/models/group_definitions.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/historical_classification.py b/ecotaxa_py_client/models/historical_classification.py index 4347c6e..0397bc5 100644 --- a/ecotaxa_py_client/models/historical_classification.py +++ b/ecotaxa_py_client/models/historical_classification.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/historical_last_classif.py b/ecotaxa_py_client/models/historical_last_classif.py index 298f675..1376bcc 100644 --- a/ecotaxa_py_client/models/historical_last_classif.py +++ b/ecotaxa_py_client/models/historical_last_classif.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/http_validation_error.py b/ecotaxa_py_client/models/http_validation_error.py index 9cad732..9d14c15 100644 --- a/ecotaxa_py_client/models/http_validation_error.py +++ b/ecotaxa_py_client/models/http_validation_error.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/image_model.py b/ecotaxa_py_client/models/image_model.py index 20eeeec..2b14e9d 100644 --- a/ecotaxa_py_client/models/image_model.py +++ b/ecotaxa_py_client/models/image_model.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/import_req.py b/ecotaxa_py_client/models/import_req.py index 78626ea..1e74fec 100644 --- a/ecotaxa_py_client/models/import_req.py +++ b/ecotaxa_py_client/models/import_req.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/import_rsp.py b/ecotaxa_py_client/models/import_rsp.py index f540309..4000b4d 100644 --- a/ecotaxa_py_client/models/import_rsp.py +++ b/ecotaxa_py_client/models/import_rsp.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/job_model.py b/ecotaxa_py_client/models/job_model.py index f185e77..2eab27a 100644 --- a/ecotaxa_py_client/models/job_model.py +++ b/ecotaxa_py_client/models/job_model.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/license_enum.py b/ecotaxa_py_client/models/license_enum.py index 5688180..6aabb0f 100644 --- a/ecotaxa_py_client/models/license_enum.py +++ b/ecotaxa_py_client/models/license_enum.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/limit_methods.py b/ecotaxa_py_client/models/limit_methods.py index 5830cb9..b8b2be4 100644 --- a/ecotaxa_py_client/models/limit_methods.py +++ b/ecotaxa_py_client/models/limit_methods.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/login_req.py b/ecotaxa_py_client/models/login_req.py index dc6d186..d3ae378 100644 --- a/ecotaxa_py_client/models/login_req.py +++ b/ecotaxa_py_client/models/login_req.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/merge_rsp.py b/ecotaxa_py_client/models/merge_rsp.py index 42aa9db..64f14d3 100644 --- a/ecotaxa_py_client/models/merge_rsp.py +++ b/ecotaxa_py_client/models/merge_rsp.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/min_user_model.py b/ecotaxa_py_client/models/min_user_model.py index 92d5aaa..d3f6f08 100644 --- a/ecotaxa_py_client/models/min_user_model.py +++ b/ecotaxa_py_client/models/min_user_model.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/minimal_user_bo.py b/ecotaxa_py_client/models/minimal_user_bo.py index a27c6d8..6465b41 100644 --- a/ecotaxa_py_client/models/minimal_user_bo.py +++ b/ecotaxa_py_client/models/minimal_user_bo.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/ml_model.py b/ecotaxa_py_client/models/ml_model.py index 9aa9333..298c0a6 100644 --- a/ecotaxa_py_client/models/ml_model.py +++ b/ecotaxa_py_client/models/ml_model.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/object_header_model.py b/ecotaxa_py_client/models/object_header_model.py index 42b6fc2..38fe49e 100644 --- a/ecotaxa_py_client/models/object_header_model.py +++ b/ecotaxa_py_client/models/object_header_model.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/object_model.py b/ecotaxa_py_client/models/object_model.py index 207c118..08ce9c8 100644 --- a/ecotaxa_py_client/models/object_model.py +++ b/ecotaxa_py_client/models/object_model.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/object_set_query_rsp.py b/ecotaxa_py_client/models/object_set_query_rsp.py index 5d47039..742992e 100644 --- a/ecotaxa_py_client/models/object_set_query_rsp.py +++ b/ecotaxa_py_client/models/object_set_query_rsp.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/object_set_revert_to_history_rsp.py b/ecotaxa_py_client/models/object_set_revert_to_history_rsp.py index f78f56f..4f94aac 100644 --- a/ecotaxa_py_client/models/object_set_revert_to_history_rsp.py +++ b/ecotaxa_py_client/models/object_set_revert_to_history_rsp.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/object_set_summary_rsp.py b/ecotaxa_py_client/models/object_set_summary_rsp.py index 28b6469..274e0fc 100644 --- a/ecotaxa_py_client/models/object_set_summary_rsp.py +++ b/ecotaxa_py_client/models/object_set_summary_rsp.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/prediction_req.py b/ecotaxa_py_client/models/prediction_req.py index 7028958..48d1550 100644 --- a/ecotaxa_py_client/models/prediction_req.py +++ b/ecotaxa_py_client/models/prediction_req.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/prediction_rsp.py b/ecotaxa_py_client/models/prediction_rsp.py index d7d300c..692eaa3 100644 --- a/ecotaxa_py_client/models/prediction_rsp.py +++ b/ecotaxa_py_client/models/prediction_rsp.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/process_model.py b/ecotaxa_py_client/models/process_model.py index edaa2eb..f041389 100644 --- a/ecotaxa_py_client/models/process_model.py +++ b/ecotaxa_py_client/models/process_model.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/project_filters.py b/ecotaxa_py_client/models/project_filters.py index f3cb047..c2fac7b 100644 --- a/ecotaxa_py_client/models/project_filters.py +++ b/ecotaxa_py_client/models/project_filters.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/project_filters_dict.py b/ecotaxa_py_client/models/project_filters_dict.py index 63815ca..deb0f7b 100644 --- a/ecotaxa_py_client/models/project_filters_dict.py +++ b/ecotaxa_py_client/models/project_filters_dict.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/project_model.py b/ecotaxa_py_client/models/project_model.py index 27b8e86..af5b489 100644 --- a/ecotaxa_py_client/models/project_model.py +++ b/ecotaxa_py_client/models/project_model.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/project_set_column_stats_model.py b/ecotaxa_py_client/models/project_set_column_stats_model.py index 3459a0b..ab9e6ea 100644 --- a/ecotaxa_py_client/models/project_set_column_stats_model.py +++ b/ecotaxa_py_client/models/project_set_column_stats_model.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/project_summary_model.py b/ecotaxa_py_client/models/project_summary_model.py index 6b523ab..c0d9170 100644 --- a/ecotaxa_py_client/models/project_summary_model.py +++ b/ecotaxa_py_client/models/project_summary_model.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/project_taxo_stats_model.py b/ecotaxa_py_client/models/project_taxo_stats_model.py index da20e46..333085d 100644 --- a/ecotaxa_py_client/models/project_taxo_stats_model.py +++ b/ecotaxa_py_client/models/project_taxo_stats_model.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/project_user_stats_model.py b/ecotaxa_py_client/models/project_user_stats_model.py index 9e292ef..3af012e 100644 --- a/ecotaxa_py_client/models/project_user_stats_model.py +++ b/ecotaxa_py_client/models/project_user_stats_model.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/reset_password_req.py b/ecotaxa_py_client/models/reset_password_req.py index 90ec567..c6c5c4f 100644 --- a/ecotaxa_py_client/models/reset_password_req.py +++ b/ecotaxa_py_client/models/reset_password_req.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/response_do_nothing_noop_get.py b/ecotaxa_py_client/models/response_do_nothing_noop_get.py index 004bc40..cba4fcc 100644 --- a/ecotaxa_py_client/models/response_do_nothing_noop_get.py +++ b/ecotaxa_py_client/models/response_do_nothing_noop_get.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/sample_model.py b/ecotaxa_py_client/models/sample_model.py index 5b490ad..af1c302 100644 --- a/ecotaxa_py_client/models/sample_model.py +++ b/ecotaxa_py_client/models/sample_model.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/sample_taxo_stats_model.py b/ecotaxa_py_client/models/sample_taxo_stats_model.py index 26fd339..8e322c5 100644 --- a/ecotaxa_py_client/models/sample_taxo_stats_model.py +++ b/ecotaxa_py_client/models/sample_taxo_stats_model.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/sci_export_type_enum.py b/ecotaxa_py_client/models/sci_export_type_enum.py index f88c978..159844e 100644 --- a/ecotaxa_py_client/models/sci_export_type_enum.py +++ b/ecotaxa_py_client/models/sci_export_type_enum.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/simple_import_req.py b/ecotaxa_py_client/models/simple_import_req.py index 35c7de7..3a10049 100644 --- a/ecotaxa_py_client/models/simple_import_req.py +++ b/ecotaxa_py_client/models/simple_import_req.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/simple_import_rsp.py b/ecotaxa_py_client/models/simple_import_rsp.py index adcbd70..606b3df 100644 --- a/ecotaxa_py_client/models/simple_import_rsp.py +++ b/ecotaxa_py_client/models/simple_import_rsp.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/subset_req.py b/ecotaxa_py_client/models/subset_req.py index ffe212f..6912dae 100644 --- a/ecotaxa_py_client/models/subset_req.py +++ b/ecotaxa_py_client/models/subset_req.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/subset_rsp.py b/ecotaxa_py_client/models/subset_rsp.py index 1196f7e..e09adba 100644 --- a/ecotaxa_py_client/models/subset_rsp.py +++ b/ecotaxa_py_client/models/subset_rsp.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/summary_export_grouping_enum.py b/ecotaxa_py_client/models/summary_export_grouping_enum.py index ff1e3fb..71196dd 100644 --- a/ecotaxa_py_client/models/summary_export_grouping_enum.py +++ b/ecotaxa_py_client/models/summary_export_grouping_enum.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/summary_export_quantities_options_enum.py b/ecotaxa_py_client/models/summary_export_quantities_options_enum.py index d63f98c..9ea5c98 100644 --- a/ecotaxa_py_client/models/summary_export_quantities_options_enum.py +++ b/ecotaxa_py_client/models/summary_export_quantities_options_enum.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/summary_export_req.py b/ecotaxa_py_client/models/summary_export_req.py index 3265ec7..2f66282 100644 --- a/ecotaxa_py_client/models/summary_export_req.py +++ b/ecotaxa_py_client/models/summary_export_req.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/summary_export_sum_options_enum.py b/ecotaxa_py_client/models/summary_export_sum_options_enum.py index 2efff69..a627c01 100644 --- a/ecotaxa_py_client/models/summary_export_sum_options_enum.py +++ b/ecotaxa_py_client/models/summary_export_sum_options_enum.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/taxa_search_rsp.py b/ecotaxa_py_client/models/taxa_search_rsp.py index 48713f4..0f6d6a3 100644 --- a/ecotaxa_py_client/models/taxa_search_rsp.py +++ b/ecotaxa_py_client/models/taxa_search_rsp.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/taxon_central.py b/ecotaxa_py_client/models/taxon_central.py index 19da0ad..9bddb8a 100644 --- a/ecotaxa_py_client/models/taxon_central.py +++ b/ecotaxa_py_client/models/taxon_central.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/taxon_model.py b/ecotaxa_py_client/models/taxon_model.py index 87245db..4818f25 100644 --- a/ecotaxa_py_client/models/taxon_model.py +++ b/ecotaxa_py_client/models/taxon_model.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/taxon_usage_model.py b/ecotaxa_py_client/models/taxon_usage_model.py index 170c98f..531f74b 100644 --- a/ecotaxa_py_client/models/taxon_usage_model.py +++ b/ecotaxa_py_client/models/taxon_usage_model.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/taxonomy_recast.py b/ecotaxa_py_client/models/taxonomy_recast.py index c9e0628..d81a748 100644 --- a/ecotaxa_py_client/models/taxonomy_recast.py +++ b/ecotaxa_py_client/models/taxonomy_recast.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/taxonomy_tree_status.py b/ecotaxa_py_client/models/taxonomy_tree_status.py index d55e07d..6591e81 100644 --- a/ecotaxa_py_client/models/taxonomy_tree_status.py +++ b/ecotaxa_py_client/models/taxonomy_tree_status.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/user_activate_req.py b/ecotaxa_py_client/models/user_activate_req.py index e4b0cca..ae2e468 100644 --- a/ecotaxa_py_client/models/user_activate_req.py +++ b/ecotaxa_py_client/models/user_activate_req.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/user_activity.py b/ecotaxa_py_client/models/user_activity.py index f5b1217..b054eae 100644 --- a/ecotaxa_py_client/models/user_activity.py +++ b/ecotaxa_py_client/models/user_activity.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/user_model_with_rights.py b/ecotaxa_py_client/models/user_model_with_rights.py index cf3836d..e9382ed 100644 --- a/ecotaxa_py_client/models/user_model_with_rights.py +++ b/ecotaxa_py_client/models/user_model_with_rights.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/models/validation_error.py b/ecotaxa_py_client/models/validation_error.py index 4d73cff..c918b8d 100644 --- a/ecotaxa_py_client/models/validation_error.py +++ b/ecotaxa_py_client/models/validation_error.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/ecotaxa_py_client/rest.py b/ecotaxa_py_client/rest.py index 1229e27..6d5d783 100644 --- a/ecotaxa_py_client/rest.py +++ b/ecotaxa_py_client/rest.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/pyproject.toml b/pyproject.toml index 45e87a6..0d083d6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ecotaxa_py_client" -version = "2.0.1" +version = "2.0.2" description = "EcoTaxa" authors = ["OpenAPI Generator Community "] license = "NoLicense" diff --git a/setup.py b/setup.py index f2ab522..754a620 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - The version of the OpenAPI document: 0.0.36 + The version of the OpenAPI document: 0.0.37 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. @@ -21,7 +21,7 @@ # prerequisite: setuptools # http://pypi.python.org/pypi/setuptools NAME = "ecotaxa_py_client" -VERSION = "2.0.1" +VERSION = "2.0.2" PYTHON_REQUIRES = ">=3.7" REQUIRES = [ "urllib3 >= 1.25.3, < 2.1.0",