google-closure-compiler 20260527.0.0 → 20260602.0.0

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.
@@ -8641,6 +8641,36 @@ google.maps.PlacesLibrary.prototype.StringRange;
8641
8641
  */
8642
8642
  google.maps.PlacesLibrary.prototype.TimeZone;
8643
8643
 
8644
+ /**
8645
+ * @type {typeof google.maps.places.TransitAgency}
8646
+ */
8647
+ google.maps.PlacesLibrary.prototype.TransitAgency;
8648
+
8649
+ /**
8650
+ * @type {typeof google.maps.places.TransitIcon}
8651
+ */
8652
+ google.maps.PlacesLibrary.prototype.TransitIcon;
8653
+
8654
+ /**
8655
+ * @type {typeof google.maps.places.TransitLine}
8656
+ */
8657
+ google.maps.PlacesLibrary.prototype.TransitLine;
8658
+
8659
+ /**
8660
+ * @type {typeof google.maps.places.TransitStation}
8661
+ */
8662
+ google.maps.PlacesLibrary.prototype.TransitStation;
8663
+
8664
+ /**
8665
+ * @type {typeof google.maps.places.TransitStop}
8666
+ */
8667
+ google.maps.PlacesLibrary.prototype.TransitStop;
8668
+
8669
+ /**
8670
+ * @type {typeof google.maps.places.TransitVehicleType}
8671
+ */
8672
+ google.maps.PlacesLibrary.prototype.TransitVehicleType;
8673
+
8644
8674
  /**
8645
8675
  *
8646
8676
  * Access by calling `const {Point} = await google.maps.importLibrary("core");`.
@@ -17721,7 +17751,11 @@ google.maps.maps3d.Marker3DInteractiveElementOptions.prototype.title;
17721
17751
 
17722
17752
  /**
17723
17753
  * Shows a position on a 3D map. Note that the <code>position</code> must be set
17724
- * for the <code>MarkerElement</code> to display.
17754
+ * for the <code>MarkerElement</code> to display.<br><br>
17755
+ * <code>MarkerElement</code> supports high customization via custom HTML
17756
+ * elements, but has lower interaction performance than
17757
+ * <code>Marker3DElement</code>, especially when handling more than 1000 markers
17758
+ * on a map.
17725
17759
  *
17726
17760
  * Access by calling `const {MarkerElement} = await
17727
17761
  * google.maps.importLibrary("maps3d");`. See
@@ -19793,7 +19827,7 @@ google.maps.places.BasicPlaceAutocompleteElement.prototype.description;
19793
19827
  * Whether the input element is disabled. See <a
19794
19828
  * href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#disabled">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#disabled</a>
19795
19829
  * for details.
19796
- * @type {boolean|null}
19830
+ * @type {boolean|null|undefined}
19797
19831
  */
19798
19832
  google.maps.places.BasicPlaceAutocompleteElement.prototype.disabled;
19799
19833
 
@@ -19856,9 +19890,15 @@ google.maps.places.BasicPlaceAutocompleteElement.prototype.maxlength;
19856
19890
  */
19857
19891
  google.maps.places.BasicPlaceAutocompleteElement.prototype.name;
19858
19892
 
19893
+ /**
19894
+ * Whether to hide the clear button.
19895
+ * @type {boolean|null|undefined}
19896
+ */
19897
+ google.maps.places.BasicPlaceAutocompleteElement.prototype.noClearButton;
19898
+
19859
19899
  /**
19860
19900
  * Whether to hide the input icon.
19861
- * @type {boolean|null}
19901
+ * @type {boolean|null|undefined}
19862
19902
  */
19863
19903
  google.maps.places.BasicPlaceAutocompleteElement.prototype.noInputIcon;
19864
19904
 
@@ -19888,7 +19928,7 @@ google.maps.places.BasicPlaceAutocompleteElement.prototype
19888
19928
  * Whether the input element is read-only. See <a
19889
19929
  * href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#readonly">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#readonly</a>
19890
19930
  * for details.
19891
- * @type {boolean|null}
19931
+ * @type {boolean|null|undefined}
19892
19932
  */
19893
19933
  google.maps.places.BasicPlaceAutocompleteElement.prototype.readonly;
19894
19934
 
@@ -19980,6 +20020,11 @@ google.maps.places.BasicPlaceAutocompleteElementOptions.prototype.maxlength;
19980
20020
  */
19981
20021
  google.maps.places.BasicPlaceAutocompleteElementOptions.prototype.name;
19982
20022
 
20023
+ /**
20024
+ * @type {boolean|null|undefined}
20025
+ */
20026
+ google.maps.places.BasicPlaceAutocompleteElementOptions.prototype.noClearButton;
20027
+
19983
20028
  /**
19984
20029
  * @type {boolean|null|undefined}
19985
20030
  */
@@ -21673,6 +21718,13 @@ google.maps.places.Place.prototype.svgIconMaskURI;
21673
21718
  */
21674
21719
  google.maps.places.Place.prototype.timeZone;
21675
21720
 
21721
+ /**
21722
+ * Information about the transit station. <code>undefined</code> if the transit
21723
+ * data has not been loaded from the server.
21724
+ * @type {!google.maps.places.TransitStation|null|undefined}
21725
+ */
21726
+ google.maps.places.Place.prototype.transitStation;
21727
+
21676
21728
  /**
21677
21729
  * An array of <a
21678
21730
  * href="https://developers.google.com/maps/documentation/places/web-service/supported_types">types
@@ -21959,7 +22011,7 @@ google.maps.places.PlaceAutocompleteElement.prototype.description;
21959
22011
  * Whether the input element is disabled. See <a
21960
22012
  * href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#disabled">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#disabled</a>
21961
22013
  * for details.
21962
- * @type {boolean|null}
22014
+ * @type {boolean|null|undefined}
21963
22015
  */
21964
22016
  google.maps.places.PlaceAutocompleteElement.prototype.disabled;
21965
22017
 
@@ -22022,9 +22074,15 @@ google.maps.places.PlaceAutocompleteElement.prototype.maxlength;
22022
22074
  */
22023
22075
  google.maps.places.PlaceAutocompleteElement.prototype.name;
22024
22076
 
22077
+ /**
22078
+ * Whether to hide the clear button.
22079
+ * @type {boolean|null|undefined}
22080
+ */
22081
+ google.maps.places.PlaceAutocompleteElement.prototype.noClearButton;
22082
+
22025
22083
  /**
22026
22084
  * Whether to hide the input icon.
22027
- * @type {boolean|null}
22085
+ * @type {boolean|null|undefined}
22028
22086
  */
22029
22087
  google.maps.places.PlaceAutocompleteElement.prototype.noInputIcon;
