stadiamaps 1.0.7__py3-none-any.whl → 2.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (112) hide show
  1. stadiamaps/__init__.py +6 -24
  2. stadiamaps/api/geocoding_api.py +1917 -760
  3. stadiamaps/api/geospatial_api.py +483 -221
  4. stadiamaps/api/routing_api.py +1615 -723
  5. stadiamaps/api_client.py +275 -272
  6. stadiamaps/api_response.py +12 -16
  7. stadiamaps/configuration.py +13 -11
  8. stadiamaps/exceptions.py +67 -30
  9. stadiamaps/models/__init__.py +5 -23
  10. stadiamaps/models/access.py +44 -26
  11. stadiamaps/models/admin_region.py +46 -28
  12. stadiamaps/models/administrative.py +48 -30
  13. stadiamaps/models/auto_costing_options.py +75 -48
  14. stadiamaps/models/base_costing_options.py +59 -34
  15. stadiamaps/models/base_trace_request.py +70 -40
  16. stadiamaps/models/bicycle_costing_options.py +67 -42
  17. stadiamaps/models/bike_network.py +42 -24
  18. stadiamaps/models/contour.py +45 -27
  19. stadiamaps/models/coordinate.py +45 -26
  20. stadiamaps/models/costing_model.py +10 -12
  21. stadiamaps/models/costing_options.py +51 -33
  22. stadiamaps/models/directions_options.py +45 -27
  23. stadiamaps/models/distance_unit.py +8 -11
  24. stadiamaps/models/edge_sign.py +46 -28
  25. stadiamaps/models/edge_use.py +8 -11
  26. stadiamaps/models/end_node.py +48 -30
  27. stadiamaps/models/geo_attributes.py +47 -29
  28. stadiamaps/models/geo_json_geometry.py +25 -25
  29. stadiamaps/models/geo_json_geometry_base.py +45 -27
  30. stadiamaps/models/geo_json_line_string.py +47 -28
  31. stadiamaps/models/geo_json_line_string_all_of.py +1 -1
  32. stadiamaps/models/geo_json_point.py +47 -28
  33. stadiamaps/models/geo_json_point_all_of.py +1 -1
  34. stadiamaps/models/geo_json_polygon.py +47 -28
  35. stadiamaps/models/geo_json_polygon_all_of.py +1 -1
  36. stadiamaps/models/geocoding_object.py +46 -28
  37. stadiamaps/models/height_request.py +55 -34
  38. stadiamaps/models/height_response.py +49 -30
  39. stadiamaps/models/highway_classification.py +52 -34
  40. stadiamaps/models/intersecting_edge.py +45 -27
  41. stadiamaps/models/isochrone_costing_model.py +8 -11
  42. stadiamaps/models/isochrone_feature.py +45 -27
  43. stadiamaps/models/isochrone_properties.py +48 -30
  44. stadiamaps/models/isochrone_request.py +54 -35
  45. stadiamaps/models/isochrone_response.py +47 -29
  46. stadiamaps/models/locate_detailed_edge.py +73 -55
  47. stadiamaps/models/locate_edge.py +56 -39
  48. stadiamaps/models/locate_edge_info.py +47 -29
  49. stadiamaps/models/locate_node.py +50 -31
  50. stadiamaps/models/locate_object.py +49 -31
  51. stadiamaps/models/maneuver_sign.py +50 -32
  52. stadiamaps/models/maneuver_sign_element.py +45 -27
  53. stadiamaps/models/map_match_costing_model.py +8 -11
  54. stadiamaps/models/map_match_request.py +74 -44
  55. stadiamaps/models/map_match_route_response.py +57 -29
  56. stadiamaps/models/map_match_trace_options.py +47 -29
  57. stadiamaps/models/map_match_waypoint.py +49 -30
  58. stadiamaps/models/matched_point.py +52 -34
  59. stadiamaps/models/matrix_costing_model.py +9 -12
  60. stadiamaps/models/matrix_distance.py +46 -28
  61. stadiamaps/models/matrix_request.py +70 -39
  62. stadiamaps/models/matrix_response.py +60 -36
  63. stadiamaps/models/motor_scooter_costing_options.py +76 -49
  64. stadiamaps/models/motorcycle_costing_options.py +75 -48
  65. stadiamaps/models/nearest_roads_request.py +65 -34
  66. stadiamaps/models/node_id.py +42 -24
  67. stadiamaps/models/node_type.py +8 -11
  68. stadiamaps/models/optimized_route_request.py +66 -35
  69. stadiamaps/models/pedestrian_costing_options.py +59 -40
  70. stadiamaps/models/pelias_geo_json_feature.py +50 -31
  71. stadiamaps/models/pelias_geo_json_properties.py +54 -36
  72. stadiamaps/models/pelias_geo_json_properties_addendum.py +43 -25
  73. stadiamaps/models/pelias_geo_json_properties_addendum_osm.py +42 -24
  74. stadiamaps/models/pelias_layer.py +8 -11
  75. stadiamaps/models/pelias_response.py +49 -30
  76. stadiamaps/models/pelias_source.py +8 -11
  77. stadiamaps/models/restrictions.py +44 -26
  78. stadiamaps/models/road_class.py +8 -11
  79. stadiamaps/models/route_leg.py +48 -29
  80. stadiamaps/models/route_maneuver.py +73 -55
  81. stadiamaps/models/route_request.py +76 -43
  82. stadiamaps/models/route_response.py +56 -28
  83. stadiamaps/models/route_response_alternates_inner.py +105 -0
  84. stadiamaps/models/route_summary.py +48 -30
  85. stadiamaps/models/route_trip.py +135 -0
  86. stadiamaps/models/routing_response_waypoint.py +49 -30
  87. stadiamaps/models/routing_waypoint.py +60 -41
  88. stadiamaps/models/routing_waypoint_all_of_search_filter.py +48 -30
  89. stadiamaps/models/simple_routing_waypoint.py +48 -29
  90. stadiamaps/models/speeds.py +49 -31
  91. stadiamaps/models/trace_attribute_filter_options.py +47 -28
  92. stadiamaps/models/trace_attribute_key.py +8 -11
  93. stadiamaps/models/trace_attributes_base_response.py +51 -32
  94. stadiamaps/models/trace_attributes_request.py +72 -42
  95. stadiamaps/models/trace_attributes_request_all_of_filters.py +1 -1
  96. stadiamaps/models/trace_attributes_response.py +54 -35
  97. stadiamaps/models/trace_edge.py +88 -70
  98. stadiamaps/models/travel_mode.py +8 -11
  99. stadiamaps/models/traversability.py +8 -11
  100. stadiamaps/models/truck_costing_options.py +78 -51
  101. stadiamaps/models/tz_response.py +45 -27
  102. stadiamaps/models/valhalla_languages.py +8 -11
  103. stadiamaps/models/valhalla_long_units.py +8 -11
  104. stadiamaps/models/warning.py +42 -24
  105. stadiamaps/py.typed +0 -0
  106. stadiamaps/rest.py +127 -172
  107. {stadiamaps-1.0.7.dist-info → stadiamaps-2.1.0.dist-info}/METADATA +4 -4
  108. stadiamaps-2.1.0.dist-info/RECORD +128 -0
  109. {stadiamaps-1.0.7.dist-info → stadiamaps-2.1.0.dist-info}/WHEEL +1 -1
  110. stadiamaps-1.0.7.dist-info/RECORD +0 -125
  111. {stadiamaps-1.0.7.dist-info → stadiamaps-2.1.0.dist-info}/LICENSE.txt +0 -0
  112. {stadiamaps-1.0.7.dist-info → stadiamaps-2.1.0.dist-info}/top_level.txt +0 -0
