@getanyapi/sdk 0.33.0 → 0.34.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
@@ -4324,7 +4324,7 @@ var MapsNamespace = class {
4324
4324
  *
4325
4325
  * 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.
4326
4326
  *
4327
- * Price: $0.00297 per request.
4327
+ * Price: $0.00175 per request.
4328
4328
  *
4329
4329
  * @example
4330
4330
  * const res = await client.maps.place({ query: "Blue Bottle Coffee", location: "San Francisco, CA", website: "withWebsite" });
@@ -4350,7 +4350,7 @@ var MapsNamespace = class {
4350
4350
  *
4351
4351
  * Search Google Maps for places matching a query and location: up to 20 normalized place records with ratings, addresses, and contact basics per request.
4352
4352
  *
4353
- * Price: $0.00297 per request.
4353
+ * Price: $0.00175 per request.
4354
4354
  *
4355
4355
  * @example
4356
4356
  * const res = await client.maps.search({ location: "Austin, TX", query: "coffee", limit: 3, placeMinimumStars: "four", website: "withWebsite" });
@@ -7273,6 +7273,19 @@ var YoutubeNamespace = class {
7273
7273
  options
7274
7274
  );
7275
7275
  }
7276
+ /**
7277
+ * YouTube Channel Contact Email
7278
+ *
7279
+ * Reveal the business inquiry email a YouTube creator publishes behind the channel's View email address button. YouTube gates that address behind a signed-in Google session and a CAPTCHA, so it is absent from the channel page a logged-out scraper reads.
7280
+ *
7281
+ * Price: $0.0718 per request plus $0 per result (maximum $0.0718).
7282
+ *
7283
+ * @example
7284
+ * const res = await client.youtube.channelContact({ handle: "@mkbhd" });
7285
+ */
7286
+ channelContact(input, options) {
7287
+ return this._core.run("youtube.channel_contact", input, options);
7288
+ }
7276
7289
  /**
7277
7290
  * YouTube Channel Live Streams
7278
7291
  *