22030
22088
 
@@ -22054,7 +22112,7 @@ google.maps.places.PlaceAutocompleteElement.prototype
22054
22112
  * Whether the input element is read-only. See <a
22055
22113
  * href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#readonly">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#readonly</a>
22056
22114
  * for details.
22057
- * @type {boolean|null}
22115
+ * @type {boolean|null|undefined}
22058
22116
  */
22059
22117
  google.maps.places.PlaceAutocompleteElement.prototype.readonly;
22060
22118
 
@@ -22154,6 +22212,11 @@ google.maps.places.PlaceAutocompleteElementOptions.prototype.maxlength;
22154
22212
  */
22155
22213
  google.maps.places.PlaceAutocompleteElementOptions.prototype.name;
22156
22214
 
22215
+ /**
22216
+ * @type {boolean|null|undefined}
22217
+ */
22218
+ google.maps.places.PlaceAutocompleteElementOptions.prototype.noClearButton;
22219
+
22157
22220
  /**
22158
22221
  * @type {boolean|null|undefined}
22159
22222
  */
@@ -25592,6 +25655,389 @@ google.maps.places.TimeZone.prototype.id;
25592
25655
  */
25593
25656
  google.maps.places.TimeZone.prototype.version;
25594
25657
 
25658
+ /**
25659
+ * Represents a transit agency.
25660
+ *
25661
+ * Access by calling `const {TransitAgency} = await
25662
+ * google.maps.importLibrary("places");`. See
25663
+ * https://developers.google.com/maps/documentation/javascript/libraries.
25664
+ * @constructor
25665
+ */
25666
+ google.maps.places.TransitAgency = function() {};
25667
+
25668
+ /**
25669
+ * The name of the agency in the requested language.
25670
+ * @type {string|null}
25671
+ */
25672
+ google.maps.places.TransitAgency.prototype.displayName;
25673
+
25674
+ /**
25675
+ * The agency name text&#39;s BCP-47 language code, such as &quot;en-US&quot; or
25676
+ * &quot;sr-Latn&quot;. For more information, see <a
25677
+ * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
25678
+ * @type {string|null}
25679
+ */
25680
+ google.maps.places.TransitAgency.prototype.displayNameLanguageCode;
25681
+
25682
+ /**
25683
+ * The URL of the agency&#39;s fare details page.
25684
+ * @type {!URL|null}
25685
+ */
25686
+ google.maps.places.TransitAgency.prototype.fareURL;
25687
+
25688
+ /**
25689
+ * A localized branded icon of a transit system.
25690
+ * @type {!google.maps.places.TransitIcon|null}
25691
+ */
25692
+ google.maps.places.TransitAgency.prototype.icon;
25693
+
25694
+ /**
25695
+ * The transit lines that are served by this agency.
25696
+ * @type {!Array<!google.maps.places.TransitLine>}
25697
+ */
25698
+ google.maps.places.TransitAgency.prototype.lines;
25699
+
25700
+ /**
25701
+ * The URL of the agency&#39;s homepage.
25702
+ * @type {!URL|null}
25703
+ */
25704
+ google.maps.places.TransitAgency.prototype.url;
25705
+
25706
+ /**
25707
+ * Represents a transit icon.
25708
+ *
25709
+ * Access by calling `const {TransitIcon} = await
25710
+ * google.maps.importLibrary("places");`. See
25711
+ * https://developers.google.com/maps/documentation/javascript/libraries.
25712
+ * @constructor
25713
+ */
25714
+ google.maps.places.TransitIcon = function() {};
25715
+
25716
+ /**
25717
+ * Whether the name is contained in the icon and there is no need to display it
25718
+ * next to the icon.
25719
+ * @type {boolean|null}
25720
+ */
25721
+ google.maps.places.TransitIcon.prototype.nameIncluded;
25722
+
25723
+ /**
25724
+ * The URL of the icon.
25725
+ * @type {!URL|null}
25726
+ */
25727
+ google.maps.places.TransitIcon.prototype.url;
25728
+
25729
+ /**
25730
+ * Represents a transit line.
25731
+ *
25732
+ * Access by calling `const {TransitLine} = await
25733
+ * google.maps.importLibrary("places");`. See
25734
+ * https://developers.google.com/maps/documentation/javascript/libraries.
25735
+ * @constructor
25736
+ */
25737
+ google.maps.places.TransitLine = function() {};
25738
+
25739
+ /**
25740
+ * The background color of the labels for this transit line in hexadecimal
25741
+ * format (e.g., &quot;#909CE1&quot;). This color can also be used for drawing
25742
+ * shapes for this transit line.
25743
+ * @type {string|null}
25744
+ */
25745
+ google.maps.places.TransitLine.prototype.backgroundColor;
25746
+
25747
+ /**
25748
+ * The full name of this transit line (e.g., &quot;Sunnydale local&quot;).
25749
+ * @type {string|null}
25750
+ */
25751
+ google.maps.places.TransitLine.prototype.displayName;
25752
+
25753
+ /**
25754
+ * The transit line full name text&#39;s BCP-47 language code, such as
25755
+ * &quot;en-US&quot; or &quot;sr-Latn&quot;. For more information, see <a
25756
+ * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
25757
+ * @type {string|null}
25758
+ */
25759
+ google.maps.places.TransitLine.prototype.displayNameLanguageCode;
25760
+
25761
+ /**
25762
+ * Icon for this particular line.
25763
+ * @type {!google.maps.places.TransitIcon|null}
25764
+ */
25765
+ google.maps.places.TransitLine.prototype.icon;
25766
+
25767
+ /**
25768
+ * The id of the transit line that can be used to uniquely identify the line
25769
+ * among other transit lines in the same transit station. This identifier is not
25770
+ * guaranteed to be stable across different responses.
25771
+ * @type {string|null}
25772
+ */
25773
+ google.maps.places.TransitLine.prototype.id;
25774
+
25775
+ /**
25776
+ * The short name of this transit line (e.g., &quot;S2&quot;).
25777
+ * @type {string|null}
25778
+ */
25779
+ google.maps.places.TransitLine.prototype.shortDisplayName;
25780
+
25781
+ /**
25782
+ * The transit line short name text&#39;s BCP-47 language code, such as
25783
+ * &quot;en-US&quot; or &quot;sr-Latn&quot;. For more information, see <a
25784
+ * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
25785
+ * @type {string|null}
25786
+ */
25787
+ google.maps.places.TransitLine.prototype.shortDisplayNameLanguageCode;
25788
+
25789
+ /**
25790
+ * The text color of labels for this transit line in hexadecimal format (e.g.,
25791
+ * &quot;#909CE1&quot;).
25792
+ * @type {string|null}
25793
+ */
25794
+ google.maps.places.TransitLine.prototype.textColor;
25795
+
25796
+ /**
25797
+ * The URL of a webpage with details about this line.
25798
+ * @type {!URL|null}
25799
+ */
25800
+ google.maps.places.TransitLine.prototype.url;
25801
+
25802
+ /**
25803
+ * Icon for this particular vehicle type.
25804
+ * @type {!google.maps.places.TransitIcon|null}
25805
+ */
25806
+ google.maps.places.TransitLine.prototype.vehicleIcon;
25807
+
25808
+ /**
25809
+ * The type of vehicle used.
25810
+ * @type {!google.maps.places.TransitVehicleType|null}
25811
+ */
25812
+ google.maps.places.TransitLine.prototype.vehicleType;
25813
+
25814
+ /**
25815
+ * Represents transit-specific information for a place.
25816
+ *
25817
+ * Access by calling `const {TransitStation} = await
25818
+ * google.maps.importLibrary("places");`. See
25819
+ * https://developers.google.com/maps/documentation/javascript/libraries.
25820
+ * @constructor
25821
+ */
25822
+ google.maps.places.TransitStation = function() {};
25823
+
25824
+ /**
25825
+ * The transit agencies that serve this station.
25826
+ * @type {!Array<!google.maps.places.TransitAgency>}
25827
+ */
25828
+ google.maps.places.TransitStation.prototype.agencies;
25829
+
25830
+ /**
25831
+ * The name of the station in the local language.
25832
+ * @type {string|null}
25833
+ */
25834
+ google.maps.places.TransitStation.prototype.displayName;
25835
+
25836
+ /**
25837
+ * The local display name text&#39;s BCP-47 language code, such as
25838
+ * &quot;en-US&quot; or &quot;sr-Latn&quot;. For more information, see <a
25839
+ * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
25840
+ * @type {string|null}
25841
+ */
25842
+ google.maps.places.TransitStation.prototype.displayNameLanguageCode;
25843
+
25844
+ /**
25845
+ * The transit stops at this station.
25846
+ * @type {!Array<!google.maps.places.TransitStop>}
25847
+ */
25848
+ google.maps.places.TransitStation.prototype.stops;
25849
+
25850
+ /**
25851
+ * Represents a transit stop.
25852
+ *
25853
+ * Access by calling `const {TransitStop} = await
25854
+ * google.maps.importLibrary("places");`. See
25855
+ * https://developers.google.com/maps/documentation/javascript/libraries.
25856
+ * @constructor
25857
+ */
25858
+ google.maps.places.TransitStop = function() {};
25859
+
25860
+ /**
25861
+ * The name of the stop in the requested language.
25862
+ * @type {string|null}
25863
+ */
25864
+ google.maps.places.TransitStop.prototype.displayName;
25865
+
25866
+ /**
25867
+ * The name of the stop in the requested language&#39;s BCP-47 language code,
25868
+ * such as &quot;en-US&quot; or &quot;sr-Latn&quot;. For more information, see
25869
+ * <a
25870
+ * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
25871
+ * @type {string|null}
25872
+ */
25873
+ google.maps.places.TransitStop.prototype.displayNameLanguageCode;
25874
+
25875
+ /**
25876
+ * This field indicates whether there is an accessible path from outside the
25877
+ * station to the stop. It does not indicate whether it is possible to board a
25878
+ * vehicle from the stop.
25879
+ * @type {boolean|null}
25880
+ */
25881
+ google.maps.places.TransitStop.prototype.hasWheelchairAccessibleEntrance;
25882
+
25883
+ /**
25884
+ * The id of the transit stop that can be used to uniquely identify the stop
25885
+ * among other transit stops in the same transit station. This identifier is not
25886
+ * guaranteed to be stable across different responses.
25887
+ * @type {string|null}
25888
+ */
25889
+ google.maps.places.TransitStop.prototype.id;
25890
+
25891
+ /**
25892
+ * The stop&#39;s location.
25893
+ * @type {!google.maps.LatLngAltitude|null}
25894
+ */
25895
+ google.maps.places.TransitStop.prototype.location;
25896
+
25897
+ /**
25898
+ * The platform code represented by this stop. It can be formatted in any way
25899
+ * (e.g., &quot;2&quot;, &quot;Platform 2&quot;, &quot;2-4&quot;, or
25900
+ * &quot;1x&quot;).
25901
+ * @type {string|null}
25902
+ */
25903
+ google.maps.places.TransitStop.prototype.platformCode;
25904
+
25905
+ /**
25906
+ * The platform code text&#39;s BCP-47 language code, such as &quot;en-US&quot;
25907
+ * or &quot;sr-Latn&quot;. For more information, see <a
25908
+ * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
25909
+ * @type {string|null}
25910
+ */
25911
+ google.maps.places.TransitStop.prototype.platformCodeLanguageCode;
25912
+
25913
+ /**
25914
+ * The verbatim text written on the signboard for this platform (e.g.,
25915
+ * &quot;Towards Central&quot; or &quot;East side &amp; Brooklyn&quot;). When
25916
+ * <code>platformCode</code> is absent, this field is potentially the only
25917
+ * identifier for the platform. However, both <code>platformCode</code> and
25918
+ * <code>signageText</code> may be set simultaneously.
25919
+ * @type {string|null}
25920
+ */
25921
+ google.maps.places.TransitStop.prototype.signageText;
25922
+
25923
+ /**
25924
+ * The signage text&#39;s BCP-47 language code, such as &quot;en-US&quot; or
25925
+ * &quot;sr-Latn&quot;. For more information, see <a
25926
+ * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
25927
+ * @type {string|null}
25928
+ */
25929
+ google.maps.places.TransitStop.prototype.signageTextLanguageCode;
25930
+
25931
+ /**
25932
+ * Human readable identifier of the stop, used by transit agencies to
25933
+ * distinguish stops with the same name.
25934
+ * @type {string|null}
25935
+ */
25936
+ google.maps.places.TransitStop.prototype.stopCode;
25937
+
25938
+ /**
25939
+ * The stop code text&#39;s BCP-47 language code, such as &quot;en-US&quot; or
25940
+ * &quot;sr-Latn&quot;. For more information, see <a
25941
+ * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
25942
+ * @type {string|null}
25943
+ */
25944
+ google.maps.places.TransitStop.prototype.stopCodeLanguageCode;
25945
+
25946
+ /**
25947
+ * The type of a transit vehicle.
25948
+ *
25949
+ * Access by calling `const {TransitVehicleType} = await
25950
+ * google.maps.importLibrary("places");`. See
25951
+ * https://developers.google.com/maps/documentation/javascript/libraries.
25952
+ * @enum {string}
25953
+ */
25954
+ google.maps.places.TransitVehicleType = {
25955
+ /**
25956
+ * Airplane.
25957
+ */
25958
+ AIRPLANE: 'AIRPLANE',
25959
+ /**
25960
+ * Bus.
25961
+ */
25962
+ BUS: 'BUS',
25963
+ /**
25964
+ * Cable car.
25965
+ */
25966
+ CABLE_CAR: 'CABLE_CAR',
25967
+ /**
25968
+ * Coach.
25969
+ */
25970
+ COACH: 'COACH',
25971
+ /**
25972
+ * Commuter train.
25973
+ */
25974
+ COMMUTER_TRAIN: 'COMMUTER_TRAIN',
25975
+ /**
25976
+ * Ferry.
25977
+ */
25978
+ FERRY: 'FERRY',
25979
+ /**
25980
+ * Funicular.
25981
+ */
25982
+ FUNICULAR: 'FUNICULAR',
25983
+ /**
25984
+ * Gondola lift.
25985
+ */
25986
+ GONDOLA_LIFT: 'GONDOLA_LIFT',
25987
+ /**
25988
+ * Heavy rail.
25989
+ */
25990
+ HEAVY_RAIL: 'HEAVY_RAIL',
25991
+ /**
25992
+ * High speed train.
25993
+ */
25994
+ HIGH_SPEED_TRAIN: 'HIGH_SPEED_TRAIN',
25995
+ /**
25996
+ * Horse carriage.
25997
+ */
25998
+ HORSE_CARRIAGE: 'HORSE_CARRIAGE',
25999
+ /**
26000
+ * Intercity bus.
26001
+ */
26002
+ INTERCITY_BUS: 'INTERCITY_BUS',
26003
+ /**
26004
+ * Long distance train.
26005
+ */
26006
+ LONG_DISTANCE_TRAIN: 'LONG_DISTANCE_TRAIN',
26007
+ /**
26008
+ * Metro rail.
26009
+ */
26010
+ METRO_RAIL: 'METRO_RAIL',
26011
+ /**
26012
+ * Monorail.
26013
+ */
26014
+ MONORAIL: 'MONORAIL',
26015
+ /**
26016
+ * Rail.
26017
+ */
26018
+ RAIL: 'RAIL',
26019
+ /**
26020
+ * Share taxi.
26021
+ */
26022
+ SHARE_TAXI: 'SHARE_TAXI',
26023
+ /**
26024
+ * Special.
26025
+ */
26026
+ SPECIAL: 'SPECIAL',
26027
+ /**
26028
+ * Subway.
26029
+ */
26030
+ SUBWAY: 'SUBWAY',
26031
+ /**
26032
+ * Tram.
26033
+ */
26034
+ TRAM: 'TRAM',
26035
+ /**
26036
+ * Trolleybus.
26037
+ */
26038
+ TROLLEYBUS: 'TROLLEYBUS',
26039
+ };
26040
+
25595
26041
  /**
25596
26042
  * @const
25597
26043
  */
