Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "0.2.12" # {x-release-please-version}
__version__ = "0.0.0" # {x-release-please-version}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "0.2.12" # {x-release-please-version}
__version__ = "0.0.0" # {x-release-please-version}
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,17 @@ class DeliveryVehicleLocation(proto.Message):
Source of the raw location. Defaults to ``GPS``.
raw_location_accuracy (google.protobuf.wrappers_pb2.DoubleValue):
Accuracy of ``raw_location`` as a radius, in meters.
flp_location (google.type.latlng_pb2.LatLng):
The location from Android's Fused Location
Provider.
flp_update_time (google.protobuf.timestamp_pb2.Timestamp):
Update timestamp of the ``flp_location``
flp_latlng_accuracy_meters (google.protobuf.wrappers_pb2.DoubleValue):
Accuracy of ``flp_location`` in meters as a radius.
flp_heading_degrees (google.protobuf.wrappers_pb2.Int32Value):
Direction the vehicle is moving in degrees, as determined by
the Fused Location Provider. 0 represents North. The valid
range is [0,360).
supplemental_location (google.type.latlng_pb2.LatLng):
Supplemental location provided by the
integrating app.
Expand Down Expand Up @@ -366,6 +377,26 @@ class DeliveryVehicleLocation(proto.Message):
number=25,
message=wrappers_pb2.DoubleValue,
)
flp_location: latlng_pb2.LatLng = proto.Field(
proto.MESSAGE,
number=29,
message=latlng_pb2.LatLng,
)
flp_update_time: timestamp_pb2.Timestamp = proto.Field(
proto.MESSAGE,
number=30,
message=timestamp_pb2.Timestamp,
)
flp_latlng_accuracy_meters: wrappers_pb2.DoubleValue = proto.Field(
proto.MESSAGE,
number=31,
message=wrappers_pb2.DoubleValue,
)
flp_heading_degrees: wrappers_pb2.Int32Value = proto.Field(
proto.MESSAGE,
number=32,
message=wrappers_pb2.Int32Value,
)
supplemental_location: latlng_pb2.LatLng = proto.Field(
proto.MESSAGE,
number=18,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
],
"language": "PYTHON",
"name": "google-maps-fleetengine-delivery",
"version": "0.2.12"
"version": "0.1.0"
},
"snippets": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8816,6 +8816,10 @@ def test_create_delivery_vehicle_rest_call_success(request_type):
"raw_location_time": {},
"raw_location_sensor": 1,
"raw_location_accuracy": {},
"flp_location": {},
"flp_update_time": {},
"flp_latlng_accuracy_meters": {},
"flp_heading_degrees": {},
"supplemental_location": {},
"supplemental_location_time": {},
"supplemental_location_sensor": 1,
Expand Down Expand Up @@ -9341,6 +9345,10 @@ def test_update_delivery_vehicle_rest_call_success(request_type):
"raw_location_time": {},
"raw_location_sensor": 1,
"raw_location_accuracy": {},
"flp_location": {},
"flp_update_time": {},
"flp_latlng_accuracy_meters": {},
"flp_heading_degrees": {},
"supplemental_location": {},
"supplemental_location_time": {},
"supplemental_location_sensor": 1,
Expand Down Expand Up @@ -9773,6 +9781,10 @@ def test_create_task_rest_call_success(request_type):
"raw_location_time": {},
"raw_location_sensor": 1,
"raw_location_accuracy": {},
"flp_location": {},
"flp_update_time": {},
"flp_latlng_accuracy_meters": {},
"flp_heading_degrees": {},
"supplemental_location": {},
"supplemental_location_time": {},
"supplemental_location_sensor": 1,
Expand Down Expand Up @@ -10308,6 +10320,10 @@ def test_update_task_rest_call_success(request_type):
"raw_location_time": {},
"raw_location_sensor": 1,
"raw_location_accuracy": {},
"flp_location": {},
"flp_update_time": {},
"flp_latlng_accuracy_meters": {},
"flp_heading_degrees": {},
"supplemental_location": {},
"supplemental_location_time": {},
"supplemental_location_sensor": 1,
Expand Down
Loading