stadiamaps 3.1.0__py3-none-any.whl → 3.2.1__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 (117) hide show
  1. stadiamaps/__init__.py +7 -2
  2. stadiamaps/api/geocoding_api.py +384 -101
  3. stadiamaps/api/geospatial_api.py +13 -11
  4. stadiamaps/api/routing_api.py +46 -39
  5. stadiamaps/api_client.py +22 -11
  6. stadiamaps/configuration.py +19 -5
  7. stadiamaps/exceptions.py +1 -1
  8. stadiamaps/models/__init__.py +6 -1
  9. stadiamaps/models/access.py +1 -1
  10. stadiamaps/models/admin_region.py +1 -1
  11. stadiamaps/models/administrative.py +1 -1
  12. stadiamaps/models/auto_costing_options.py +1 -1
  13. stadiamaps/models/base_costing_options.py +1 -1
  14. stadiamaps/models/base_trace_request.py +5 -5
  15. stadiamaps/models/bicycle_costing_options.py +1 -1
  16. stadiamaps/models/bike_network.py +1 -1
  17. stadiamaps/models/bulk_request.py +117 -0
  18. stadiamaps/models/bulk_request_query.py +138 -0
  19. stadiamaps/models/bulk_search_request_inner.py +141 -0
  20. stadiamaps/models/bulk_search_response.py +109 -0
  21. stadiamaps/models/contour.py +1 -1
  22. stadiamaps/models/coordinate.py +1 -1
  23. stadiamaps/models/costing_model.py +1 -1
  24. stadiamaps/models/costing_options.py +1 -1
  25. stadiamaps/models/directions_options.py +5 -5
  26. stadiamaps/models/distance_unit.py +1 -1
  27. stadiamaps/models/edge_sign.py +1 -1
  28. stadiamaps/models/edge_use.py +1 -1
  29. stadiamaps/models/end_node.py +1 -1
  30. stadiamaps/models/geo_attributes.py +1 -1
  31. stadiamaps/models/geo_json_geometry.py +1 -1
  32. stadiamaps/models/geo_json_geometry_base.py +1 -1
  33. stadiamaps/models/geo_json_line_string.py +1 -1
  34. stadiamaps/models/geo_json_point.py +1 -1
  35. stadiamaps/models/geo_json_polygon.py +1 -1
  36. stadiamaps/models/geocoding_object.py +1 -1
  37. stadiamaps/models/height_request.py +1 -1
  38. stadiamaps/models/height_response.py +1 -1
  39. stadiamaps/models/highway_classification.py +1 -1
  40. stadiamaps/models/intersecting_edge.py +1 -1
  41. stadiamaps/models/isochrone_costing_model.py +8 -1
  42. stadiamaps/models/isochrone_feature.py +1 -1
  43. stadiamaps/models/isochrone_properties.py +1 -1
  44. stadiamaps/models/isochrone_request.py +1 -1
  45. stadiamaps/models/isochrone_response.py +1 -1
  46. stadiamaps/models/locate_detailed_edge.py +1 -1
  47. stadiamaps/models/locate_edge.py +1 -1
  48. stadiamaps/models/locate_edge_info.py +1 -1
  49. stadiamaps/models/locate_node.py +1 -1
  50. stadiamaps/models/locate_object.py +11 -1
  51. stadiamaps/models/low_speed_vehicle_costing_options.py +1 -1
  52. stadiamaps/models/maneuver_sign.py +1 -1
  53. stadiamaps/models/maneuver_sign_element.py +1 -1
  54. stadiamaps/models/map_match_costing_model.py +8 -2
  55. stadiamaps/models/map_match_request.py +5 -5
  56. stadiamaps/models/map_match_route_response.py +1 -1
  57. stadiamaps/models/map_match_trace_options.py +1 -1
  58. stadiamaps/models/map_match_waypoint.py +1 -1
  59. stadiamaps/models/matched_point.py +1 -1
  60. stadiamaps/models/matrix_costing_model.py +1 -1
  61. stadiamaps/models/matrix_distance.py +1 -1
  62. stadiamaps/models/matrix_request.py +5 -5
  63. stadiamaps/models/matrix_response.py +2 -2
  64. stadiamaps/models/matrix_waypoint.py +1 -1
  65. stadiamaps/models/motor_scooter_costing_options.py +1 -1
  66. stadiamaps/models/motorcycle_costing_options.py +1 -1
  67. stadiamaps/models/nearest_roads_request.py +5 -5
  68. stadiamaps/models/node_id.py +1 -1
  69. stadiamaps/models/node_type.py +1 -1
  70. stadiamaps/models/optimized_route_request.py +5 -5
  71. stadiamaps/models/pedestrian_costing_options.py +1 -1
  72. stadiamaps/models/pelias_geo_json_feature.py +3 -5
  73. stadiamaps/models/pelias_geo_json_properties.py +2 -2
  74. stadiamaps/models/pelias_geo_json_properties_addendum.py +1 -1
  75. stadiamaps/models/pelias_geo_json_properties_addendum_osm.py +1 -1
  76. stadiamaps/models/pelias_layer.py +1 -1
  77. stadiamaps/models/pelias_response.py +1 -1
  78. stadiamaps/models/pelias_source.py +1 -1
  79. stadiamaps/models/restrictions.py +1 -1
  80. stadiamaps/models/road_class.py +1 -1
  81. stadiamaps/models/route_leg.py +2 -2
  82. stadiamaps/models/route_maneuver.py +1 -1
  83. stadiamaps/models/route_request.py +5 -5
  84. stadiamaps/models/route_response.py +1 -1
  85. stadiamaps/models/route_response_alternates_inner.py +1 -1
  86. stadiamaps/models/route_summary.py +1 -1
  87. stadiamaps/models/route_trip.py +3 -3
  88. stadiamaps/models/routing_response_waypoint.py +1 -1
  89. stadiamaps/models/routing_waypoint.py +1 -1
  90. stadiamaps/models/routing_waypoint_all_of_search_filter.py +1 -1
  91. stadiamaps/models/search_bulk_query.py +117 -0
  92. stadiamaps/models/search_bulk_request.py +141 -0
  93. stadiamaps/models/search_query.py +134 -0
  94. stadiamaps/models/search_structured_bulk_query.py +117 -0
  95. stadiamaps/models/search_structured_query.py +148 -0
  96. stadiamaps/models/simple_routing_waypoint.py +1 -1
  97. stadiamaps/models/speeds.py +1 -1
  98. stadiamaps/models/trace_attribute_filter_options.py +1 -1
  99. stadiamaps/models/trace_attribute_key.py +1 -1
  100. stadiamaps/models/trace_attributes_base_response.py +6 -1
  101. stadiamaps/models/trace_attributes_request.py +5 -5
  102. stadiamaps/models/trace_attributes_response.py +8 -3
  103. stadiamaps/models/trace_edge.py +1 -1
  104. stadiamaps/models/travel_mode.py +1 -1
  105. stadiamaps/models/traversability.py +1 -1
  106. stadiamaps/models/truck_costing_options.py +1 -1
  107. stadiamaps/models/tz_response.py +1 -1
  108. stadiamaps/models/valhalla_languages.py +1 -1
  109. stadiamaps/models/valhalla_long_units.py +1 -1
  110. stadiamaps/models/warning.py +1 -1
  111. stadiamaps/rest.py +1 -1
  112. {stadiamaps-3.1.0.dist-info → stadiamaps-3.2.1.dist-info}/METADATA +1 -1
  113. stadiamaps-3.2.1.dist-info/RECORD +139 -0
  114. {stadiamaps-3.1.0.dist-info → stadiamaps-3.2.1.dist-info}/WHEEL +1 -1
  115. stadiamaps-3.1.0.dist-info/RECORD +0 -130
  116. {stadiamaps-3.1.0.dist-info → stadiamaps-3.2.1.dist-info}/LICENSE.txt +0 -0
  117. {stadiamaps-3.1.0.dist-info → stadiamaps-3.2.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,148 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Stadia Maps Geospatial APIs
5
+
6
+ The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
+
8
+ The version of the OpenAPI document: 6.6.3
9
+ Contact: support@stadiamaps.com
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501
14
+
15
+
16
+ from __future__ import annotations
17
+ import pprint
18
+ import re # noqa: F401
19
+ import json
20
+
21
+ from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
22
+ from typing import Any, ClassVar, Dict, List, Optional, Union
23
+ from typing_extensions import Annotated
24
+ from stadiamaps.models.pelias_layer import PeliasLayer
25
+ from stadiamaps.models.pelias_source import PeliasSource
26
+ from typing import Optional, Set
27
+ from typing_extensions import Self
28
+
29
+ class SearchStructuredQuery(BaseModel):
30
+ """
31
+ SearchStructuredQuery
32
+ """ # noqa: E501
33
+ address: Optional[StrictStr] = Field(default=None, description="A street name, optionally with a house number.")
34
+ neighbourhood: Optional[StrictStr] = Field(default=None, description="Varies by area, but has a locally specific meaning (NOT always an official administrative unit).")
35
+ borough: Optional[StrictStr] = Field(default=None, description="A unit within a city (not widely used, but present in places like NYC and Mexico City).")
36
+ locality: Optional[StrictStr] = Field(default=None, description="The city, village, town, etc. that the place/address is part of.")
37
+ county: Optional[StrictStr] = Field(default=None, description="Administrative divisions between localities and regions. Not commonly used as input to structured geocoding.")
38
+ region: Optional[StrictStr] = Field(default=None, description="Typically the first administrative division within a country. For example, a US state or a Canadian province.")
39
+ postal_code: Optional[StrictStr] = Field(default=None, description="A mail sorting code.", alias="postalCode")
40
+ country: Optional[StrictStr] = Field(default=None, description="A full name (ex: Canada), or a 2 or 3 character ISO code. Prefer ISO codes when possible.")
41
+ focus_point_lat: Optional[Union[Annotated[float, Field(le=90, strict=True, ge=-90)], Annotated[int, Field(le=90, strict=True, ge=-90)]]] = Field(default=None, description="The latitude of the point to focus the search on. This will bias results toward the focus point. Requires `focus.point.lon`.", alias="focus.point.lat")
42
+ focus_point_lon: Optional[Union[Annotated[float, Field(le=180, strict=True, ge=-180)], Annotated[int, Field(le=180, strict=True, ge=-180)]]] = Field(default=None, description="The longitude of the point to focus the search on. This will bias results toward the focus point. Requires `focus.point.lat`.", alias="focus.point.lon")
43
+ boundary_rect_min_lat: Optional[Union[Annotated[float, Field(le=90, strict=True, ge=-90)], Annotated[int, Field(le=90, strict=True, ge=-90)]]] = Field(default=None, description="Defines the min latitude component of a bounding box to limit the search to. Requires all other `boundary.rect` parameters to be specified.", alias="boundary.rect.min_lat")
44
+ boundary_rect_max_lat: Optional[Union[Annotated[float, Field(le=90, strict=True, ge=-90)], Annotated[int, Field(le=90, strict=True, ge=-90)]]] = Field(default=None, description="Defines the max latitude component of a bounding box to limit the search to. Requires all other `boundary.rect` parameters to be specified.", alias="boundary.rect.max_lat")
45
+ boundary_rect_min_lon: Optional[Union[Annotated[float, Field(le=180, strict=True, ge=-180)], Annotated[int, Field(le=180, strict=True, ge=-180)]]] = Field(default=None, description="Defines the min longitude component of a bounding box to limit the search to. Requires all other `boundary.rect` parameters to be specified.", alias="boundary.rect.min_lon")
46
+ boundary_rect_max_lon: Optional[Union[Annotated[float, Field(le=180, strict=True, ge=-180)], Annotated[int, Field(le=180, strict=True, ge=-180)]]] = Field(default=None, description="Defines the max longitude component of a bounding box to limit the search to. Requires all other `boundary.rect` parameters to be specified.", alias="boundary.rect.max_lon")
47
+ boundary_circle_lat: Optional[Union[Annotated[float, Field(le=90, strict=True, ge=-90)], Annotated[int, Field(le=90, strict=True, ge=-90)]]] = Field(default=None, description="The latitude of the center of a circle to limit the search to. Requires `boundary.circle.lon`.", alias="boundary.circle.lat")
48
+ boundary_circle_lon: Optional[Union[Annotated[float, Field(le=180, strict=True, ge=-180)], Annotated[int, Field(le=180, strict=True, ge=-180)]]] = Field(default=None, description="The longitude of the center of a circle to limit the search to. Requires `boundary.circle.lat`.", alias="boundary.circle.lon")
49
+ boundary_circle_radius: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="The radius of the circle (in kilometers) to limit the search to. Defaults to 50km if unspecified.", alias="boundary.circle.radius")
50
+ boundary_country: Optional[List[StrictStr]] = Field(default=None, description="A list of countries to limit the search to. These may be either full names (ex: Canada), or an ISO 3116-1 alpha-2 or alpha-3 code. Prefer ISO codes when possible.", alias="boundary.country")
51
+ boundary_gid: Optional[StrictStr] = Field(default=None, description="The Pelias GID of an area to limit the search to.", alias="boundary.gid")
52
+ layers: Optional[List[PeliasLayer]] = Field(default=None, description="A list of layers to limit the search to.")
53
+ sources: Optional[List[PeliasSource]] = Field(default=None, description="A list of sources to limit the search to.")
54
+ size: Optional[StrictInt] = Field(default=None, description="The maximum number of results to return.")
55
+ lang: Optional[StrictStr] = Field(default=None, description="A BCP47 language tag which specifies a preference for localization of results. By default, results are in the default locale of the source data, but specifying a language will attempt to localize the results. Note that while a `langtag` (in RFC 5646 terms) can contain script, region, etc., only the `language` portion, an ISO 639 code, will be considered. So `en-US` and `en-GB` will both be treated as English.")
56
+ additional_properties: Dict[str, Any] = {}
57
+ __properties: ClassVar[List[str]] = ["address", "neighbourhood", "borough", "locality", "county", "region", "postalCode", "country", "focus.point.lat", "focus.point.lon", "boundary.rect.min_lat", "boundary.rect.max_lat", "boundary.rect.min_lon", "boundary.rect.max_lon", "boundary.circle.lat", "boundary.circle.lon", "boundary.circle.radius", "boundary.country", "boundary.gid", "layers", "sources", "size", "lang"]
58
+
59
+ model_config = ConfigDict(
60
+ populate_by_name=True,
61
+ validate_assignment=True,
62
+ protected_namespaces=(),
63
+ )
64
+
65
+
66
+ def to_str(self) -> str:
67
+ """Returns the string representation of the model using alias"""
68
+ return pprint.pformat(self.model_dump(by_alias=True))
69
+
70
+ def to_json(self) -> str:
71
+ """Returns the JSON representation of the model using alias"""
72
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
73
+ return json.dumps(self.to_dict())
74
+
75
+ @classmethod
76
+ def from_json(cls, json_str: str) -> Optional[Self]:
77
+ """Create an instance of SearchStructuredQuery from a JSON string"""
78
+ return cls.from_dict(json.loads(json_str))
79
+
80
+ def to_dict(self) -> Dict[str, Any]:
81
+ """Return the dictionary representation of the model using alias.
82
+
83
+ This has the following differences from calling pydantic's
84
+ `self.model_dump(by_alias=True)`:
85
+
86
+ * `None` is only added to the output dict for nullable fields that
87
+ were set at model initialization. Other fields with value `None`
88
+ are ignored.
89
+ * Fields in `self.additional_properties` are added to the output dict.
90
+ """
91
+ excluded_fields: Set[str] = set([
92
+ "additional_properties",
93
+ ])
94
+
95
+ _dict = self.model_dump(
96
+ by_alias=True,
97
+ exclude=excluded_fields,
98
+ exclude_none=True,
99
+ )
100
+ # puts key-value pairs in additional_properties in the top level
101
+ if self.additional_properties is not None:
102
+ for _key, _value in self.additional_properties.items():
103
+ _dict[_key] = _value
104
+
105
+ return _dict
106
+
107
+ @classmethod
108
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
109
+ """Create an instance of SearchStructuredQuery from a dict"""
110
+ if obj is None:
111
+ return None
112
+
113
+ if not isinstance(obj, dict):
114
+ return cls.model_validate(obj)
115
+
116
+ _obj = cls.model_validate({
117
+ "address": obj.get("address"),
118
+ "neighbourhood": obj.get("neighbourhood"),
119
+ "borough": obj.get("borough"),
120
+ "locality": obj.get("locality"),
121
+ "county": obj.get("county"),
122
+ "region": obj.get("region"),
123
+ "postalCode": obj.get("postalCode"),
124
+ "country": obj.get("country"),
125
+ "focus.point.lat": obj.get("focus.point.lat"),
126
+ "focus.point.lon": obj.get("focus.point.lon"),
127
+ "boundary.rect.min_lat": obj.get("boundary.rect.min_lat"),
128
+ "boundary.rect.max_lat": obj.get("boundary.rect.max_lat"),
129
+ "boundary.rect.min_lon": obj.get("boundary.rect.min_lon"),
130
+ "boundary.rect.max_lon": obj.get("boundary.rect.max_lon"),
131
+ "boundary.circle.lat": obj.get("boundary.circle.lat"),
132
+ "boundary.circle.lon": obj.get("boundary.circle.lon"),
133
+ "boundary.circle.radius": obj.get("boundary.circle.radius"),
134
+ "boundary.country": obj.get("boundary.country"),
135
+ "boundary.gid": obj.get("boundary.gid"),
136
+ "layers": obj.get("layers"),
137
+ "sources": obj.get("sources"),
138
+ "size": obj.get("size"),
139
+ "lang": obj.get("lang")
140
+ })
141
+ # store additional fields in additional_properties
142
+ for _key in obj.keys():
143
+ if _key not in cls.__properties:
144
+ _obj.additional_properties[_key] = obj.get(_key)
145
+
146
+ return _obj
147
+
148
+
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.3
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.3
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.3
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.3
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.3
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -107,6 +107,11 @@ class TraceAttributesBaseResponse(BaseModel):
107
107
  for _key, _value in self.additional_properties.items():
