@maxim_mazurok/gapi.client.places-v1 0.0.20250226 → 0.0.20250302
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.
- package/index.d.ts +9 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://places.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250302
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -385,6 +385,8 @@ declare namespace gapi.client {
|
|
|
385
385
|
subDestinations?: GoogleMapsPlacesV1PlaceSubDestination[];
|
|
386
386
|
/** Specifies if the business supports takeout. */
|
|
387
387
|
takeout?: boolean;
|
|
388
|
+
/** IANA Time Zone Database time zone. For example "America/New_York". */
|
|
389
|
+
timeZone?: GoogleTypeTimeZone;
|
|
388
390
|
/** A set of type tags for this result. For example, "political" and "locality". For the complete list of possible values, see Table A and Table B at https://developers.google.com/maps/documentation/places/web-service/place-types */
|
|
389
391
|
types?: string[];
|
|
390
392
|
/** The total number of reviews (with or without text) for this place. */
|
|
@@ -732,6 +734,12 @@ declare namespace gapi.client {
|
|
|
732
734
|
/** The whole units of the amount. For example if `currencyCode` is `"USD"`, then 1 unit is one US dollar. */
|
|
733
735
|
units?: string;
|
|
734
736
|
}
|
|
737
|
+
interface GoogleTypeTimeZone {
|
|
738
|
+
/** IANA Time Zone Database time zone. For example "America/New_York". */
|
|
739
|
+
id?: string;
|
|
740
|
+
/** Optional. IANA Time Zone Database version number. For example "2019a". */
|
|
741
|
+
version?: string;
|
|
742
|
+
}
|
|
735
743
|
interface PhotosResource {
|
|
736
744
|
/** Get a photo media with a photo reference string. */
|
|
737
745
|
getMedia(request?: {
|