From faa4f44b1460d5d20fc9f4e65c4a9b9e3f379bcc Mon Sep 17 00:00:00 2001 From: GitLab CI/CD Date: Thu, 18 Jul 2024 13:08:38 +0000 Subject: [PATCH] Generated update for version 8.1.0. Please review before merging. --- README.md | 2 +- docs/SnappingServiceApi.md | 6 +++--- openrouteservice/__init__.py | 4 ++-- openrouteservice/api/directions_service_api.py | 4 ++-- openrouteservice/api/elevation_api.py | 4 ++-- openrouteservice/api/geocode_api.py | 4 ++-- openrouteservice/api/isochrones_service_api.py | 4 ++-- openrouteservice/api/matrix_service_api.py | 4 ++-- openrouteservice/api/optimization_api.py | 4 ++-- openrouteservice/api/pois_api.py | 4 ++-- openrouteservice/api/snapping_service_api.py | 16 ++++++++-------- openrouteservice/api_client.py | 6 +++--- openrouteservice/configuration.py | 8 ++++---- openrouteservice/models/__init__.py | 4 ++-- openrouteservice/models/alternative_routes.py | 4 ++-- .../models/directions_service_body.py | 4 ++-- openrouteservice/models/elevation_line_body.py | 4 ++-- openrouteservice/models/elevation_point_body.py | 4 ++-- .../models/isochrones_profile_body.py | 4 ++-- openrouteservice/models/json_response.py | 4 ++-- openrouteservice/models/matrix_profile_body.py | 4 ++-- .../models/openpoiservice_poi_request.py | 4 ++-- openrouteservice/models/optimization_body.py | 4 ++-- openrouteservice/models/optimization_breaks.py | 4 ++-- openrouteservice/models/optimization_costs.py | 4 ++-- openrouteservice/models/optimization_jobs.py | 4 ++-- openrouteservice/models/optimization_matrices.py | 4 ++-- .../optimization_matrices_cyclingelectric.py | 4 ++-- openrouteservice/models/optimization_options.py | 4 ++-- openrouteservice/models/optimization_steps.py | 4 ++-- openrouteservice/models/optimization_vehicles.py | 4 ++-- openrouteservice/models/pois_filters.py | 4 ++-- openrouteservice/models/pois_geometry.py | 4 ++-- openrouteservice/models/profile_geojson_body.py | 4 ++-- openrouteservice/models/profile_json_body.py | 4 ++-- openrouteservice/models/profile_parameters.py | 4 ++-- .../models/profile_parameters_restrictions.py | 4 ++-- openrouteservice/models/profile_weightings.py | 4 ++-- .../models/round_trip_route_options.py | 4 ++-- openrouteservice/models/route_options.py | 4 ++-- .../models/route_options_avoid_polygons.py | 4 ++-- openrouteservice/models/snap_profile_body.py | 4 ++-- openrouteservice/rest.py | 4 ++-- pyproject.toml | 2 +- setup.py | 6 +++--- 45 files changed, 99 insertions(+), 99 deletions(-) diff --git a/README.md b/README.md index 3ee5153..4de960e 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ The openrouteservice library gives you painless access to the [openrouteservice] | API Version | Package version | Build package | | -------------- | ------------------ | ------------------ | -| 8.0.1 | 8.0.1 | io.swagger.codegen.v3.generators.python.PythonClientCodegen | +| 8.1.0 | 8.1.0 | io.swagger.codegen.v3.generators.python.PythonClientCodegen | For further details, please visit: - our [homepage](https://openrouteservice.org) diff --git a/docs/SnappingServiceApi.md b/docs/SnappingServiceApi.md index a0d7d8e..06529aa 100644 --- a/docs/SnappingServiceApi.md +++ b/docs/SnappingServiceApi.md @@ -16,7 +16,7 @@ Method | HTTP request | Description Snapping Service -Returns a list of points snapped to the nearest edge in the graph. In case an appropriate snapping point cannot be found within the specified search radius, \"null\" is returned. +Returns a list of points snapped to the nearest edge in the routing graph. In case an appropriate snapping point cannot be found within the specified search radius, \"null\" is returned. ### Example ```python @@ -66,7 +66,7 @@ Name | Type | Description | Notes Snapping Service GeoJSON -Returns a GeoJSON FeatureCollection of points snapped to the nearest edge in the graph. In case an appropriate snapping point cannot be found within the specified search radius, it is omitted from the features array. The features provide the 'source_id' property, to match the results with the input location array (IDs start at 0). +Returns a GeoJSON FeatureCollection of points snapped to the nearest edge in the routing graph. In case an appropriate snapping point cannot be found within the specified search radius, it is omitted from the features array. The features provide the 'source_id' property, to match the results with the input location array (IDs start at 0). ### Example ```python @@ -116,7 +116,7 @@ Name | Type | Description | Notes Snapping Service JSON -Returns a list of points snapped to the nearest edge in the graph. In case an appropriate snapping point cannot be found within the specified search radius, \"null\" is returned. +Returns a list of points snapped to the nearest edge in the routing graph. In case an appropriate snapping point cannot be found within the specified search radius, \"null\" is returned. ### Example ```python diff --git a/openrouteservice/__init__.py b/openrouteservice/__init__.py index 1ba6340..3355d24 100644 --- a/openrouteservice/__init__.py +++ b/openrouteservice/__init__.py @@ -5,9 +5,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/api/directions_service_api.py b/openrouteservice/api/directions_service_api.py index b9a6a93..295bb14 100644 --- a/openrouteservice/api/directions_service_api.py +++ b/openrouteservice/api/directions_service_api.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/api/elevation_api.py b/openrouteservice/api/elevation_api.py index ee8b324..404d07e 100644 --- a/openrouteservice/api/elevation_api.py +++ b/openrouteservice/api/elevation_api.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/api/geocode_api.py b/openrouteservice/api/geocode_api.py index b7cb955..a40d993 100644 --- a/openrouteservice/api/geocode_api.py +++ b/openrouteservice/api/geocode_api.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/api/isochrones_service_api.py b/openrouteservice/api/isochrones_service_api.py index 8d38422..a4964ad 100644 --- a/openrouteservice/api/isochrones_service_api.py +++ b/openrouteservice/api/isochrones_service_api.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/api/matrix_service_api.py b/openrouteservice/api/matrix_service_api.py index 87312e5..b156311 100644 --- a/openrouteservice/api/matrix_service_api.py +++ b/openrouteservice/api/matrix_service_api.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/api/optimization_api.py b/openrouteservice/api/optimization_api.py index 1d7c4d4..08440e8 100644 --- a/openrouteservice/api/optimization_api.py +++ b/openrouteservice/api/optimization_api.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/api/pois_api.py b/openrouteservice/api/pois_api.py index adc5e76..4cee77b 100644 --- a/openrouteservice/api/pois_api.py +++ b/openrouteservice/api/pois_api.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/api/snapping_service_api.py b/openrouteservice/api/snapping_service_api.py index bf49d58..e0b9ddb 100644 --- a/openrouteservice/api/snapping_service_api.py +++ b/openrouteservice/api/snapping_service_api.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -35,7 +35,7 @@ def __init__(self, api_client=None): def get_default(self, body, profile, **kwargs): # noqa: E501 """Snapping Service # noqa: E501 - Returns a list of points snapped to the nearest edge in the graph. In case an appropriate snapping point cannot be found within the specified search radius, \"null\" is returned. # noqa: E501 + Returns a list of points snapped to the nearest edge in the routing graph. In case an appropriate snapping point cannot be found within the specified search radius, \"null\" is returned. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_default(body, profile, async_req=True) @@ -58,7 +58,7 @@ def get_default(self, body, profile, **kwargs): # noqa: E501 def get_default_with_http_info(self, body, profile, **kwargs): # noqa: E501 """Snapping Service # noqa: E501 - Returns a list of points snapped to the nearest edge in the graph. In case an appropriate snapping point cannot be found within the specified search radius, \"null\" is returned. # noqa: E501 + Returns a list of points snapped to the nearest edge in the routing graph. In case an appropriate snapping point cannot be found within the specified search radius, \"null\" is returned. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_default_with_http_info(body, profile, async_req=True) @@ -142,7 +142,7 @@ def get_default_with_http_info(self, body, profile, **kwargs): # noqa: E501 def get_geo_json_snapping(self, body, profile, **kwargs): # noqa: E501 """Snapping Service GeoJSON # noqa: E501 - Returns a GeoJSON FeatureCollection of points snapped to the nearest edge in the graph. In case an appropriate snapping point cannot be found within the specified search radius, it is omitted from the features array. The features provide the 'source_id' property, to match the results with the input location array (IDs start at 0). # noqa: E501 + Returns a GeoJSON FeatureCollection of points snapped to the nearest edge in the routing graph. In case an appropriate snapping point cannot be found within the specified search radius, it is omitted from the features array. The features provide the 'source_id' property, to match the results with the input location array (IDs start at 0). # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_geo_json_snapping(body, profile, async_req=True) @@ -165,7 +165,7 @@ def get_geo_json_snapping(self, body, profile, **kwargs): # noqa: E501 def get_geo_json_snapping_with_http_info(self, body, profile, **kwargs): # noqa: E501 """Snapping Service GeoJSON # noqa: E501 - Returns a GeoJSON FeatureCollection of points snapped to the nearest edge in the graph. In case an appropriate snapping point cannot be found within the specified search radius, it is omitted from the features array. The features provide the 'source_id' property, to match the results with the input location array (IDs start at 0). # noqa: E501 + Returns a GeoJSON FeatureCollection of points snapped to the nearest edge in the routing graph. In case an appropriate snapping point cannot be found within the specified search radius, it is omitted from the features array. The features provide the 'source_id' property, to match the results with the input location array (IDs start at 0). # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_geo_json_snapping_with_http_info(body, profile, async_req=True) @@ -249,7 +249,7 @@ def get_geo_json_snapping_with_http_info(self, body, profile, **kwargs): # noqa def get_json_snapping(self, body, profile, **kwargs): # noqa: E501 """Snapping Service JSON # noqa: E501 - Returns a list of points snapped to the nearest edge in the graph. In case an appropriate snapping point cannot be found within the specified search radius, \"null\" is returned. # noqa: E501 + Returns a list of points snapped to the nearest edge in the routing graph. In case an appropriate snapping point cannot be found within the specified search radius, \"null\" is returned. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_json_snapping(body, profile, async_req=True) @@ -272,7 +272,7 @@ def get_json_snapping(self, body, profile, **kwargs): # noqa: E501 def get_json_snapping_with_http_info(self, body, profile, **kwargs): # noqa: E501 """Snapping Service JSON # noqa: E501 - Returns a list of points snapped to the nearest edge in the graph. In case an appropriate snapping point cannot be found within the specified search radius, \"null\" is returned. # noqa: E501 + Returns a list of points snapped to the nearest edge in the routing graph. In case an appropriate snapping point cannot be found within the specified search radius, \"null\" is returned. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_json_snapping_with_http_info(body, profile, async_req=True) diff --git a/openrouteservice/api_client.py b/openrouteservice/api_client.py index ba2695d..436cc9e 100644 --- a/openrouteservice/api_client.py +++ b/openrouteservice/api_client.py @@ -2,9 +2,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -72,7 +72,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None, self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'Swagger-Codegen/8.0.1/python' + self.user_agent = 'Swagger-Codegen/8.1.0/python' def __del__(self): self.pool.close() diff --git a/openrouteservice/configuration.py b/openrouteservice/configuration.py index c900990..35efaaa 100644 --- a/openrouteservice/configuration.py +++ b/openrouteservice/configuration.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -246,6 +246,6 @@ def to_debug_report(self): return "Python SDK Debug Report:\n"\ "OS: {env}\n"\ "Python Version: {pyversion}\n"\ - "Version of the API: 8.0.1\n"\ - "SDK Package Version: 8.0.1".\ + "Version of the API: 8.1.0\n"\ + "SDK Package Version: 8.1.0".\ format(env=sys.platform, pyversion=sys.version) diff --git a/openrouteservice/models/__init__.py b/openrouteservice/models/__init__.py index 3abbe97..943c6ac 100644 --- a/openrouteservice/models/__init__.py +++ b/openrouteservice/models/__init__.py @@ -4,9 +4,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/models/alternative_routes.py b/openrouteservice/models/alternative_routes.py index 33a1b0d..24b04d7 100644 --- a/openrouteservice/models/alternative_routes.py +++ b/openrouteservice/models/alternative_routes.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/models/directions_service_body.py b/openrouteservice/models/directions_service_body.py index 4096a9b..4c08fee 100644 --- a/openrouteservice/models/directions_service_body.py +++ b/openrouteservice/models/directions_service_body.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/models/elevation_line_body.py b/openrouteservice/models/elevation_line_body.py index 593c3b6..8461be0 100644 --- a/openrouteservice/models/elevation_line_body.py +++ b/openrouteservice/models/elevation_line_body.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/models/elevation_point_body.py b/openrouteservice/models/elevation_point_body.py index 731ba96..a471cde 100644 --- a/openrouteservice/models/elevation_point_body.py +++ b/openrouteservice/models/elevation_point_body.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/models/isochrones_profile_body.py b/openrouteservice/models/isochrones_profile_body.py index 734a2e8..052c6e8 100644 --- a/openrouteservice/models/isochrones_profile_body.py +++ b/openrouteservice/models/isochrones_profile_body.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/models/json_response.py b/openrouteservice/models/json_response.py index c7665b9..e0a5b8c 100644 --- a/openrouteservice/models/json_response.py +++ b/openrouteservice/models/json_response.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/models/matrix_profile_body.py b/openrouteservice/models/matrix_profile_body.py index 233ee9f..6bb6321 100644 --- a/openrouteservice/models/matrix_profile_body.py +++ b/openrouteservice/models/matrix_profile_body.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/models/openpoiservice_poi_request.py b/openrouteservice/models/openpoiservice_poi_request.py index a5a020f..a255ebb 100644 --- a/openrouteservice/models/openpoiservice_poi_request.py +++ b/openrouteservice/models/openpoiservice_poi_request.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/models/optimization_body.py b/openrouteservice/models/optimization_body.py index 40728d4..57cc4df 100644 --- a/openrouteservice/models/optimization_body.py +++ b/openrouteservice/models/optimization_body.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/models/optimization_breaks.py b/openrouteservice/models/optimization_breaks.py index 2ee120e..71a3863 100644 --- a/openrouteservice/models/optimization_breaks.py +++ b/openrouteservice/models/optimization_breaks.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/models/optimization_costs.py b/openrouteservice/models/optimization_costs.py index e5a02a7..d65f072 100644 --- a/openrouteservice/models/optimization_costs.py +++ b/openrouteservice/models/optimization_costs.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/models/optimization_jobs.py b/openrouteservice/models/optimization_jobs.py index 9fe1a8e..297a7ea 100644 --- a/openrouteservice/models/optimization_jobs.py +++ b/openrouteservice/models/optimization_jobs.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/models/optimization_matrices.py b/openrouteservice/models/optimization_matrices.py index ffcd9ce..582f3e3 100644 --- a/openrouteservice/models/optimization_matrices.py +++ b/openrouteservice/models/optimization_matrices.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/models/optimization_matrices_cyclingelectric.py b/openrouteservice/models/optimization_matrices_cyclingelectric.py index 2aa6d7a..8462b28 100644 --- a/openrouteservice/models/optimization_matrices_cyclingelectric.py +++ b/openrouteservice/models/optimization_matrices_cyclingelectric.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/models/optimization_options.py b/openrouteservice/models/optimization_options.py index b6af658..f9c20a1 100644 --- a/openrouteservice/models/optimization_options.py +++ b/openrouteservice/models/optimization_options.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/models/optimization_steps.py b/openrouteservice/models/optimization_steps.py index 0d7de3f..e78b1ee 100644 --- a/openrouteservice/models/optimization_steps.py +++ b/openrouteservice/models/optimization_steps.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/models/optimization_vehicles.py b/openrouteservice/models/optimization_vehicles.py index 85625bd..9a1337f 100644 --- a/openrouteservice/models/optimization_vehicles.py +++ b/openrouteservice/models/optimization_vehicles.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/models/pois_filters.py b/openrouteservice/models/pois_filters.py index 7cecb89..b1af8a7 100644 --- a/openrouteservice/models/pois_filters.py +++ b/openrouteservice/models/pois_filters.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/models/pois_geometry.py b/openrouteservice/models/pois_geometry.py index 38aa41c..3492490 100644 --- a/openrouteservice/models/pois_geometry.py +++ b/openrouteservice/models/pois_geometry.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/models/profile_geojson_body.py b/openrouteservice/models/profile_geojson_body.py index bca12ab..b6d4961 100644 --- a/openrouteservice/models/profile_geojson_body.py +++ b/openrouteservice/models/profile_geojson_body.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/models/profile_json_body.py b/openrouteservice/models/profile_json_body.py index 2e4de8c..786e4c5 100644 --- a/openrouteservice/models/profile_json_body.py +++ b/openrouteservice/models/profile_json_body.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/models/profile_parameters.py b/openrouteservice/models/profile_parameters.py index a85c7ae..6b1e43f 100644 --- a/openrouteservice/models/profile_parameters.py +++ b/openrouteservice/models/profile_parameters.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/models/profile_parameters_restrictions.py b/openrouteservice/models/profile_parameters_restrictions.py index dd7576f..e5158d0 100644 --- a/openrouteservice/models/profile_parameters_restrictions.py +++ b/openrouteservice/models/profile_parameters_restrictions.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/models/profile_weightings.py b/openrouteservice/models/profile_weightings.py index 79c1781..560c6d4 100644 --- a/openrouteservice/models/profile_weightings.py +++ b/openrouteservice/models/profile_weightings.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/models/round_trip_route_options.py b/openrouteservice/models/round_trip_route_options.py index 0566f13..c7f7704 100644 --- a/openrouteservice/models/round_trip_route_options.py +++ b/openrouteservice/models/round_trip_route_options.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/models/route_options.py b/openrouteservice/models/route_options.py index f25f6d5..027b5d1 100644 --- a/openrouteservice/models/route_options.py +++ b/openrouteservice/models/route_options.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/models/route_options_avoid_polygons.py b/openrouteservice/models/route_options_avoid_polygons.py index 5f5b88e..8449e97 100644 --- a/openrouteservice/models/route_options_avoid_polygons.py +++ b/openrouteservice/models/route_options_avoid_polygons.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/models/snap_profile_body.py b/openrouteservice/models/snap_profile_body.py index 3d81c96..87da66c 100644 --- a/openrouteservice/models/snap_profile_body.py +++ b/openrouteservice/models/snap_profile_body.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/openrouteservice/rest.py b/openrouteservice/rest.py index 082cffa..d3ef9f7 100644 --- a/openrouteservice/rest.py +++ b/openrouteservice/rest.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/pyproject.toml b/pyproject.toml index 829ca47..cd28c82 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "openrouteservice" -version = "8.0.1" +version = "8.1.0" authors = ["HeiGIT gGmbH "] description = "Python client for requests to openrouteservice API services" readme = "README.md" diff --git a/setup.py b/setup.py index f453fbb..727c8f6 100644 --- a/setup.py +++ b/setup.py @@ -3,9 +3,9 @@ """ Openrouteservice - This is the openrouteservice API documentation for ORS Core-Version 8.0.1. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 + This is the openrouteservice API documentation for ORS Core-Version 8.1.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501 - OpenAPI spec version: 8.0.1 + OpenAPI spec version: 8.1.0 Contact: support@smartmobility.heigit.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -13,7 +13,7 @@ from setuptools import setup, find_packages # noqa: H301 NAME = "openrouteservice" -VERSION = "8.0.1" +VERSION = "8.1.0" # To install the library, run the following # # python setup.py install