@getanyapi/sdk 0.12.0 → 0.12.1

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/dist/index.cjs CHANGED
@@ -3301,9 +3301,9 @@ var MapsNamespace = class {
3301
3301
  /**
3302
3302
  * Google Maps Place Lookup
3303
3303
  *
3304
- * Look up a place on Google Maps by name or search query (optionally scoped to a location) and get the best-matching place with full details - address, phone, website, rating, hours, and coordinates - as normalized JSON.
3304
+ * Look up a place on Google Maps by name or search query (optionally scoped to a location) and get the best-matching place with available address, contact, rating, and coordinate details as normalized JSON.
3305
3305
  *
3306
- * Price: $0.003 per request plus $0.005 per result (maximum $0.009).
3306
+ * Price: $0.00297 per request.
3307
3307
  *
3308
3308
  * @example
3309
3309
  * const res = await client.maps.place({ query: "Blue Bottle Coffee", location: "San Francisco, CA", website: "withWebsite" });
@@ -3329,7 +3329,7 @@ var MapsNamespace = class {
3329
3329
  *
3330
3330
  * Search Google Maps for places matching a query and location: up to 20 normalized place records with ratings, addresses, and contact basics per request.
3331
3331
  *
3332
- * Price: $0.00005 per request plus $0.003 per result (maximum $0.06005).
3332
+ * Price: $0.00297 per request.
3333
3333
  *
3334
3334
  * @example
3335
3335
  * const res = await client.maps.search({ location: "Austin, TX", query: "coffee", limit: 3, placeMinimumStars: "four", website: "withWebsite" });