@@ -25671,6 +26117,13 @@ google.maps.routes.ComputeRouteMatrixRequest.prototype.extraComputations;
25671
26117
  */
25672
26118
  google.maps.routes.ComputeRouteMatrixRequest.prototype.fields;
25673
26119
 
26120
+ /**
26121
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
26122
+ * @type {!Iterable<string>|null|undefined}
26123
+ */
26124
+ google.maps.routes.ComputeRouteMatrixRequest.prototype
26125
+ .internalUsageAttributionIds;
26126
+
25674
26127
  /**
25675
26128
  * The BCP-47 language code, such as &quot;en-US&quot; or &quot;sr-Latn&quot;.
25676
26129
  * For more information, see <a
@@ -25887,6 +26340,12 @@ google.maps.routes.ComputeRoutesRequest.prototype.fields;
25887
26340
  */
25888
26341
  google.maps.routes.ComputeRoutesRequest.prototype.intermediates;
25889
26342
 
26343
+ /**
26344
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
26345
+ * @type {!Iterable<string>|null|undefined}
26346
+ */
26347
+ google.maps.routes.ComputeRoutesRequest.prototype.internalUsageAttributionIds;
26348
+
25890
26349
  /**
25891
26350
  * The BCP-47 language code, such as &quot;en-US&quot; or &quot;sr-Latn&quot;.
25892
26351
  * For more information, see <a
@@ -26682,6 +27141,12 @@ google.maps.routes.Route3DElement.prototype.departureTime;
26682
27141
  */