108
108
  _dict[_key] = _value
109
109
 
110
+ # set to None if edges (nullable) is None
111
+ # and model_fields_set contains the field
112
+ if self.edges is None and "edges" in self.model_fields_set:
113
+ _dict['edges'] = None
114
+
110
115
  return _dict
111
116
 
112
117
  @classmethod
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.3
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -39,8 +39,8 @@ class TraceAttributesRequest(BaseModel):
39
39
  costing: MapMatchCostingModel
40
40
  costing_options: Optional[CostingOptions] = None
41
41
  shape_match: Optional[StrictStr] = Field(default=None, description="Three snapping modes provide some control over how the map matching occurs. `edge_walk` is fast, but requires extremely precise data that matches the route graph almost perfectly. `map_snap` can handle significantly noisier data, but is very expensive. `walk_or_snap`, the default, tries to use edge walking first and falls back to map matching if edge walking fails. In general, you should not need to change this parameter unless you want to trace a multi-leg route with multiple `break` locations in the `shape`.")
42
- units: Optional[DistanceUnit] = None
43
- language: Optional[ValhallaLanguages] = None
42
+ units: Optional[DistanceUnit] = DistanceUnit.KM
43
+ language: Optional[ValhallaLanguages] = ValhallaLanguages.EN_MINUS_US
44
44
  directions_type: Optional[StrictStr] = Field(default='instructions', description="The level of directional narrative to include. Locations and times will always be returned, but narrative generation verbosity can be controlled with this parameter.")
