@@ -9432,6 +9432,10 @@ declare namespace google.maps.journeySharing {
94329432 * The details for a task returned by Fleet Engine.
94339433 */
94349434 export interface Task {
9435+ /**
9436+ * Attributes assigned to the task.
9437+ */
9438+ attributes : { [ key : string ] : any } ;
94359439 /**
94369440 * The timestamp of the estimated completion time of the task.
94379441 */
@@ -9515,6 +9519,10 @@ declare namespace google.maps.journeySharing {
95159519 * The details for a task tracking info object returned by Fleet Engine.
95169520 */
95179521 export interface TaskTrackingInfo {
9522+ /**
9523+ * Attributes assigned to the task.
9524+ */
9525+ attributes : { [ key : string ] : any } ;
95189526 /**
95199527 * The estimated arrival time to the stop location.
95209528 */
@@ -9706,15 +9714,14 @@ declare namespace google.maps.journeySharing {
97069714 */
97079715 drivingDurationMillis : number | null ;
97089716 /**
9709- * The path from the previous waypoint (or the vehicle's current
9710- * location, if this waypoint is the first in the list of waypoints) to this
9711- * waypoint.
9717+ * The path from the previous stop (or the vehicle's current location,
9718+ * if this stop is the first in the list of stops) to this stop.
97129719 */
97139720 path : google . maps . LatLngLiteral [ ] | null ;
97149721 /**
9715- * The stops to be served by this vehicle .
9722+ * Information about the stop .
97169723 */
9717- stop : google . maps . journeySharing . DeliveryVehicleStop [ ] | null ;
9724+ stop : google . maps . journeySharing . DeliveryVehicleStop | null ;
97189725 }
97199726 /**
97209727 * VehicleLocationUpdate type
@@ -11105,10 +11112,9 @@ declare namespace google.maps.places {
1110511112 formattedAddress ?: string | null ;
1110611113 /**
1110711114 * Available only in the v=beta channel: https://goo.gle/3oAthT3.
11108- * Calculates the timestamp (as milliseconds since the epoch, suitable for
11109- * use with <code>new Date()</code>) representing the next OpeningHoursTime.
11110- * Returns undefined if the data is insufficient to calculate the result, or
11111- * this place is not operational.
11115+ * Calculates the Date representing the next OpeningHoursTime. Returns
11116+ * undefined if the data is insufficient to calculate the result, or this
11117+ * place is not operational.
1111211118 */
1111311119 getNextOpeningTime ( date ?: Date ) : Promise < Date | undefined > ;
1111411120 /**
0 commit comments