Skip to content

Commit 06ff1ac

Browse files
Closure Teamcopybara-github
authored andcommitted
chore: sync changes for Maps JS API v3.53.14.
PiperOrigin-RevId: 553517146
1 parent 0461ee6 commit 06ff1ac

File tree

2 files changed

+80
-90
lines changed

2 files changed

+80
-90
lines changed

contrib/externs/maps/google_maps_api_v3_53.js

Lines changed: 40 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -7256,6 +7256,11 @@ google.maps.PlacesLibrary.prototype.AddressComponent;
72567256
*/
72577257
google.maps.PlacesLibrary.prototype.Attribution;
72587258

7259+
/**
7260+
* @type {typeof google.maps.places.AuthorAttribution}
7261+
*/
7262+
google.maps.PlacesLibrary.prototype.AuthorAttribution;
7263+
72597264
/**
72607265
* @type {typeof google.maps.places.Autocomplete}
72617266
*/
@@ -7296,11 +7301,6 @@ google.maps.PlacesLibrary.prototype.OpeningHoursPoint;
72967301
*/
72977302
google.maps.PlacesLibrary.prototype.Photo;
72987303

7299-
/**
7300-
* @type {typeof google.maps.places.PhotoAttribution}
7301-
*/
7302-
google.maps.PlacesLibrary.prototype.PhotoAttribution;
7303-
73047304
/**
73057305
* @type {typeof google.maps.places.Place}
73067306
*/
@@ -11281,7 +11281,7 @@ google.maps.journeySharing.FleetEngineFleetLocationProviderOptions.prototype
1128111281
/**
1128211282
* A filter query to apply when fetching vehicles. This filter is passed
1128311283
* directly to Fleet Engine. <br><br>See <a
11284-
* href="https://developers.google.com/maps/documentation/transportation-logistics/on-demand-rides-deliveries-solution/reference/fleet-engine/rpc/maps.fleetengine.v1#listvehiclesrequest">ListVehiclesRequest.filter</a>
11284+
* href="https://goo.gle/ListVehiclesRequest-filter">ListVehiclesRequest.filter</a>
1128511285
* for supported formats.<br><br>Note that valid filters for attributes must
1128611286
* have the &quot;attributes&quot; prefix. For example, <code>attributes.x =
1128711287
* &quot;y&quot;</code> or <code>attributes.&quot;x y&quot; =
@@ -14253,6 +14253,35 @@ google.maps.places.Attribution.prototype.provider;
1425314253
*/
1425414254
google.maps.places.Attribution.prototype.providerURI;
1425514255

14256+
/**
14257+
* Available only in the v=beta channel: https://goo.gle/3oAthT3.
14258+
*
14259+
*
14260+
* Access by calling `const {AuthorAttribution} = await
14261+
* google.maps.importLibrary("places")`. See
14262+
* https://developers.google.com/maps/documentation/javascript/libraries.
14263+
* @constructor
14264+
*/
14265+
google.maps.places.AuthorAttribution = function() {};
14266+
14267+
/**
14268+
* Author&#39;s name for this result.
14269+
* @type {string}
14270+
*/
14271+
google.maps.places.AuthorAttribution.prototype.displayName;
14272+
14273+
/**
14274+
* Author&#39;s photo URI for this result. This may not always be available.
14275+
* @type {?string}
14276+
*/
14277+
google.maps.places.AuthorAttribution.prototype.photoURI;
14278+
14279+
/**
14280+
* Author&#39;s profile URI for this result.
14281+
* @type {?string}
14282+
*/
14283+
google.maps.places.AuthorAttribution.prototype.uri;
14284+
1425614285
/**
1425714286
* A widget that provides Place predictions based on a user&#39;s text input. It
1425814287
* attaches to an input element of type <code>text</code>, and listens for text
@@ -14902,9 +14931,9 @@ google.maps.places.Photo = function() {};
1490214931

1490314932
/**
1490414933
* Attribution text to be displayed for this photo.
14905-
* @type {!Array<!google.maps.places.PhotoAttribution>}
14934+
* @type {!Array<!google.maps.places.AuthorAttribution>}
1490614935
*/
14907-
google.maps.places.Photo.prototype.attributions;
14936+
google.maps.places.Photo.prototype.authorAttributions;
1490814937

