@getanyapi/sdk 0.32.0 → 0.33.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.js CHANGED
@@ -1858,10 +1858,10 @@ var EmailNamespace = class {
1858
1858
  *
1859
1859
  * Find a person's work email address from their name and company domain.
1860
1860
  *
1861
- * Price: $0.0231 per request plus $0 per result (maximum $0.0231).
1861
+ * Price: $0.0154 per request.
1862
1862
  *
1863
1863
  * @example
1864
- * const res = await client.email.find({ person: { domain: "stripe.com", firstName: "Patrick", surname: "Collison" } });
1864
+ * const res = await client.email.find({ person: { domain: "google.com", firstName: "Damien", surname: "Neil" } });
1865
1865
  */
1866
1866
  find(input, options) {
1867
1867
  return this._core.run("email.find", input, options);
@@ -3551,6 +3551,19 @@ var InstagramNamespace = class {
3551
3551
  profile(input, options) {
3552
3552
  return this._core.run("instagram.profile", input, options);
3553
3553
  }
3554
+ /**
3555
+ * Instagram Profile Contact Info
3556
+ *
3557
+ * 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.
3558
+ *
3559
+ * Price: $0.00721 per request plus $0 per result (maximum $0.00721).
3560
+ *
3561
+ * @example
3562
+ * const res = await client.instagram.profileContact({ handle: "eminenceorganics" });
3563
+ */
3564
+ profileContact(input, options) {
3565
+ return this._core.run("instagram.profile_contact", input, options);
3566
+ }
3554
3567
  /**
3555
3568
  * Instagram Reel Transcript
3556
3569
  *
@@ -5900,6 +5913,19 @@ var TiktokNamespace = class {
5900
5913
  profile(input, options) {
5901
5914
  return this._core.run("tiktok.profile", input, options);
5902
5915
  }
5916
+ /**
5917
+ * TikTok Profile Contact Info
5918
+ *
5919
+ * 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.
5920
+ *
5921
+ * Price: $0.00116 per request plus $0 per result (maximum $0.00116).
5922
+ *
5923
+ * @example
5924
+ * const res = await client.tiktok.profileContact({ handle: "gordonramsayofficial" });
5925
+ */
5926
+ profileContact(input, options) {
5927
+ return this._core.run("tiktok.profile_contact", input, options);
5928
+ }
5903
5929
  /**
5904
5930
  * TikTok Profile Region
5905
5931
  *
@@ -6796,7 +6822,7 @@ var TwitterNamespace = class {
6796
6822
  *
6797
6823
  * 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.
6798
6824
  *
6799
- * Price: $0.00018 per request plus $0.00018 per result (maximum $0.01818).
6825
+ * Price: $0.00075 per request.
6800
6826
  *
6801
6827
  * @example
6802
6828
  * const res = await client.twitter.userTweets({ handle: "levelsio", limit: 20 });