You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#### places:v1
The following keys were added:
- schemas.GoogleMapsPlacesV1Place.properties.movedPlace.description
- schemas.GoogleMapsPlacesV1Place.properties.movedPlace.type
- schemas.GoogleMapsPlacesV1Place.properties.movedPlaceId.description
- schemas.GoogleMapsPlacesV1Place.properties.movedPlaceId.type
The following keys were changed:
- schemas.GoogleMapsPlacesV1PlaceConsumerAlert.properties.details.description
- schemas.GoogleMapsPlacesV1Review.properties.visitDate.description
Copy file name to clipboardExpand all lines: discovery/places-v1.json
+11-3Lines changed: 11 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -280,7 +280,7 @@
280
280
}
281
281
}
282
282
},
283
-
"revision": "20251007",
283
+
"revision": "20251021",
284
284
"rootUrl": "https://places.googleapis.com/",
285
285
"schemas": {
286
286
"GoogleGeoTypeViewport": {
@@ -1166,6 +1166,14 @@
1166
1166
"description": "Place has a children's menu.",
1167
1167
"type": "boolean"
1168
1168
},
1169
+
"movedPlace": {
1170
+
"description": "If this Place is permanently closed and has moved to a new Place, this field contains the new Place's resource name, in `places/{place_id}` format. If this Place moved multiple times, this field will represent the first moved place. This field will not be populated if this Place has not moved.",
1171
+
"type": "string"
1172
+
},
1173
+
"movedPlaceId": {
1174
+
"description": "If this Place is permanently closed and has moved to a new Place, this field contains the new Place's place ID. If this Place moved multiple times, this field will represent the first moved Place. This field will not be populated if this Place has not moved.",
1175
+
"type": "string"
1176
+
},
1169
1177
"name": {
1170
1178
"description": "This Place's resource name, in `places/{place_id}` format. Can be used to look up the Place.",
Copy file name to clipboardExpand all lines: src/apis/places/v1.ts
+12-2Lines changed: 12 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -749,6 +749,14 @@ export namespace places_v1 {
749
749
* Place has a children's menu.
750
750
*/
751
751
menuForChildren?: boolean|null;
752
+
/**
753
+
* If this Place is permanently closed and has moved to a new Place, this field contains the new Place's resource name, in `places/{place_id\}` format. If this Place moved multiple times, this field will represent the first moved place. This field will not be populated if this Place has not moved.
754
+
*/
755
+
movedPlace?: string|null;
756
+
/**
757
+
* If this Place is permanently closed and has moved to a new Place, this field contains the new Place's place ID. If this Place moved multiple times, this field will represent the first moved Place. This field will not be populated if this Place has not moved.
758
+
*/
759
+
movedPlaceId?: string|null;
752
760
/**
753
761
* This Place's resource name, in `places/{place_id\}` format. Can be used to look up the Place.
0 commit comments