26683
27142
  google.maps.routes.Route3DElement.prototype.destination;
26684
27143
 
27144
+ /**
27145
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
27146
+ * @type {!Iterable<string>|null|undefined}
27147
+ */
27148
+ google.maps.routes.Route3DElement.prototype.internalUsageAttributionIds;
27149
+
26685
27150
  /**
26686
27151
  * The origin of the route.
26687
27152
  * @type {string|google.maps.LatLng|google.maps.LatLngLiteral|google.maps.LatLngAltitude|google.maps.LatLngAltitudeLiteral|google.maps.places.Place|null}
@@ -26727,6 +27192,12 @@ google.maps.routes.Route3DElementOptions.prototype.departureTime;
26727
27192
  */
26728
27193
  google.maps.routes.Route3DElementOptions.prototype.destination;
26729
27194
 
27195
+ /**
27196
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
27197
+ * @type {!Iterable<string>|null|undefined}
27198
+ */
27199
+ google.maps.routes.Route3DElementOptions.prototype.internalUsageAttributionIds;
27200
+
26730
27201
  /**
26731
27202
  * See {@link google.maps.routes.Route3DElement.origin}.
26732
27203
  * @type {string|google.maps.LatLng|google.maps.LatLngLiteral|google.maps.LatLngAltitude|google.maps.LatLngAltitudeLiteral|google.maps.places.Place|null}
@@ -8641,6 +8641,36 @@ google.maps.PlacesLibrary.prototype.StringRange;
8641
8641
  */
8642
8642
  google.maps.PlacesLibrary.prototype.TimeZone;
8643
8643
 
