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
2 changes: 1 addition & 1 deletion types/google.maps/google.maps-tests.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// No tests required for generated types
// Synced from: https://github.com/googlemaps/js-types/commit/5e9ee0bb9d5664ee9189b18bb7ca6f3df728929c
// Synced from: https://github.com/googlemaps/js-types/commit/5c18d66b827f52c40cac7ff7012cfb3f4d3eb18f
google.maps.Map;
6 changes: 5 additions & 1 deletion types/google.maps/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6381,6 +6381,10 @@ declare namespace google.maps.addressValidation {
* The address being validated. Unformatted addresses should be submitted via {@link google.maps.places.PostalAddress.addressLines}.
*/
address: google.maps.places.PostalAddressLiteral;
/**
* Identifiers used to attribute calls to specific packages or OSS libraries.
*/
internalUsageAttributionIds?: Iterable<string> | null;
/**
* If using a PlaceAutocompleteElement, include it here to link the AddressValidation API calls with the autocomplete session token.
*/
Expand Down Expand Up @@ -15892,7 +15896,7 @@ declare namespace google.maps.routes {
createPolylines(options?: google.maps.routes.RoutePolylineOptions): google.maps.Polyline[];
/**
* Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
* Creates a popover for the route based on the data available for the route, configured in a way suitable for annotating a route on a map. Currently uses {@link google.maps.routes.Route.localizedValues} and {@link google.maps.routes.Route.path}, if available.
* Creates a popover for the route based on the data available for the route, configured in a way suitable for annotating a route on a map. Currently uses {@link google.maps.routes.Route.localizedValues}, {@link google.maps.routes.Route.path}, and {@link google.maps.routes.Route.legs}, if available.
*/
createPopover(): Promise<google.maps.maps3d.PopoverElement>;
/**
Expand Down