@getanyapi/sdk 0.12.0 → 0.12.2

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
@@ -2525,7 +2525,7 @@ var HackernewsNamespace = class {
2525
2525
  *
2526
2526
  * Get a Hacker News user's public profile by username - karma, bio, and account details as clean JSON.
2527
2527
  *
2528
- * Price: $0.00325 per request.
2528
+ * Price: $0.0015 per request.
2529
2529
  *
2530
2530
  * @example
2531
2531
  * const res = await client.hackernews.profile({ handle: "pg" });
@@ -2538,7 +2538,7 @@ var HackernewsNamespace = class {
2538
2538
  *
2539
2539
  * Search Hacker News by keyword - matching stories with title, link, author, points, and comment count as clean JSON.
2540
2540
  *
2541
- * Price: $0.00325 per request.
2541
+ * Price: $0.0015 per request.
2542
2542
  *
2543
2543
  * @example
2544
2544
  * const res = await client.hackernews.search({ query: "ai" });
@@ -2551,7 +2551,7 @@ var HackernewsNamespace = class {
2551
2551
  *
2552
2552
  * Get a Hacker News story by id - title, link, author, points, and comment count as clean JSON.
2553
2553
  *
2554
- * Price: $0.00325 per request.
2554
+ * Price: $0.0015 per request.
2555
2555
  *
2556
2556
  * @example
2557
2557
  * const res = await client.hackernews.story({ id: "47340079" });
@@ -2564,7 +2564,7 @@ var HackernewsNamespace = class {
2564
2564
  *
2565
2565
  * List the comments on a Hacker News story by id - text, author, and timestamp as clean JSON.
2566
2566
  *
2567
- * Price: $0.00325 per request.
2567
+ * Price: $0.0015 per request.
2568
2568
  *
2569
2569
  * @example
2570
2570
  * const res = await client.hackernews.storyComments({ id: "47340079" });
@@ -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" });