8644
+ /**
8645
+ * @type {typeof google.maps.places.TransitAgency}
8646
+ */
8647
+ google.maps.PlacesLibrary.prototype.TransitAgency;
8648
+
8649
+ /**
8650
+ * @type {typeof google.maps.places.TransitIcon}
8651
+ */
8652
+ google.maps.PlacesLibrary.prototype.TransitIcon;
8653
+
8654
+ /**
8655
+ * @type {typeof google.maps.places.TransitLine}
8656
+ */
8657
+ google.maps.PlacesLibrary.prototype.TransitLine;
8658
+
8659
+ /**
8660
+ * @type {typeof google.maps.places.TransitStation}
8661
+ */
8662
+ google.maps.PlacesLibrary.prototype.TransitStation;
8663
+
8664
+ /**
8665
+ * @type {typeof google.maps.places.TransitStop}
8666
+ */
8667
+ google.maps.PlacesLibrary.prototype.TransitStop;
8668
+
8669
+ /**
8670
+ * @type {typeof google.maps.places.TransitVehicleType}
8671
+ */
8672
+ google.maps.PlacesLibrary.prototype.TransitVehicleType;
8673
+
8644
8674
  /**
8645
8675
  *
8646
8676
  * Access by calling `const {Point} = await google.maps.importLibrary("core");`.
@@ -17721,7 +17751,11 @@ google.maps.maps3d.Marker3DInteractiveElementOptions.prototype.title;
17721
17751
 
17722
17752
  /**
17723
17753
  * Shows a position on a 3D map. Note that the <code>position</code> must be set
17724
- * for the <code>MarkerElement</code> to display.
17754
+ * for the <code>MarkerElement</code> to display.<br><br>
17755
+ * <code>MarkerElement</code> supports high customization via custom HTML
17756
+ * elements, but has lower interaction performance than
17757
+ * <code>Marker3DElement</code>, especially when handling more than 1000 markers
17758
+ * on a map.
17725
17759
  *
17726
17760
  * Access by calling `const {MarkerElement} = await
17727
17761
  * google.maps.importLibrary("maps3d");`. See
@@ -19793,7 +19827,7 @@ google.maps.places.BasicPlaceAutocompleteElement.prototype.description;
19793
19827
  * Whether the input element is disabled. See <a
19794
19828
  * href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#disabled">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#disabled</a>
19795
19829
  * for details.
19796
- * @type {boolean|null}
19830
+ * @type {boolean|null|undefined}
19797
19831
  */
19798
19832
  google.maps.places.BasicPlaceAutocompleteElement.prototype.disabled;
19799
19833
 
@@ -19856,9 +19890,15 @@ google.maps.places.BasicPlaceAutocompleteElement.prototype.maxlength;
19856
19890
  */
19857
19891
  google.maps.places.BasicPlaceAutocompleteElement.prototype.name;
19858
19892
 
19893
+ /**
19894
+ * Whether to hide the clear button.
19895
+ * @type {boolean|null|undefined}
19896
+ */
19897
+ google.maps.places.BasicPlaceAutocompleteElement.prototype.noClearButton;
19898
+
19859
19899
  /**
19860
19900
  * Whether to hide the input icon.
19861
- * @type {boolean|null}
19901
+ * @type {boolean|null|undefined}
19862
19902
  */
19863
19903
  google.maps.places.BasicPlaceAutocompleteElement.prototype.noInputIcon;
19864
19904
 
@@ -19888,7 +19928,7 @@ google.maps.places.BasicPlaceAutocompleteElement.prototype
19888
19928
  * Whether the input element is read-only. See <a
19889
19929
  * href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#readonly">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#readonly</a>
19890
19930
  * for details.
19891
- * @type {boolean|null}
19931
+ * @type {boolean|null|undefined}
19892
19932
  */
19893
19933
  google.maps.places.BasicPlaceAutocompleteElement.prototype.readonly;
19894
19934
 
@@ -19980,6 +20020,11 @@ google.maps.places.BasicPlaceAutocompleteElementOptions.prototype.maxlength;
19980
20020
  */
19981
20021
  google.maps.places.BasicPlaceAutocompleteElementOptions.prototype.name;
19982
20022
 
20023
+ /**
20024
+ * @type {boolean|null|undefined}
20025
+ */
20026
+ google.maps.places.BasicPlaceAutocompleteElementOptions.prototype.noClearButton;
20027
+
19983
20028
  /**
19984
20029
  * @type {boolean|null|undefined}
19985
20030
  */
@@ -21673,6 +21718,13 @@ google.maps.places.Place.prototype.svgIconMaskURI;
21673
21718
  */
21674
21719
  google.maps.places.Place.prototype.timeZone;
21675
21720
 
21721
+ /**
21722
+ * Information about the transit station. <code>undefined</code> if the transit
21723
+ * data has not been loaded from the server.
21724
+ * @type {!google.maps.places.TransitStation|null|undefined}
21725
+ */
21726
+ google.maps.places.Place.prototype.transitStation;
21727
+
21676
21728
  /**
21677
21729
  * An array of <a
21678
21730
  * href="https://developers.google.com/maps/documentation/places/web-service/supported_types">types
@@ -21959,7 +22011,7 @@ google.maps.places.PlaceAutocompleteElement.prototype.description;
21959
22011
  * Whether the input element is disabled. See <a
21960
22012
  * href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#disabled">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#disabled</a>
21961
22013
  * for details.
21962
- * @type {boolean|null}
22014
+ * @type {boolean|null|undefined}
21963
22015
  */
21964
22016
  google.maps.places.PlaceAutocompleteElement.prototype.disabled;
21965
22017
 
@@ -22022,9 +22074,15 @@ google.maps.places.PlaceAutocompleteElement.prototype.maxlength;
22022
22074
  */
22023
22075
  google.maps.places.PlaceAutocompleteElement.prototype.name;
22024
22076
 
22077
+ /**
22078
+ * Whether to hide the clear button.
22079
+ * @type {boolean|null|undefined}
22080
+ */
22081
+ google.maps.places.PlaceAutocompleteElement.prototype.noClearButton;
22082
+
22025
22083
  /**
22026
22084
  * Whether to hide the input icon.
22027
- * @type {boolean|null}
22085
+ * @type {boolean|null|undefined}
22028
22086
  */
22029
22087
  google.maps.places.PlaceAutocompleteElement.prototype.noInputIcon;
22030
22088
 
@@ -22054,7 +22112,7 @@ google.maps.places.PlaceAutocompleteElement.prototype
22054
22112
  * Whether the input element is read-only. See <a
22055
22113
  * href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#readonly">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#readonly</a>
22056
22114
  * for details.
22057
- * @type {boolean|null}
22115
+ * @type {boolean|null|undefined}
22058
22116
  */
22059
22117
  google.maps.places.PlaceAutocompleteElement.prototype.readonly;
22060
22118
 
@@ -22154,6 +22212,11 @@ google.maps.places.PlaceAutocompleteElementOptions.prototype.maxlength;
22154
22212
  */
22155
22213
  google.maps.places.PlaceAutocompleteElementOptions.prototype.name;
22156
22214
 
