@getanyapi/sdk 0.32.1 → 0.34.0

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
@@ -1973,10 +1973,10 @@ var EmailNamespace = class {
1973
1973
  *
1974
1974
  * Find a person's work email address from their name and company domain.
1975
1975
  *
1976
- * Price: $0.0231 per request plus $0 per result (maximum $0.0231).
1976
+ * Price: $0.0154 per request.
1977
1977
  *
1978
1978
  * @example
1979
- * const res = await client.email.find({ person: { domain: "stripe.com", firstName: "Patrick", surname: "Collison" } });
1979
+ * const res = await client.email.find({ person: { domain: "google.com", firstName: "Damien", surname: "Neil" } });
1980
1980
  */
1981
1981
  find(input, options) {
1982
1982
  return this._core.run("email.find", input, options);
@@ -3666,6 +3666,19 @@ var InstagramNamespace = class {
3666
3666
  profile(input, options) {
3667
3667
  return this._core.run("instagram.profile", input, options);
3668
3668
  }
3669
+ /**
3670
+ * Instagram Profile Contact Info
3671
+ *
3672
+ * Look up the contact email and phone number an Instagram creator or business publishes on its profile, including the address behind the profile's Email button that public profile lookups do not return.
3673
+ *
3674
+ * Price: $0.00721 per request plus $0 per result (maximum $0.00721).
3675
+ *
3676
+ * @example
3677
+ * const res = await client.instagram.profileContact({ handle: "eminenceorganics" });
3678
+ */
3679
+ profileContact(input, options) {
3680
+ return this._core.run("instagram.profile_contact", input, options);
3681
+ }
3669
3682
  /**
3670
3683
  * Instagram Reel Transcript
3671
3684
  *
@@ -6015,6 +6028,19 @@ var TiktokNamespace = class {
6015
6028
  profile(input, options) {
6016
6029
  return this._core.run("tiktok.profile", input, options);
6017
6030
  }
6031
+ /**
6032
+ * TikTok Profile Contact Info
6033
+ *
6034
+ * Find the public contact email behind a TikTok creator's profile: the address written into the bio plus any published on the site the profile links to, each labelled with where it came from. Returns the creator's profile stats and linked social accounts alongside.
6035
+ *
6036
+ * Price: $0.00116 per request plus $0 per result (maximum $0.00116).
6037
+ *
6038
+ * @example
6039
+ * const res = await client.tiktok.profileContact({ handle: "gordonramsayofficial" });
6040
+ */
6041
+ profileContact(input, options) {
6042
+ return this._core.run("tiktok.profile_contact", input, options);
6043
+ }
6018
6044
  /**
6019
6045
  * TikTok Profile Region
6020
6046
  *
@@ -6911,7 +6937,7 @@ var TwitterNamespace = class {
6911
6937
  *
6912
6938
  * Get up to the requested limit of tweets and replies authored by an X (Twitter) account, with engagement, views, language, and cursor pagination where available.
6913
6939
  *
6914
- * Price: $0.00018 per request plus $0.00018 per result (maximum $0.01818).
6940
+ * Price: $0.00075 per request.
6915
6941
  *
6916
6942
  * @example
6917
6943
  * const res = await client.twitter.userTweets({ handle: "levelsio", limit: 20 });
@@ -7247,6 +7273,19 @@ var YoutubeNamespace = class {
7247
7273
  options
7248
7274
  );
7249
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
+ }
7250
7289
  /**
7251
7290
  * YouTube Channel Live Streams
7252
7291
  *