1490914938
/**
1491014939
* The height of the photo in pixels.
@@ -14925,28 +14954,6 @@ google.maps.places.Photo.prototype.widthPx;
1492514954
*/
1492614955
google.maps.places.Photo.prototype.getURI = function(options) {};
1492714956

14928-
/**
14929-
* Available only in the v=beta channel: https://goo.gle/3oAthT3.
14930-
*
14931-
*
14932-
* Access by calling `const {PhotoAttribution} = await
14933-
* google.maps.importLibrary("places")`. See
14934-
* https://developers.google.com/maps/documentation/javascript/libraries.
14935-
* @constructor
14936-
*/
14937-
google.maps.places.PhotoAttribution = function() {};
14938-
14939-
/**
14940-
* Attribution text to be displayed for this Photo result.
14941-
* @type {string}
14942-
*/
14943-
google.maps.places.PhotoAttribution.prototype.author;
14944-
14945-
/**
14946-
* @type {?string}
14947-
*/
14948-
google.maps.places.PhotoAttribution.prototype.authorURI;
14949-
1495014957
/**
1495114958
* Defines photo-requesting options.
1495214959
* @record
@@ -16494,22 +16501,10 @@ google.maps.places.RankBy = {
1649416501
google.maps.places.Review = function() {};
1649516502

1649616503
/**
16497-
* The name of the reviewer.
16498-
* @type {?string}
16499-
*/
16500-
google.maps.places.Review.prototype.author;
16501-
16502-
/**
16503-
* A URL to the reviwer&#39;s profile image.
16504-
* @type {?string}
16505-
*/
16506-
google.maps.places.Review.prototype.authorPhotoURI;
16507-
16508-
/**
16509-
* A URL to the reviewer&#39;s profile.
16510-
* @type {?string}
16504+
* The reviewer.
16505+
* @type {?google.maps.places.AuthorAttribution}
1651116506
*/
16512-
google.maps.places.Review.prototype.authorURI;
16507+
google.maps.places.Review.prototype.authorAttribution;
1651316508

1651416509
/**
1651516510
* @type {?Date}

contrib/externs/maps/google_maps_api_v3_exp.js

Lines changed: 40 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -7256,6 +7256,11 @@ google.maps.PlacesLibrary.prototype.AddressComponent;
72567256
*/
72577257
google.maps.PlacesLibrary.prototype.Attribution;
72587258

7259+
/**
7260+
* @type {typeof google.maps.places.AuthorAttribution}
7261+
*/
7262+
google.maps.PlacesLibrary.prototype.AuthorAttribution;
7263+
72597264
/**
72607265
* @type {typeof google.maps.places.Autocomplete}
72617266
*/
@@ -7296,11 +7301,6 @@ google.maps.PlacesLibrary.prototype.OpeningHoursPoint;
72967301
*/
72977302
google.maps.PlacesLibrary.prototype.Photo;
72987303

7299-
/**
7300-
* @type {typeof google.maps.places.PhotoAttribution}
7301-
*/
7302-
google.maps.PlacesLibrary.prototype.PhotoAttribution;
7303-
73047304
/**
73057305
* @type {typeof google.maps.places.Place}
73067306
*/
@@ -11281,7 +11281,7 @@ google.maps.journeySharing.FleetEngineFleetLocationProviderOptions.prototype
1128111281
/**
1128211282
* A filter query to apply when fetching vehicles. This filter is passed
1128311283
* directly to Fleet Engine. <br><br>See <a
11284-
* href="https://developers.google.com/maps/documentation/transportation-logistics/on-demand-rides-deliveries-solution/reference/fleet-engine/rpc/maps.fleetengine.v1#listvehiclesrequest">ListVehiclesRequest.filter</a>
11284+
* href="https://goo.gle/ListVehiclesRequest-filter">ListVehiclesRequest.filter</a>
1128511285
* for supported formats.<br><br>Note that valid filters for attributes must
1128611286
* have the &quot;attributes&quot; prefix. For example, <code>attributes.x =
1128711287
* &quot;y&quot;</code> or <code>attributes.&quot;x y&quot; =
@@ -14253,6 +14253,35 @@ google.maps.places.Attribution.prototype.provider;
1425314253
*/
1425414254
google.maps.places.Attribution.prototype.providerURI;
1425514255