stadiamaps/__init__.py CHANGED
@@ -5,17 +5,17 @@
5
5
  """
6
6
  Stadia Maps Geospatial APIs
7
7
 
8
- The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications. # noqa: E501
8
+ The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
9
9
 
10
- The version of the OpenAPI document: 5.0.6
10
+ The version of the OpenAPI document: 6.1.0
11
11
  Contact: support@stadiamaps.com
12
12
  Generated by OpenAPI Generator (https://openapi-generator.tech)
13
13
 
14
14
  Do not edit the class manually.
15
- """
15
+ """ # noqa: E501
16
16
 
17
17
 
18
- __version__ = "1.0.7"
18
+ __version__ = "2.1.0"
19
19
 
20
20
  # import apis into sdk package
21
21
  from stadiamaps.api.geocoding_api import GeocodingApi
@@ -38,11 +38,9 @@ from stadiamaps.models.access import Access
38
38
  from stadiamaps.models.admin_region import AdminRegion
39
39
  from stadiamaps.models.administrative import Administrative
40
40
  from stadiamaps.models.auto_costing_options import AutoCostingOptions
41
- from stadiamaps.models.auto_costing_options_all_of import AutoCostingOptionsAllOf
42
41
  from stadiamaps.models.base_costing_options import BaseCostingOptions
43
42
  from stadiamaps.models.base_trace_request import BaseTraceRequest
44
43
  from stadiamaps.models.bicycle_costing_options import BicycleCostingOptions
45
- from stadiamaps.models.bicycle_costing_options_all_of import BicycleCostingOptionsAllOf
46
44
  from stadiamaps.models.bike_network import BikeNetwork
47
45
  from stadiamaps.models.contour import Contour
48
46
  from stadiamaps.models.coordinate import Coordinate
@@ -57,11 +55,8 @@ from stadiamaps.models.geo_attributes import GeoAttributes
57
55
  from stadiamaps.models.geo_json_geometry import GeoJSONGeometry
58
56
  from stadiamaps.models.geo_json_geometry_base import GeoJSONGeometryBase
59
57
  from stadiamaps.models.geo_json_line_string import GeoJSONLineString
60
- from stadiamaps.models.geo_json_line_string_all_of import GeoJSONLineStringAllOf
61
58
  from stadiamaps.models.geo_json_point import GeoJSONPoint
62
- from stadiamaps.models.geo_json_point_all_of import GeoJSONPointAllOf
63
59
  from stadiamaps.models.geo_json_polygon import GeoJSONPolygon
64
- from stadiamaps.models.geo_json_polygon_all_of import GeoJSONPolygonAllOf
65
60
  from stadiamaps.models.geocoding_object import GeocodingObject
66
61
  from stadiamaps.models.height_request import HeightRequest
67
62
  from stadiamaps.models.height_response import HeightResponse
@@ -76,27 +71,21 @@ from stadiamaps.models.locate_detailed_edge import LocateDetailedEdge
76
71
  from stadiamaps.models.locate_edge import LocateEdge
77
72
  from stadiamaps.models.locate_edge_info import LocateEdgeInfo
78
73
  from stadiamaps.models.locate_node import LocateNode
79
- from stadiamaps.models.locate_node_all_of import LocateNodeAllOf
80
74
  from stadiamaps.models.locate_object import LocateObject
81
75
  from stadiamaps.models.maneuver_sign import ManeuverSign
82
76
  from stadiamaps.models.maneuver_sign_element import ManeuverSignElement
83
77
  from stadiamaps.models.map_match_costing_model import MapMatchCostingModel
84
78
  from stadiamaps.models.map_match_request import MapMatchRequest
85
- from stadiamaps.models.map_match_request_all_of import MapMatchRequestAllOf
86
79
  from stadiamaps.models.map_match_route_response import MapMatchRouteResponse
87
- from stadiamaps.models.map_match_route_response_all_of import MapMatchRouteResponseAllOf
88
80
  from stadiamaps.models.map_match_trace_options import MapMatchTraceOptions
89
81
  from stadiamaps.models.map_match_waypoint import MapMatchWaypoint
90
- from stadiamaps.models.map_match_waypoint_all_of import MapMatchWaypointAllOf
91
82
  from stadiamaps.models.matched_point import MatchedPoint
92
83
  from stadiamaps.models.matrix_costing_model import MatrixCostingModel
93
84
  from stadiamaps.models.matrix_distance import MatrixDistance
94
85
  from stadiamaps.models.matrix_request import MatrixRequest
95
86
  from stadiamaps.models.matrix_response import MatrixResponse
96
87
  from stadiamaps.models.motor_scooter_costing_options import MotorScooterCostingOptions
97
- from stadiamaps.models.motor_scooter_costing_options_all_of import MotorScooterCostingOptionsAllOf
98
88
  from stadiamaps.models.motorcycle_costing_options import MotorcycleCostingOptions
99
- from stadiamaps.models.motorcycle_costing_options_all_of import MotorcycleCostingOptionsAllOf
100
89
  from stadiamaps.models.nearest_roads_request import NearestRoadsRequest
101
90
  from stadiamaps.models.node_id import NodeId
102
91
  from stadiamaps.models.node_type import NodeType
@@ -108,7 +97,6 @@ from stadiamaps.models.pelias_geo_json_properties_addendum import PeliasGeoJSONP
108
97
  from stadiamaps.models.pelias_geo_json_properties_addendum_osm import PeliasGeoJSONPropertiesAddendumOsm
109
98
  from stadiamaps.models.pelias_layer import PeliasLayer
110
99
  from stadiamaps.models.pelias_response import PeliasResponse
111
- from stadiamaps.models.pelias_response_geocoding import PeliasResponseGeocoding
112
100
  from stadiamaps.models.pelias_source import PeliasSource
113
101
  from stadiamaps.models.restrictions import Restrictions
114
102
  from stadiamaps.models.road_class import RoadClass
@@ -116,29 +104,23 @@ from stadiamaps.models.route_leg import RouteLeg
116
104
  from stadiamaps.models.route_maneuver import RouteManeuver
117
105
  from stadiamaps.models.route_request import RouteRequest
118
106
  from stadiamaps.models.route_response import RouteResponse
119
- from stadiamaps.models.route_response_trip import RouteResponseTrip
107
+ from stadiamaps.models.route_response_alternates_inner import RouteResponseAlternatesInner
120
108
  from stadiamaps.models.route_summary import RouteSummary
109
+ from stadiamaps.models.route_trip import RouteTrip
121
110
  from stadiamaps.models.routing_response_waypoint import RoutingResponseWaypoint
122
- from stadiamaps.models.routing_response_waypoint_all_of import RoutingResponseWaypointAllOf
123
111
  from stadiamaps.models.routing_waypoint import RoutingWaypoint
124
- from stadiamaps.models.routing_waypoint_all_of import RoutingWaypointAllOf
125
112
  from stadiamaps.models.routing_waypoint_all_of_search_filter import RoutingWaypointAllOfSearchFilter
126
113
  from stadiamaps.models.simple_routing_waypoint import SimpleRoutingWaypoint
127
- from stadiamaps.models.simple_routing_waypoint_all_of import SimpleRoutingWaypointAllOf
128
114
  from stadiamaps.models.speeds import Speeds
129
115
  from stadiamaps.models.trace_attribute_filter_options import TraceAttributeFilterOptions
130
116
  from stadiamaps.models.trace_attribute_key import TraceAttributeKey
131
117
  from stadiamaps.models.trace_attributes_base_response import TraceAttributesBaseResponse
132
118
  from stadiamaps.models.trace_attributes_request import TraceAttributesRequest
133
- from stadiamaps.models.trace_attributes_request_all_of import TraceAttributesRequestAllOf
134
- from stadiamaps.models.trace_attributes_request_all_of_filters import TraceAttributesRequestAllOfFilters
135
119
  from stadiamaps.models.trace_attributes_response import TraceAttributesResponse
136
- from stadiamaps.models.trace_attributes_response_all_of import TraceAttributesResponseAllOf
137
120
  from stadiamaps.models.trace_edge import TraceEdge
138
121
  from stadiamaps.models.travel_mode import TravelMode
139
122
  from stadiamaps.models.traversability import Traversability
140
123
  from stadiamaps.models.truck_costing_options import TruckCostingOptions
141
- from stadiamaps.models.truck_costing_options_all_of import TruckCostingOptionsAllOf
142
124
  from stadiamaps.models.tz_response import TzResponse
143
125
  from stadiamaps.models.valhalla_languages import ValhallaLanguages
144
126
  from stadiamaps.models.valhalla_long_units import ValhallaLongUnits