45
45
  filters: Optional[TraceAttributeFilterOptions] = Field(default=None, description="If present, provides either a whitelist or a blacklist of keys to include/exclude in the response. This key is optional, and if omitted from the request, all available info will be returned.")
46
46
  additional_properties: Dict[str, Any] = {}
@@ -143,8 +143,8 @@ class TraceAttributesRequest(BaseModel):
143
143
  "costing": obj.get("costing"),
144
144
  "costing_options": CostingOptions.from_dict(obj["costing_options"]) if obj.get("costing_options") is not None else None,
145
145
  "shape_match": obj.get("shape_match"),
146
- "units": obj.get("units"),
147
- "language": obj.get("language"),
146
+ "units": obj.get("units") if obj.get("units") is not None else DistanceUnit.KM,
147
+ "language": obj.get("language") if obj.get("language") is not None else ValhallaLanguages.EN_MINUS_US,
148
148
  "directions_type": obj.get("directions_type") if obj.get("directions_type") is not None else 'instructions',
149
149
  "filters": TraceAttributeFilterOptions.from_dict(obj["filters"]) if obj.get("filters") is not None else None
150
150
  })
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.3
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -40,7 +40,7 @@ class TraceAttributesResponse(BaseModel):
40
40
  shape: Optional[StrictStr] = Field(default=None, description="The encoded polyline (https://developers.google.com/maps/documentation/utilities/polylinealgorithm) of the matched path.")