14256+
/**
14257+
* Available only in the v=beta channel: https://goo.gle/3oAthT3.
14258+
*
14259+
*
14260+
* Access by calling `const {AuthorAttribution} = await
14261+
* google.maps.importLibrary("places")`. See
14262+
* https://developers.google.com/maps/documentation/javascript/libraries.
14263+
* @constructor
14264+
*/
14265+
google.maps.places.AuthorAttribution = function() {};
14266+
14267+
/**
14268+
* Author&#39;s name for this result.
14269+
* @type {string}
14270+
*/
14271+
google.maps.places.AuthorAttribution.prototype.displayName;
14272+
14273+
/**
14274+
* Author&#39;s photo URI for this result. This may not always be available.
14275+
* @type {?string}
14276+
*/
14277+
google.maps.places.AuthorAttribution.prototype.photoURI;
14278+
14279+
/**
14280+
* Author&#39;s profile URI for this result.
14281+
* @type {?string}
14282+
*/
14283+
google.maps.places.AuthorAttribution.prototype.uri;
14284+
1425614285
/**
1425714286
* A widget that provides Place predictions based on a user&#39;s text input. It
1425814287
* attaches to an input element of type <code>text</code>, and listens for text
@@ -14902,9 +14931,9 @@ google.maps.places.Photo = function() {};
1490214931

1490314932
/**
1490414933
* Attribution text to be displayed for this photo.
14905-
* @type {!Array<!google.maps.places.PhotoAttribution>}
14934+
* @type {!Array<!google.maps.places.AuthorAttribution>}
1490614935
*/
14907-
google.maps.places.Photo.prototype.attributions;
14936+
google.maps.places.Photo.prototype.authorAttributions;
1490814937

1490914938
/**
1491014939
* The height of the photo in pixels.
@@ -14925,28 +14954,6 @@ google.maps.places.Photo.prototype.widthPx;
1492514954
*/
1492614955
google.maps.places.Photo.prototype.getURI = function(options) {};
1492714956

14928-
/**
14929-
* Available only in the v=beta channel: https://goo.gle/3oAthT3.
14930-
*
14931-
*
14932-
* Access by calling `const {PhotoAttribution} = await
14933-
* google.maps.importLibrary("places")`. See
14934-
* https://developers.google.com/maps/documentation/javascript/libraries.
14935-
* @constructor
14936-
*/
14937-
google.maps.places.PhotoAttribution = function() {};
14938-
14939-
/**
14940-
* Attribution text to be displayed for this Photo result.
14941-
* @type {string}
14942-
*/
14943-
google.maps.places.PhotoAttribution.prototype.author;
14944-
14945-
/**
14946-
* @type {?string}
14947-
*/
14948-
google.maps.places.PhotoAttribution.prototype.authorURI;
14949-
1495014957
/**
1495114958
* Defines photo-requesting options.
1495214959
* @record
@@ -16494,22 +16501,10 @@ google.maps.places.RankBy = {
1649416501
google.maps.places.Review = function() {};
1649516502

1649616503
/**
16497-
* The name of the reviewer.
16498-
* @type {?string}
16499-
*/
16500-
google.maps.places.Review.prototype.author;
16501-
16502-
/**
16503-
* A URL to the reviwer&#39;s profile image.
16504-
* @type {?string}
16505-
*/
16506-
google.maps.places.Review.prototype.authorPhotoURI;
16507-
16508-
/**
16509-
* A URL to the reviewer&#39;s profile.
16510-
* @type {?string}
16504+
* The reviewer.
16505+
* @type {?google.maps.places.AuthorAttribution}
1651116506
*/
16512-
google.maps.places.Review.prototype.authorURI;
16507+
google.maps.places.Review.prototype.authorAttribution;
1651316508

1651416509
/**
1651516510
* @type {?Date}

0 commit comments

Comments
 (0)