22215
+ /**
22216
+ * @type {boolean|null|undefined}
22217
+ */
22218
+ google.maps.places.PlaceAutocompleteElementOptions.prototype.noClearButton;
22219
+
22157
22220
  /**
22158
22221
  * @type {boolean|null|undefined}
22159
22222
  */
@@ -25592,6 +25655,389 @@ google.maps.places.TimeZone.prototype.id;
25592
25655
  */
25593
25656
  google.maps.places.TimeZone.prototype.version;
25594
25657
 
25658
+ /**
25659
+ * Represents a transit agency.
25660
+ *
25661
+ * Access by calling `const {TransitAgency} = await
25662
+ * google.maps.importLibrary("places");`. See
25663
+ * https://developers.google.com/maps/documentation/javascript/libraries.
25664
+ * @constructor
25665
+ */
25666
+ google.maps.places.TransitAgency = function() {};
25667
+
25668
+ /**
25669
+ * The name of the agency in the requested language.
25670
+ * @type {string|null}
25671
+ */
25672
+ google.maps.places.TransitAgency.prototype.displayName;
25673
+
25674
+ /**
25675
+ * The agency name text&#39;s BCP-47 language code, such as &quot;en-US&quot; or
25676
+ * &quot;sr-Latn&quot;. For more information, see <a
25677
+ * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
25678
+ * @type {string|null}
25679
+ */
25680
+ google.maps.places.TransitAgency.prototype.displayNameLanguageCode;
25681
+
25682
+ /**
25683
+ * The URL of the agency&#39;s fare details page.
25684
+ * @type {!URL|null}
25685
+ */
25686
+ google.maps.places.TransitAgency.prototype.fareURL;
25687
+
25688
+ /**
25689
+ * A localized branded icon of a transit system.
25690
+ * @type {!google.maps.places.TransitIcon|null}
25691
+ */
25692
+ google.maps.places.TransitAgency.prototype.icon;
25693
+
25694
+ /**
25695
+ * The transit lines that are served by this agency.
25696
+ * @type {!Array<!google.maps.places.TransitLine>}
25697
+ */
25698
+ google.maps.places.TransitAgency.prototype.lines;
25699
+
25700
+ /**
25701
+ * The URL of the agency&#39;s homepage.
25702
+ * @type {!URL|null}
25703
+ */
25704
+ google.maps.places.TransitAgency.prototype.url;
25705
+
25706
+ /**
25707
+ * Represents a transit icon.
25708
+ *
25709
+ * Access by calling `const {TransitIcon} = await
25710
+ * google.maps.importLibrary("places");`. See
25711
+ * https://developers.google.com/maps/documentation/javascript/libraries.
25712
+ * @constructor
25713
+ */
25714
+ google.maps.places.TransitIcon = function() {};
25715
+
25716
+ /**
25717
+ * Whether the name is contained in the icon and there is no need to display it
25718
+ * next to the icon.
25719
+ * @type {boolean|null}
25720
+ */
25721
+ google.maps.places.TransitIcon.prototype.nameIncluded;
25722
+
25723
+ /**
25724
+ * The URL of the icon.
25725
+ * @type {!URL|null}
25726
+ */
25727
+ google.maps.places.TransitIcon.prototype.url;
25728
+
25729
+ /**
25730
+ * Represents a transit line.
25731
+ *
25732
+ * Access by calling `const {TransitLine} = await
25733
+ * google.maps.importLibrary("places");`. See
25734
+ * https://developers.google.com/maps/documentation/javascript/libraries.
25735
+ * @constructor
25736
+ */
25737
+ google.maps.places.TransitLine = function() {};
25738
+
25739
+ /**
25740
+ * The background color of the labels for this transit line in hexadecimal
25741
+ * format (e.g., &quot;#909CE1&quot;). This color can also be used for drawing
25742
+ * shapes for this transit line.
25743
+ * @type {string|null}
25744
+ */
25745
+ google.maps.places.TransitLine.prototype.backgroundColor;
25746
+
25747
+ /**
25748
+ * The full name of this transit line (e.g., &quot;Sunnydale local&quot;).
25749
+ * @type {string|null}
25750
+ */
25751
+ google.maps.places.TransitLine.prototype.displayName;
25752
+
25753
+ /**
25754
+ * The transit line full name text&#39;s BCP-47 language code, such as
25755
+ * &quot;en-US&quot; or &quot;sr-Latn&quot;. For more information, see <a
25756
+ * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
25757
+ * @type {string|null}
25758
+ */
25759
+ google.maps.places.TransitLine.prototype.displayNameLanguageCode;
25760
+
25761
+ /**
25762
+ * Icon for this particular line.
25763
+ * @type {!google.maps.places.TransitIcon|null}
25764
+ */
25765
+ google.maps.places.TransitLine.prototype.icon;
25766
+
25767
+ /**
25768
+ * The id of the transit line that can be used to uniquely identify the line
25769
+ * among other transit lines in the same transit station. This identifier is not
25770
+ * guaranteed to be stable across different responses.
25771
+ * @type {string|null}
25772
+ */
25773
+ google.maps.places.TransitLine.prototype.id;
25774
+
25775
+ /**
25776
+ * The short name of this transit line (e.g., &quot;S2&quot;).
25777
+ * @type {string|null}
25778
+ */
25779
+ google.maps.places.TransitLine.prototype.shortDisplayName;
25780
+
25781
+ /**
25782
+ * The transit line short name text&#39;s BCP-47 language code, such as
25783
+ * &quot;en-US&quot; or &quot;sr-Latn&quot;. For more information, see <a
25784
+ * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
25785
+ * @type {string|null}
25786
+ */
25787
+ google.maps.places.TransitLine.prototype.shortDisplayNameLanguageCode;
25788
+
25789
+ /**
25790
+ * The text color of labels for this transit line in hexadecimal format (e.g.,
25791
+ * &quot;#909CE1&quot;).
25792
+ * @type {string|null}
25793
+ */
25794
+ google.maps.places.TransitLine.prototype.textColor;
25795
+
25796
+ /**
25797
+ * The URL of a webpage with details about this line.
25798
+ * @type {!URL|null}
25799
+ */
25800
+ google.maps.places.TransitLine.prototype.url;
25801
+
25802
+ /**
25803
+ * Icon for this particular vehicle type.
25804
+ * @type {!google.maps.places.TransitIcon|null}
25805
+ */
25806
+ google.maps.places.TransitLine.prototype.vehicleIcon;
25807
+
25808
+ /**
25809
+ * The type of vehicle used.
25810
+ * @type {!google.maps.places.TransitVehicleType|null}
25811
+ */
25812
+ google.maps.places.TransitLine.prototype.vehicleType;
25813
+
25814
+ /**
25815
+ * Represents transit-specific information for a place.
25816
+ *
25817
+ * Access by calling `const {TransitStation} = await
25818
+ * google.maps.importLibrary("places");`. See
25819
+ * https://developers.google.com/maps/documentation/javascript/libraries.
25820
+ * @constructor
25821
+ */
25822
+ google.maps.places.TransitStation = function() {};
25823
+
25824
+ /**
25825
+ * The transit agencies that serve this station.
25826
+ * @type {!Array<!google.maps.places.TransitAgency>}
25827
+ */
25828
+ google.maps.places.TransitStation.prototype.agencies;
25829
+
25830
+ /**
25831
+ * The name of the station in the local language.
25832
+ * @type {string|null}
25833
+ */
25834
+ google.maps.places.TransitStation.prototype.displayName;
25835
+
25836
+ /**
25837
+ * The local display name text&#39;s BCP-47 language code, such as
25838
+ * &quot;en-US&quot; or &quot;sr-Latn&quot;. For more information, see <a
25839
+ * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
25840
+ * @type {string|null}
25841
+ */
25842
+ google.maps.places.TransitStation.prototype.displayNameLanguageCode;
25843
+
25844
+ /**
25845
+ * The transit stops at this station.
25846
+ * @type {!Array<!google.maps.places.TransitStop>}
25847
+ */
25848
+ google.maps.places.TransitStation.prototype.stops;
25849
+
25850
+ /**
25851
+ * Represents a transit stop.
25852
+ *
25853
+ * Access by calling `const {TransitStop} = await
25854
+ * google.maps.importLibrary("places");`. See
25855
+ * https://developers.google.com/maps/documentation/javascript/libraries.
25856
+ * @constructor
25857
+ */
25858
+ google.maps.places.TransitStop = function() {};
25859
+
25860
+ /**
25861
+ * The name of the stop in the requested language.
25862
+ * @type {string|null}
25863
+ */
25864
+ google.maps.places.TransitStop.prototype.displayName;
25865
+
25866
+ /**
25867
+ * The name of the stop in the requested language&#39;s BCP-47 language code,
25868
+ * such as &quot;en-US&quot; or &quot;sr-Latn&quot;. For more information, see
25869
+ * <a
25870
+ * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
25871
+ * @type {string|null}
25872
+ */
25873
+ google.maps.places.TransitStop.prototype.displayNameLanguageCode;
25874
+
25875
+ /**
25876
+ * This field indicates whether there is an accessible path from outside the
25877
+ * station to the stop. It does not indicate whether it is possible to board a
25878
+ * vehicle from the stop.
25879
+ * @type {boolean|null}
25880
+ */
25881
+ google.maps.places.TransitStop.prototype.hasWheelchairAccessibleEntrance;
25882
+
25883
+ /**
25884
+ * The id of the transit stop that can be used to uniquely identify the stop
25885
+ * among other transit stops in the same transit station. This identifier is not
25886
+ * guaranteed to be stable across different responses.
25887
+ * @type {string|null}
25888
+ */
25889
+ google.maps.places.TransitStop.prototype.id;
25890
+
25891
+ /**
25892
+ * The stop&#39;s location.
25893
+ * @type {!google.maps.LatLngAltitude|null}
25894
+ */
25895
+ google.maps.places.TransitStop.prototype.location;
25896
+
25897
+ /**
25898
+ * The platform code represented by this stop. It can be formatted in any way
25899
+ * (e.g., &quot;2&quot;, &quot;Platform 2&quot;, &quot;2-4&quot;, or
25900
+ * &quot;1x&quot;).
25901
+ * @type {string|null}
25902
+ */
25903
+ google.maps.places.TransitStop.prototype.platformCode;
25904
+
25905
+ /**
25906
+ * The platform code text&#39;s BCP-47 language code, such as &quot;en-US&quot;
25907
+ * or &quot;sr-Latn&quot;. For more information, see <a
25908
+ * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
25909
+ * @type {string|null}
25910
+ */
25911
+ google.maps.places.TransitStop.prototype.platformCodeLanguageCode;
25912
+
25913
+ /**
25914
+ * The verbatim text written on the signboard for this platform (e.g.,
25915
+ * &quot;Towards Central&quot; or &quot;East side &amp; Brooklyn&quot;). When
25916
+ * <code>platformCode</code> is absent, this field is potentially the only
25917
+ * identifier for the platform. However, both <code>platformCode</code> and
25918
+ * <code>signageText</code> may be set simultaneously.
25919
+ * @type {string|null}
25920
+ */
25921
+ google.maps.places.TransitStop.prototype.signageText;
25922
+
25923
+ /**
25924
+ * The signage text&#39;s BCP-47 language code, such as &quot;en-US&quot; or
25925
+ * &quot;sr-Latn&quot;. For more information, see <a
25926
+ * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
25927
+ * @type {string|null}
25928
+ */
25929
+ google.maps.places.TransitStop.prototype.signageTextLanguageCode;
25930
+
25931
+ /**
25932
+ * Human readable identifier of the stop, used by transit agencies to
25933
+ * distinguish stops with the same name.
25934
+ * @type {string|null}
25935
+ */
25936
+ google.maps.places.TransitStop.prototype.stopCode;
25937
+
25938
+ /**
25939
+ * The stop code text&#39;s BCP-47 language code, such as &quot;en-US&quot; or
25940
+ * &quot;sr-Latn&quot;. For more information, see <a
25941
+ * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
25942
+ * @type {string|null}
25943
+ */
25944
+ google.maps.places.TransitStop.prototype.stopCodeLanguageCode;
25945
+
25946
+ /**
25947
+ * The type of a transit vehicle.
25948
+ *
25949
+ * Access by calling `const {TransitVehicleType} = await
25950
+ * google.maps.importLibrary("places");`. See
25951
+ * https://developers.google.com/maps/documentation/javascript/libraries.
25952
+ * @enum {string}
25953
+ */
25954
+ google.maps.places.TransitVehicleType = {
25955
+ /**
25956
+ * Airplane.
25957
+ */
25958
+ AIRPLANE: 'AIRPLANE',
25959
+ /**
25960
+ * Bus.
25961
+ */
25962
+ BUS: 'BUS',
25963
+ /**
25964
+ * Cable car.
25965
+ */
25966
+ CABLE_CAR: 'CABLE_CAR',
25967
+ /**
25968
+ * Coach.
25969
+ */
25970
+ COACH: 'COACH',
25971
+ /**
25972
+ * Commuter train.
25973
+ */
25974
+ COMMUTER_TRAIN: 'COMMUTER_TRAIN',
25975
+ /**
25976
+ * Ferry.
25977
+ */
25978
+ FERRY: 'FERRY',
25979
+ /**
25980
+ * Funicular.
25981
+ */
25982
+ FUNICULAR: 'FUNICULAR',
25983
+ /**
25984
+ * Gondola lift.
25985
+ */
25986
+ GONDOLA_LIFT: 'GONDOLA_LIFT',
25987
+ /**
25988
+ * Heavy rail.
25989
+ */
25990
+ HEAVY_RAIL: 'HEAVY_RAIL',
25991
+ /**
25992
+ * High speed train.
25993
+ */
25994
+ HIGH_SPEED_TRAIN: 'HIGH_SPEED_TRAIN',
25995
+ /**
25996
+ * Horse carriage.
25997
+ */
25998
+ HORSE_CARRIAGE: 'HORSE_CARRIAGE',
25999
+ /**
26000
+ * Intercity bus.
26001
+ */
26002
+ INTERCITY_BUS: 'INTERCITY_BUS',
26003
+ /**
26004
+ * Long distance train.
26005
+ */
26006
+ LONG_DISTANCE_TRAIN: 'LONG_DISTANCE_TRAIN',
26007
+ /**
26008
+ * Metro rail.
26009
+ */
26010
+ METRO_RAIL: 'METRO_RAIL',
26011
+ /**
26012
+ * Monorail.
26013
+ */
26014
+ MONORAIL: 'MONORAIL',
26015
+ /**
26016
+ * Rail.
26017
+ */
26018
+ RAIL: 'RAIL',
26019
+ /**
26020
+ * Share taxi.
26021
+ */
26022
+ SHARE_TAXI: 'SHARE_TAXI',
26023
+ /**
26024
+ * Special.
26025
+ */
26026
+ SPECIAL: 'SPECIAL',
26027
+ /**
26028
+ * Subway.
26029
+ */
26030
+ SUBWAY: 'SUBWAY',
26031
+ /**
26032
+ * Tram.
26033
+ */
26034
+ TRAM: 'TRAM',
26035
+ /**
26036
+ * Trolleybus.
26037
+ */
26038
+ TROLLEYBUS: 'TROLLEYBUS',
26039
+ };
26040
+
25595
26041
  /**
25596
26042
  * @const
25597
26043
  */
