@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.cjs +29 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +589 -369
- package/dist/index.d.ts +589 -369
- package/dist/index.js +29 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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.
|
|
1976
|
+
* Price: $0.0154 per request.
|
|
1977
1977
|
*
|
|
1978
1978
|
* @example
|
|
1979
|
-
* const res = await client.email.find({ person: { domain: "
|
|
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.
|
|
6940
|
+
* Price: $0.00075 per request.
|
|
6915
6941
|
*
|
|
6916
6942
|
* @example
|
|
6917
6943
|
* const res = await client.twitter.userTweets({ handle: "levelsio", limit: 20 });
|