41
41
  confidence_score: Optional[Union[Annotated[float, Field(le=1, strict=True, ge=0)], Annotated[int, Field(le=1, strict=True, ge=0)]]] = None
42
42
  id: Optional[StrictStr] = Field(default=None, description="An identifier to disambiguate requests (echoed by the server).")
43
- units: Optional[ValhallaLongUnits] = None
43
+ units: Optional[ValhallaLongUnits] = ValhallaLongUnits.KILOMETERS
44
44
  alternate_paths: Optional[List[TraceAttributesBaseResponse]] = Field(default=None, description="Alternate paths, if any, that were not classified as the best match.")
45
45
  additional_properties: Dict[str, Any] = {}
46
46
  __properties: ClassVar[List[str]] = ["edges", "admins", "matched_points", "osm_changeset", "shape", "confidence_score", "id", "units", "alternate_paths"]
@@ -119,6 +119,11 @@ class TraceAttributesResponse(BaseModel):
119
119
  for _key, _value in self.additional_properties.items():
120
120
  _dict[_key] = _value
121
121
 
122
+ # set to None if edges (nullable) is None
123
+ # and model_fields_set contains the field
124
+ if self.edges is None and "edges" in self.model_fields_set:
125
+ _dict['edges'] = None
126
+
122
127
  return _dict
123
128
 
124
129
  @classmethod
@@ -138,7 +143,7 @@ class TraceAttributesResponse(BaseModel):
138
143
  "shape": obj.get("shape"),
139
144
  "confidence_score": obj.get("confidence_score"),
140
145
  "id": obj.get("id"),
141
- "units": obj.get("units"),
146
+ "units": obj.get("units") if obj.get("units") is not None else ValhallaLongUnits.KILOMETERS,
142
147
  "alternate_paths": [TraceAttributesBaseResponse.from_dict(_item) for _item in obj["alternate_paths"]] if obj.get("alternate_paths") is not None else None
143
148
  })
144
149
  # store additional fields in additional_properties
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.3
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.3
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.3
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.3
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.3
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.3
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.3
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.3
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
stadiamaps/rest.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.3
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stadiamaps
3
- Version: 3.1.0
3
+ Version: 3.2.1
4
4
  Summary: Stadia Maps Geospatial APIs
5
5
  Home-page: https://github.com/stadiamaps/stadiamaps-api-py
6
6
  Author: Stadia Maps Support