@@ -25671,6 +26117,13 @@ google.maps.routes.ComputeRouteMatrixRequest.prototype.extraComputations;
25671
26117
  */
25672
26118
  google.maps.routes.ComputeRouteMatrixRequest.prototype.fields;
25673
26119
 
26120
+ /**
26121
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
26122
+ * @type {!Iterable<string>|null|undefined}
26123
+ */
26124
+ google.maps.routes.ComputeRouteMatrixRequest.prototype
26125
+ .internalUsageAttributionIds;
26126
+
25674
26127
  /**
25675
26128
  * The BCP-47 language code, such as &quot;en-US&quot; or &quot;sr-Latn&quot;.
25676
26129
  * For more information, see <a
@@ -25887,6 +26340,12 @@ google.maps.routes.ComputeRoutesRequest.prototype.fields;
25887
26340
  */
25888
26341
  google.maps.routes.ComputeRoutesRequest.prototype.intermediates;
25889
26342
 
26343
+ /**
26344
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
26345
+ * @type {!Iterable<string>|null|undefined}
26346
+ */
26347
+ google.maps.routes.ComputeRoutesRequest.prototype.internalUsageAttributionIds;
26348
+
25890
26349
  /**
25891
26350
  * The BCP-47 language code, such as &quot;en-US&quot; or &quot;sr-Latn&quot;.
25892
26351
  * For more information, see <a
@@ -26682,6 +27141,12 @@ google.maps.routes.Route3DElement.prototype.departureTime;
26682
27141
  */
