Skip to content

Commit 831fdad

Browse files
chore: generate libraries at Fri Feb 13 03:02:34 UTC 2026
1 parent a2f12ed commit 831fdad

File tree

74 files changed

+15796
-1339
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+15796
-1339
lines changed

java-maps-places/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,20 @@ If you are using Maven, add this to your pom.xml file:
2222
<dependency>
2323
<groupId>com.google.maps</groupId>
2424
<artifactId>google-maps-places</artifactId>
25-
<version>0.54.0</version>
25+
<version>0.55.0</version>
2626
</dependency>
2727
```
2828

2929
If you are using Gradle without BOM, add this to your dependencies:
3030

3131
```Groovy
32-
implementation 'com.google.maps:google-maps-places:0.54.0'
32+
implementation 'com.google.maps:google-maps-places:0.55.0'
3333
```
3434

3535
If you are using SBT, add this to your dependencies:
3636

3737
```Scala
38-
libraryDependencies += "com.google.maps" % "google-maps-places" % "0.54.0"
38+
libraryDependencies += "com.google.maps" % "google-maps-places" % "0.55.0"
3939
```
4040

4141
## Authentication
@@ -162,7 +162,7 @@ Java is a registered trademark of Oracle and/or its affiliates.
162162
[javadocs]: https://cloud.google.com/java/docs/reference/google-maps-places/latest/overview
163163
[stability-image]: https://img.shields.io/badge/stability-preview-yellow
164164
[maven-version-image]: https://img.shields.io/maven-central/v/com.google.maps/google-maps-places.svg
165-
[maven-version-link]: https://central.sonatype.com/artifact/com.google.maps/google-maps-places/0.54.0
165+
[maven-version-link]: https://central.sonatype.com/artifact/com.google.maps/google-maps-places/0.55.0
166166
[authentication]: https://github.com/googleapis/google-cloud-java#authentication
167167
[auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes
168168
[predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles

java-maps-places/google-maps-places/src/main/resources/META-INF/native-image/com.google.maps.places.v1/reflect-config.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1196,6 +1196,24 @@
11961196
"allDeclaredClasses": true,
11971197
"allPublicClasses": true
11981198
},
1199+
{
1200+
"name": "com.google.maps.places.v1.Place$GoogleMapsLinks",
1201+
"queryAllDeclaredConstructors": true,
1202+
"queryAllPublicConstructors": true,
1203+
"queryAllDeclaredMethods": true,
1204+
"allPublicMethods": true,
1205+
"allDeclaredClasses": true,
1206+
"allPublicClasses": true
1207+
},
1208+
{
1209+
"name": "com.google.maps.places.v1.Place$GoogleMapsLinks$Builder",
1210+
"queryAllDeclaredConstructors": true,
1211+
"queryAllPublicConstructors": true,
1212+
"queryAllDeclaredMethods": true,
1213+
"allPublicMethods": true,
1214+
"allDeclaredClasses": true,
1215+
"allPublicClasses": true
1216+
},
11991217
{
12001218
"name": "com.google.maps.places.v1.Place$NeighborhoodSummary",
12011219
"queryAllDeclaredConstructors": true,

java-maps-places/google-maps-places/src/test/java/com/google/maps/places/v1/PlacesClientHttpJsonTest.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -325,6 +325,7 @@ public void getPlaceTest() throws Exception {
325325
.addAllTypes(new ArrayList<String>())
326326
.setPrimaryType("primaryType-867549092")
327327
.setPrimaryTypeDisplayName(LocalizedText.newBuilder().build())
328+
.setGoogleMapsTypeLabel(LocalizedText.newBuilder().build())
328329
.setNationalPhoneNumber("nationalPhoneNumber-1432446651")
329330
.setInternationalPhoneNumber("internationalPhoneNumber-74125591")
330331
.setFormattedAddress("formattedAddress1036810136")
@@ -385,6 +386,7 @@ public void getPlaceTest() throws Exception {
385386
.addAllContainingPlaces(new ArrayList<Place.ContainingPlace>())
386387
.setPureServiceAreaBusiness(true)
387388
.setAddressDescriptor(AddressDescriptor.newBuilder().build())
389+
.setGoogleMapsLinks(Place.GoogleMapsLinks.newBuilder().build())
388390
.setPriceRange(PriceRange.newBuilder().build())
389391
.setReviewSummary(Place.ReviewSummary.newBuilder().build())
390392
.setEvChargeAmenitySummary(Place.EvChargeAmenitySummary.newBuilder().build())
@@ -441,6 +443,7 @@ public void getPlaceTest2() throws Exception {
441443
.addAllTypes(new ArrayList<String>())
442444
.setPrimaryType("primaryType-867549092")
443445
.setPrimaryTypeDisplayName(LocalizedText.newBuilder().build())
446+
.setGoogleMapsTypeLabel(LocalizedText.newBuilder().build())
444447
.setNationalPhoneNumber("nationalPhoneNumber-1432446651")
445448
.setInternationalPhoneNumber("internationalPhoneNumber-74125591")
446449
.setFormattedAddress("formattedAddress1036810136")
@@ -501,6 +504,7 @@ public void getPlaceTest2() throws Exception {
501504
.addAllContainingPlaces(new ArrayList<Place.ContainingPlace>())
502505
.setPureServiceAreaBusiness(true)
503506
.setAddressDescriptor(AddressDescriptor.newBuilder().build())
507+
.setGoogleMapsLinks(Place.GoogleMapsLinks.newBuilder().build())
504508
.setPriceRange(PriceRange.newBuilder().build())
505509
.setReviewSummary(Place.ReviewSummary.newBuilder().build())
506510
.setEvChargeAmenitySummary(Place.EvChargeAmenitySummary.newBuilder().build())

java-maps-places/google-maps-places/src/test/java/com/google/maps/places/v1/PlacesClientTest.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,7 @@ public void getPlaceTest() throws Exception {
335335
.addAllTypes(new ArrayList<String>())
336336
.setPrimaryType("primaryType-867549092")
337337
.setPrimaryTypeDisplayName(LocalizedText.newBuilder().build())
338+
.setGoogleMapsTypeLabel(LocalizedText.newBuilder().build())
338339
.setNationalPhoneNumber("nationalPhoneNumber-1432446651")
339340
.setInternationalPhoneNumber("internationalPhoneNumber-74125591")
340341
.setFormattedAddress("formattedAddress1036810136")
@@ -395,6 +396,7 @@ public void getPlaceTest() throws Exception {
395396
.addAllContainingPlaces(new ArrayList<Place.ContainingPlace>())
396397
.setPureServiceAreaBusiness(true)
397398
.setAddressDescriptor(AddressDescriptor.newBuilder().build())
399+
.setGoogleMapsLinks(Place.GoogleMapsLinks.newBuilder().build())
398400
.setPriceRange(PriceRange.newBuilder().build())
399401
.setReviewSummary(Place.ReviewSummary.newBuilder().build())
400402
.setEvChargeAmenitySummary(Place.EvChargeAmenitySummary.newBuilder().build())
@@ -445,6 +447,7 @@ public void getPlaceTest2() throws Exception {
445447
.addAllTypes(new ArrayList<String>())
446448
.setPrimaryType("primaryType-867549092")
447449
.setPrimaryTypeDisplayName(LocalizedText.newBuilder().build())
450+
.setGoogleMapsTypeLabel(LocalizedText.newBuilder().build())
448451
.setNationalPhoneNumber("nationalPhoneNumber-1432446651")
449452
.setInternationalPhoneNumber("internationalPhoneNumber-74125591")
450453
.setFormattedAddress("formattedAddress1036810136")
@@ -505,6 +508,7 @@ public void getPlaceTest2() throws Exception {
505508
.addAllContainingPlaces(new ArrayList<Place.ContainingPlace>())
506509
.setPureServiceAreaBusiness(true)
507510
.setAddressDescriptor(AddressDescriptor.newBuilder().build())
511+
.setGoogleMapsLinks(Place.GoogleMapsLinks.newBuilder().build())
508512
.setPriceRange(PriceRange.newBuilder().build())
509513
.setReviewSummary(Place.ReviewSummary.newBuilder().build())
510514
.setEvChargeAmenitySummary(Place.EvChargeAmenitySummary.newBuilder().build())

0 commit comments

Comments
 (0)