@@ -0,0 +1,139 @@
1
+ stadiamaps/__init__.py,sha256=qrTX1_uLpopXDT31YqHtA-gEHifX5zJZy4gzw4Kss_w,7473
2
+ stadiamaps/api_client.py,sha256=p4oE5f9ZdINd-rO2Xn4-93piS2UFA_7b-xghPzAtvYE,26826
3
+ stadiamaps/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
+ stadiamaps/configuration.py,sha256=-ELwnKdxj6Eh373RknQZw4GDr4VGR8bBnl9WYwu8cmw,16141
5
+ stadiamaps/exceptions.py,sha256=Zsfk3l7Cd9Y7JM4mPpwQHK-Fd0LF-0fJkJtpzZlWbWI,6019
6
+ stadiamaps/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ stadiamaps/rest.py,sha256=zIeGKYxGOLHHX0X-QS7hupnrJOK7ZP0NBUTrQ9pOibQ,9451
8
+ stadiamaps/api/__init__.py,sha256=NRdfWLDRL2TYgITiS6K4OX8lmmVVmf9-_yyMe2_6hTs,208
9
+ stadiamaps/api/geocoding_api.py,sha256=njUWPoGNUEiX_78ekIJurvwhh5LdDfmKaNUSckBEa_M,165355
10
+ stadiamaps/api/geospatial_api.py,sha256=9oIQFCYsJhO_H6q_Fz8DOVkjvNjq5gavNgJZ8zyQDdA,29443
11
+ stadiamaps/api/routing_api.py,sha256=1Dv_cTC9trGiA36V5FRG8GyBWzrCRUJ7i6jqLcZDVUI,80587
12
+ stadiamaps/models/__init__.py,sha256=Xh0bFpgciqNVC6J0fI23ed9mhP3JF8ZYYzsRugEhgMI,6805
13
+ stadiamaps/models/access.py,sha256=68Uz_bJJeg8N-XMXKI_PPQcnVY18z4aC4j5UgEDuSpk,4179
14
+ stadiamaps/models/admin_region.py,sha256=81iO31JcWPCh8ZTfQSpglnFFcqitR5ylRLLrdyIFB74,3793
15
+ stadiamaps/models/administrative.py,sha256=5znqO95sDARMiy0jiSD7VRzuz8knVPo9nCc-cdDw_y8,3842
16
+ stadiamaps/models/auto_costing_options.py,sha256=aii1FlLSm--fg1SpCaJdxD7VavhnKk8S7s-h2ZiBNo4,12767
17
+ stadiamaps/models/auto_costing_options_all_of.py,sha256=JSiFHNEljR4if13lP3jeJc8ny_gSfVzyQZErdt6LaBM,7083
18
+ stadiamaps/models/base_costing_options.py,sha256=EGhhKlEoBuUPf-Mj9yoKcgtVXfw9XEkS_CSsHFde4rY,7721
19
+ stadiamaps/models/base_trace_request.py,sha256=8W53e45Nr_fRjlcWyEKmZihe38DINAzgb_kgJsooDsU,7245
20
+ stadiamaps/models/bicycle_costing_options.py,sha256=-4B6uIZ91LFNVo-EihTokcpu0iom0N-aXyqWx11vfxw,11693
21
+ stadiamaps/models/bicycle_costing_options_all_of.py,sha256=AhDT4CYE3wRA0j1EXvBiK_Bevw2mN-WQA4AnAb7uM5A,5904
22
+ stadiamaps/models/bike_network.py,sha256=6khnceiJ39SmcvfYRGURuFszxVHod1FtYs0ZQdfxFL0,3432
23
+ stadiamaps/models/bulk_request.py,sha256=U0Q0eCjH3zP77afj4HTXNmGAKfFREFV1Kj5ohWeUTKI,3897
24
+ stadiamaps/models/bulk_request_query.py,sha256=U_u60OuAmDIbOrI4TQA5wXywUacN6LNAZa_9KO7OClQ,5439
25
+ stadiamaps/models/bulk_search_request_inner.py,sha256=nKDAb78ku8Vw-BWL0JRlYHcAYXWfaa-Q4qNwpYwk9w4,5686
26
+ stadiamaps/models/bulk_search_response.py,sha256=wGjISEsgflrIzIXKkHpr2DhBbGDIfALOslRr06JZOco,3746
27
+ stadiamaps/models/contour.py,sha256=jQCOiRSOF7DoKoUl7VQmL8lZK_aNhMGDn-MR8LHz_h4,3744
28
+ stadiamaps/models/coordinate.py,sha256=7wbixEs_JGG1AHEgsK12c4OdMrYjQbQRotx33582zV4,3525
29
+ stadiamaps/models/costing_model.py,sha256=ixMghvotXQ6itWGGSez72Z8w4jLFrsRAdJiIMpzQE6Q,1332
30
+ stadiamaps/models/costing_options.py,sha256=3Jlr3ed2QoV_TSJdDFNGLkaM1fNlwB28Zn3TDCFOKtw,6813
31
+ stadiamaps/models/directions_options.py,sha256=r5JmAbnMcyZ_FKnXm1B3rygS04ZZhfA4guNcJrh85dM,4330
32
+ stadiamaps/models/distance_unit.py,sha256=rHT7x25_fZMxsytWIK43UW4gtrpPRcsAH4uvQX_o35g,780
33
+ stadiamaps/models/edge_sign.py,sha256=wlLbrCdwIjjQLiwLfVGIn3TEB_FTToLT-1PvxikxgF4,3491
34
+ stadiamaps/models/edge_use.py,sha256=r5Hh_dR77KxA6xLb3L6kLZIOlICVo8_sGDyyrslmAzQ,1663
35
+ stadiamaps/models/end_node.py,sha256=PO73U3Q3dFfojBTCX7As2sBLrbrXwEUZNS-ryxx3sRU,4718
36
+ stadiamaps/models/geo_attributes.py,sha256=dtv7ECxjMsNt64QL4S1V87I6pL7Z2f8OoYckp-TNZXs,4213
37
+ stadiamaps/models/geo_json_geometry.py,sha256=_WqXQ4fL_DNYx830c_F0UcL6J-ATzTdzORVvy4DdnGI,6201
38
+ stadiamaps/models/geo_json_geometry_base.py,sha256=W5u6_-45jqpULPfnaTKBoLukr3zGt6ONtiebwq7gzlA,3532
39
+ stadiamaps/models/geo_json_line_string.py,sha256=7FN0T0mWpurtCvdgTlOETiDcHUK6e57KsMKbd5VWTyY,3773
40
+ stadiamaps/models/geo_json_line_string_all_of.py,sha256=_vHsj7n-c1QEAoL9M8MAWj7Q1wv4AtqpG0lXHluRYzA,2663
41
+ stadiamaps/models/geo_json_point.py,sha256=x4Tmrwy0QQIzAYRuZb-rxcGq6ASW2kLeX-6xMihtE2c,3747
42
+ stadiamaps/models/geo_json_point_all_of.py,sha256=Md1qYy2GAtnsy_8IwXrYXlNc5e_RBAfjTSBKzrrDUn8,2614
43
+ stadiamaps/models/geo_json_polygon.py,sha256=pOwV2F0Cp9HoqqBaWYPh5znDItILfx2cBQOsJc4XMJQ,3767
44
+ stadiamaps/models/geo_json_polygon_all_of.py,sha256=lOsNbT0B-2d_wJTwOIQt7gny_aldHzT9cMC5XoIETtE,2648
45
+ stadiamaps/models/geocoding_object.py,sha256=dFDhM2DvSfCJZAY1Ev9_XVfchFBq_xsrAHLw_hdJY2M,4217
46
+ stadiamaps/models/height_request.py,sha256=CJWi4tGfnd1C2qcuKZqJLIcnDfhnRkMiZeO6iDRCi_g,5950
47
+ stadiamaps/models/height_response.py,sha256=znoTFMcmWl8c8Hc7ZGrnei15dw0hCz3SGz8XY-yFfjk,5092
48
+ stadiamaps/models/highway_classification.py,sha256=7c6-XafvFW1tEzMyTemOQjT2sCr-bFMlEEL8EtfPcnU,6219
49
+ stadiamaps/models/intersecting_edge.py,sha256=yb2LBkpQMQx4XgN1_lRkCspybF98PniXbuxDwoiau54,4608
50
+ stadiamaps/models/isochrone_costing_model.py,sha256=M2H1mGrA282wxWDhyqm75puGw7GlyzRAJzNvKL2YSpg,1043
51
+ stadiamaps/models/isochrone_feature.py,sha256=mYd7GKc5PH0oLZkIQE6-CXzpVivL2AIB4LhRPE0t7_0,3996
52
+ stadiamaps/models/isochrone_properties.py,sha256=yWJIC5o4yF2cMnbOcz0au1ypYk8mmgL_BNgomgap_k8,4235
53
+ stadiamaps/models/isochrone_request.py,sha256=_PiQBYR1Kmg7Y2x_6ycXiL3VfxhZgBGY_Vjy5qefsnY,6701
54
+ stadiamaps/models/isochrone_response.py,sha256=x2Gji6RdgD5dpZmFrBHLT-oPle8qJlr77Av1q6YMk_Q,4042
55
+ stadiamaps/models/locate_detailed_edge.py,sha256=DHzMED-ig7MKRA67AyuelR8FLk4CP_ouUXWNCjlxv74,10839
56
+ stadiamaps/models/locate_edge.py,sha256=SiH41X58TzBB4V2pjVtoWG_P_9aXKntiGMlxNQrEWa0,6553
57
+ stadiamaps/models/locate_edge_info.py,sha256=U0EQScMulmAn8oGQ7OIXdxEh7TUwutsPSq3b7bIeAWs,4350
58
+ stadiamaps/models/locate_node.py,sha256=JTn3ikR4xKVQU0Ip6xaHVNpaU5bV8axr_qHkMlD_fNE,5948
59
+ stadiamaps/models/locate_node_all_of.py,sha256=CIpyV5ssH034gmC-fHlshAOZkolUy7LYejgHLqHeMyI,4800
60
+ stadiamaps/models/locate_object.py,sha256=GxE_fLEbW1-sfDXLuBDPC5gezHFYNskLnZk0YsS6Dos,5077
61
+ stadiamaps/models/low_speed_vehicle_costing_options.py,sha256=XYkGbGnZfMDviGOGjitNzHpUR4TjlAfZ025HChdu6r0,9820
62
+ stadiamaps/models/maneuver_sign.py,sha256=pU4VyCc5NLqXyhf4-jVDcEcJcHzxhslwil2q4PXQNWM,6142
63
+ stadiamaps/models/maneuver_sign_element.py,sha256=tOsSByq7GBH9L65Bbdm1IePt6FjgnsxCIGDqf7kFPnY,3711
64
+ stadiamaps/models/map_match_costing_model.py,sha256=ibHIg5flXTfCbliqGxzPsC9Lz8YUd66F9Ub4BkM8xWc,1040
65
+ stadiamaps/models/map_match_request.py,sha256=rN2OrvP7dtU6lp5xm0QGNm_AmUsFqUT5sL5cZQbPJjE,9121
66
+ stadiamaps/models/map_match_request_all_of.py,sha256=4I-A8Lvt59Gu-xMvfsHIe-GcCfO_qLab6uCKAXqTasM,4291
67
+ stadiamaps/models/map_match_route_response.py,sha256=f2g9xeGIxauSQDDhzSI5PbolREB5IYPboIPbDw_DLkA,4371
68
+ stadiamaps/models/map_match_route_response_all_of.py,sha256=WOWvtLLp801qQM4aJoKR-MTuL6e1nJ3C7FrTRPJ4gxI,2649
69
+ stadiamaps/models/map_match_trace_options.py,sha256=7-30v4_LWw9tO3YGFLy65I9oUohFKzkXpob_NFQMYQM,4609
70
+ stadiamaps/models/map_match_waypoint.py,sha256=zaGNlZat6c1WJFQtBQfuuZSu9nCSix-iWxnKERE-81c,4836
71
+ stadiamaps/models/map_match_waypoint_all_of.py,sha256=wLt5dB0JfKtZOqRcNoFZod2k-EJ3OcBGh_nhTjFA2gk,2793
72
+ stadiamaps/models/matched_point.py,sha256=OA_USvvsrKEOHxBElIQZpaNmSfwexRIjZJzZzKi52pA,5417
73
+ stadiamaps/models/matrix_costing_model.py,sha256=T-5_Js2EoxePDXZVZ6tug_byDf9zZk68Hxlqez8unW0,1034
74
+ stadiamaps/models/matrix_distance.py,sha256=8Rx8ykMyK02UBKFfhRCmfK07hC129RmmgZ4PwlpDik0,4571
75
+ stadiamaps/models/matrix_request.py,sha256=g1V8EwvBQo0093_u9bGZ5xLump8Dk-s1Tu4Lh2wfUqA,6815
76
+ stadiamaps/models/matrix_response.py,sha256=cZ_IBnfnRD98SgZzRMNA-vyVtY-pn50djiT2kztAyKs,6726
77
+ stadiamaps/models/matrix_waypoint.py,sha256=ru1UAkBujJvNWGE0vgGau-TZz-2cX2ch5HWWYNXA_1g,3878
78
+ stadiamaps/models/motor_scooter_costing_options.py,sha256=tgtmqc0yfTxVCGLphD0AXiqMeQEyJNOyAOOTJrgWDlg,13848
79
+ stadiamaps/models/motor_scooter_costing_options_all_of.py,sha256=3XuHRpUB_VvAro0XZwCbq1ExJbEMnB5cm6iagIruuP4,3525
80
+ stadiamaps/models/motorcycle_costing_options.py,sha256=cgpoUm3I7MgMwcHTrzqKpmIae1B3F2Z6z1IMHmnaufY,13304
81
+ stadiamaps/models/motorcycle_costing_options_all_of.py,sha256=NJQD3ez643xF0r9Dmix88gGrPLzrbgJNBPz9il6G9HM,3479
82
+ stadiamaps/models/nearest_roads_request.py,sha256=ANIw3X_KO_rWxMhDJ7RWWuOjYL6eO-MiE_aELH1h8zw,5722
83
+ stadiamaps/models/node_id.py,sha256=Hgekn-e7r4TYdpRTBY-7bxuvd-ay5Gk2Yj6C3JdxzNU,3367
84
+ stadiamaps/models/node_type.py,sha256=Fyi_2RADq14iq1vJF3uDSRtRcZz4qQI2Z5TGWj2c-7o,1052
85
+ stadiamaps/models/optimized_route_request.py,sha256=Mdj44xreOKpnnT0q8ck29bEk34C7l-fVCkV7IOe32tY,5935
86
+ stadiamaps/models/pedestrian_costing_options.py,sha256=2b31bCM8AcfK8zdXpI3lJzjfXADGBzdXjmU2VPN7dA8,9210
87
+ stadiamaps/models/pelias_geo_json_feature.py,sha256=adR2K-My1dNNkv5LDFv46vu3rO_27s5U7IMmfhlXnJY,4595
88
+ stadiamaps/models/pelias_geo_json_properties.py,sha256=70TPk2k5isUdak26_b6r7d7ro4cDDsDK5-5k7xz-NiQ,8507
89
+ stadiamaps/models/pelias_geo_json_properties_addendum.py,sha256=UyC54Uk5yKaswpZgPrEh1Q89EExAgOqcgrWvD0VqHUU,3714
90
+ stadiamaps/models/pelias_geo_json_properties_addendum_osm.py,sha256=3RcDvxVmpaUMT7lorFu4gktunbE60eiHsvEqkBbIwLQ,3519
91
+ stadiamaps/models/pelias_layer.py,sha256=1M78GGitF8JU4c64txBkafdrdxR_Ay-rH2FElcDhvhk,2522
92
+ stadiamaps/models/pelias_response.py,sha256=bqxAPI-zZWwubTq-PC4Cu_7dHeGR0yGfhxvWcZONnuA,4381
93
+ stadiamaps/models/pelias_response_geocoding.py,sha256=KPrpxVWAvd6U0lZCcsHA2WI29Ij4jyVl3YOuxvhvxmo,3621
94
+ stadiamaps/models/pelias_source.py,sha256=xxAjwIvGtOVxZTjavYfwfwPBb8e5TCReiu_IC11LBdI,1023
95
+ stadiamaps/models/restrictions.py,sha256=z9wovLlBkGcDkv2mOn3wc4064wVVWamEQc3L8NicO0Y,4203
96
+ stadiamaps/models/road_class.py,sha256=YzxO_faHFYURFJEKbZEiguUXiE755FHJepyUIs0ciBE,1002
97
+ stadiamaps/models/route_leg.py,sha256=1oxC9JQsfqcEdN3HeIMC-X3EP4OLKmTahoyH0gTnK1g,4931
98
+ stadiamaps/models/route_maneuver.py,sha256=n_zgAyo7NbB0r4-TKDhhjgmWT1fSARPHkIu1TEvbiAM,12445
99
+ stadiamaps/models/route_request.py,sha256=HJXjshfuQYP9qSkgFSjlLKjzJ1GxkSuHkWxU-L6betc,8441
100
+ stadiamaps/models/route_response.py,sha256=5pkpPuufeznbZ6jYWAokO0s2o_rkJmqyq2GlLg6DjaQ,4199
101
+ stadiamaps/models/route_response_alternates_inner.py,sha256=1Ezf2zRwYHWRxVcwJzPDYrIhpoPjvkPkX0Muvdfli7c,3448
102
+ stadiamaps/models/route_response_trip.py,sha256=dArv_kidtG7keQJCrRXRP5GqTaSXJMBMd_MgGbR125I,4565
103
+ stadiamaps/models/route_summary.py,sha256=rNLU6BqUwG_G8GMNAn1WVsyvCxV_-3xZ43oG1UU-Auw,4117
104
+ stadiamaps/models/route_trip.py,sha256=Wlnp5wVaI29XKZ8rMEFoPfPNe0ONV0hkVbSDCftmEns,5213
105
+ stadiamaps/models/routing_response_waypoint.py,sha256=YEl0V0cCPzqaGbswZRxqvj91QU3kwFeV4Ws8EjWBVIA,4778
106
+ stadiamaps/models/routing_response_waypoint_all_of.py,sha256=2u_wmV3NfKkz1rl_DDAbc_6rqMdamOXCFA3XSmh22sA,2756
107
+ stadiamaps/models/routing_waypoint.py,sha256=qgfmEDxkb0AjSufr9yUFWt0QjhFdTOjuGPFIa5Rmqjg,9513
108
+ stadiamaps/models/routing_waypoint_all_of.py,sha256=v7BryWQd_LrFAaEXhHKQBU1OBiF4WmCRN8FJstZUFzU,7320
109
+ stadiamaps/models/routing_waypoint_all_of_search_filter.py,sha256=ePH6m_k9hc_n_rS7aOJ98YenO_V0YKSYEoRjZ_h8oo4,4506
110
+ stadiamaps/models/search_bulk_query.py,sha256=Fv3SYqwdlVMeXnqhqSLRW1Qte0k_NxV8JI1QkxsR2zI,3842
111
+ stadiamaps/models/search_bulk_request.py,sha256=xFoH4wfaXA2uoN-qd-B01Wu7bQ-MoNq0vA6ERSrvZ4Q,5646
112
+ stadiamaps/models/search_query.py,sha256=QeDBn6eKQltrrceySZvq9IMIr-EHah_DYUqvFEh6eS8,8762
113
+ stadiamaps/models/search_structured_bulk_query.py,sha256=VKNzx5en5CWoRXneiApWUYjLb_UxRUilQQdr_AKs33A,3945
114
+ stadiamaps/models/search_structured_query.py,sha256=fvJA9zIwraZdwOiXSre7oSUDbgaEgj7G5Tfh6jNMlnc,10304
115
+ stadiamaps/models/simple_routing_waypoint.py,sha256=ToG8MCNPwNEmRdqStDMkWT9oWSDTmaXVo-zOCCodSLI,4502
116
+ stadiamaps/models/simple_routing_waypoint_all_of.py,sha256=mFHVKuKWz3AuOxfqyGA5D_pai-RCu4Msdmmgf7fwm7A,3385
117
+ stadiamaps/models/speeds.py,sha256=wY9l1pDksAQ-Q2H_ae2vEPFFkqCzhbb3Rd316bpMLEo,4550
118
+ stadiamaps/models/trace_attribute_filter_options.py,sha256=js93t7lUIgJTPjtpw8IqzIfmWzp4vHv0CD2aQ3uKynE,3813
119
+ stadiamaps/models/trace_attribute_key.py,sha256=W2SSCTCMPuyKiWRtZToKpGo63_4VCjF6r4P73-dsViA,4323
120
+ stadiamaps/models/trace_attributes_base_response.py,sha256=Qk2ylbJTlMVgMMLakQ0q5J2OfO2BwgYUFh24D4vktjs,6118
121
+ stadiamaps/models/trace_attributes_request.py,sha256=RrMrN8cIORz7JTnwBwuWNT9JOoFrdjU96FyfEZW8Tks,7935
122
+ stadiamaps/models/trace_attributes_request_all_of.py,sha256=ClTna0geZtUYYJHbVf96BwchKQ8sbf9PwWqKtSNXkyM,2967
123
+ stadiamaps/models/trace_attributes_request_all_of_filters.py,sha256=GM0OdKUGHcmDECtjbmifzLwS-SnbZWSWzn1qGWgia0o,3374
124
+ stadiamaps/models/trace_attributes_response.py,sha256=SI86MYFUZarUu3uwiAEQSKykuEd1a_ZLqAlJrRgT5zg,7304
125
+ stadiamaps/models/trace_attributes_response_all_of.py,sha256=3RKI65ZLB1oH9l_S2yiNWewc-G43E7KrYwr8OK-iRlQ,3632
126
+ stadiamaps/models/trace_edge.py,sha256=n_YxYBDrR2tVvTDaU0cZEovJdX_AkzKleaXb5_Uwc7I,14710
127
+ stadiamaps/models/travel_mode.py,sha256=BWBcVEora6pBizFB1rcdOZ1CtxxkFASxJmODhaPzjik,844
128
+ stadiamaps/models/traversability.py,sha256=5yTnm9ybe5vAOMcwOpt1TPPK9OIbcWeMxxGmfD9nP_A,860
129
+ stadiamaps/models/truck_costing_options.py,sha256=lKFp1yHRWleWgr8Ja8nYmci2pvBXu23xidg7T-lIUSU,13669
130
+ stadiamaps/models/truck_costing_options_all_of.py,sha256=WJDDKZ8rNATbzi8EUoceT7qDzK_kTyu_MQuh45M7Uy0,3804
131
+ stadiamaps/models/tz_response.py,sha256=fdZmxUiecxCwe9XMVGkKpzV_xKb6c_5GTZlPAJWIw1E,3969
132
+ stadiamaps/models/valhalla_languages.py,sha256=yCzcIdZp7ce7DZwevNEEhUN7DgnmA331e-2PZs12Z44,1551
133
+ stadiamaps/models/valhalla_long_units.py,sha256=wqoih3Bkh8pFnee9F7R5zhEU5-RK1Dypucy7fv4x7Sg,817
134
+ stadiamaps/models/warning.py,sha256=EJ52NZn8ApBo5IGCQ4DeMBpu5XGKzhEY0-avzYmASfs,3206
135
+ stadiamaps-3.2.1.dist-info/LICENSE.txt,sha256=vs0H95Mi3Rf1pSskD7rv4KbXLYCSYZ6cqZcFmek0hOg,1518
136
+ stadiamaps-3.2.1.dist-info/METADATA,sha256=CncQ2KzNfTm6QyR-Xftg3req_UNNhJIrxa08Y3oJFgU,2455
137
+ stadiamaps-3.2.1.dist-info/WHEEL,sha256=HiCZjzuy6Dw0hdX5R3LCFPDmFS4BWl8H-8W39XfmgX4,91
138
+ stadiamaps-3.2.1.dist-info/top_level.txt,sha256=dFHpcPo1v2Ajmc74F29BleqU5u8MLB0fgTnNYJIatx0,11
139
+ stadiamaps-3.2.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: setuptools (72.2.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5