26683
27142
  google.maps.routes.Route3DElement.prototype.destination;
26684
27143
 
27144
+ /**
27145
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
27146
+ * @type {!Iterable<string>|null|undefined}
27147
+ */
27148
+ google.maps.routes.Route3DElement.prototype.internalUsageAttributionIds;
27149
+
26685
27150
  /**
26686
27151
  * The origin of the route.
26687
27152
  * @type {string|google.maps.LatLng|google.maps.LatLngLiteral|google.maps.LatLngAltitude|google.maps.LatLngAltitudeLiteral|google.maps.places.Place|null}
@@ -26727,6 +27192,12 @@ google.maps.routes.Route3DElementOptions.prototype.departureTime;
26727
27192
  */
26728
27193
  google.maps.routes.Route3DElementOptions.prototype.destination;
26729
27194
 
27195
+ /**
27196
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
27197
+ * @type {!Iterable<string>|null|undefined}
27198
+ */
27199
+ google.maps.routes.Route3DElementOptions.prototype.internalUsageAttributionIds;
27200
+
26730
27201
  /**
26731
27202
  * See {@link google.maps.routes.Route3DElement.origin}.
26732
27203
  * @type {string|google.maps.LatLng|google.maps.LatLngLiteral|google.maps.LatLngAltitude|google.maps.LatLngAltitudeLiteral|google.maps.places.Place|null}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "google-closure-compiler",
3
- "version": "20260527.0.0",
3
+ "version": "20260602.0.0",
4
4
  "description": "Check, compile, optimize and compress Javascript with Closure-Compiler",
5
5
  "type": "module",
6
6
  "repository": {
@@ -41,16 +41,16 @@
41
41
  "homepage": "https://developers.google.com/closure/compiler/",
42
42
  "dependencies": {
43
43
  "chalk": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 <5.6.1 || ^5.6.2 >5.6.1",
44
- "google-closure-compiler-java": "^20260527.0.0",
44
+ "google-closure-compiler-java": "^20260602.0.0",
45
45
  "minimist": "^1.0.0",
46
46
  "vinyl": "^3.0.1",
47
47
  "vinyl-sourcemaps-apply": "^0.2.0"
48
48
  },
49
49
  "optionalDependencies": {
50
- "google-closure-compiler-linux": "^20260527.0.0",
51
- "google-closure-compiler-linux-arm64": "^20260527.0.0",
52
- "google-closure-compiler-macos": "^20260527.0.0",
53
- "google-closure-compiler-windows": "^20260527.0.0"
50
+ "google-closure-compiler-linux": "^20260602.0.0",
51
+ "google-closure-compiler-linux-arm64": "^20260602.0.0",
52
+ "google-closure-compiler-macos": "^20260602.0.0",
53
+ "google-closure-compiler-windows": "^20260602.0.0"
54
54
  },
55
55
  "devDependencies": {
56
56
  "gulp": "^5.0.1",