@getanyapi/sdk 0.41.0 → 0.42.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
@@ -3598,7 +3598,7 @@ var InstagramNamespace = class {
3598
3598
  *
3599
3599
  * Fetch an Instagram account's public profile (followers, posts, bio, verification) by handle.
3600
3600
  *
3601
- * Price: $0.0012 per request.
3601
+ * Price: $0.0005 per request.
3602
3602
  *
3603
3603
  * @example
3604
3604
  * const res = await client.instagram.profile({ handle: "nasa" });
@@ -4069,6 +4069,19 @@ var LinkedinNamespace = class {
4069
4069
  email(input, options) {
4070
4070
  return this._core.run("linkedin.email", input, options);
4071
4071
  }
4072
+ /**
4073
+ * LinkedIn Job
4074
+ *
4075
+ * Fetch one LinkedIn job posting by URL: title, full description, location, salary when disclosed, applicant count, employment and workplace type, seniority, benefits, industries, apply links, posting and expiry dates, the hiring team, the applicant tracking system behind it, and the hiring company with its size, follower count, website and description.
4076
+ *
4077
+ * Price: $0.0015 per request.
4078
+ *
4079
+ * @example
4080
+ * const res = await client.linkedin.job({ url: "https://www.linkedin.com/jobs/view/4431721875/" });
4081
+ */
4082
+ job(input, options) {
4083
+ return this._core.run("linkedin.job", input, options);
4084
+ }
4072
4085
  /**
4073
4086
  * LinkedIn Jobs
4074
4087
  *
@@ -4160,6 +4173,19 @@ var LinkedinNamespace = class {
4160
4173
  profile(input, options) {
4161
4174
  return this._core.run("linkedin.profile", input, options);
4162
4175
  }
4176
+ /**
4177
+ * LinkedIn Profile Comments
4178
+ *
4179
+ * List the comments a LinkedIn member has left on other people's posts - the comment text, its permalink and timestamp, plus the post it was left on and that post's author and engagement.
4180
+ *
4181
+ * Price: $0.005 per request.
4182
+ *
4183
+ * @example
4184
+ * const res = await client.linkedin.profileComments({ url: "https://www.linkedin.com/in/jeffweiner08", limit: 10 });
4185
+ */
4186
+ profileComments(input, options) {
4187
+ return this._core.run("linkedin.profile_comments", input, options);
4188
+ }
4163
4189
  /**
4164
4190
  * LinkedIn Profile Posts (full)
4165
4191
  *
@@ -4186,6 +4212,19 @@ var LinkedinNamespace = class {
4186
4212
  profilePostsThin(input, options) {
4187
4213
  return this._core.run("linkedin.profile_posts_thin", input, options);
4188
4214
  }
4215
+ /**
4216
+ * LinkedIn Profile Reactions
4217
+ *
4218
+ * List the posts a LinkedIn member has reacted to - the reaction, its timestamp, and the full post it was made on with author and engagement.
4219
+ *
4220
+ * Price: $0.005 per request.
4221
+ *
4222
+ * @example
4223
+ * const res = await client.linkedin.profileReactions({ url: "https://www.linkedin.com/in/williamhgates", limit: 10 });
4224
+ */
4225
+ profileReactions(input, options) {
4226
+ return this._core.run("linkedin.profile_reactions", input, options);
4227
+ }
4189
4228
  /**
4190
4229
  * LinkedIn Profile (basic)
4191
4230
  *
@@ -6681,9 +6720,9 @@ var TwitterNamespace = class {
6681
6720
  /**
6682
6721
  * X / Twitter Following
6683
6722
  *
6684
- * List the accounts a public X (Twitter) account follows by username with cursor pagination. Limit is a per-page maximum and a native page holds up to 200 accounts; follow the response's nextCursor for more.
6723
+ * List the accounts a public X (Twitter) account follows by username with cursor pagination. Limit is a per-page maximum; follow the response's nextCursor for more.
6685
6724
  *
6686
- * Price: $0.00075 per request.
6725
+ * Price: $0.0005 per request.
6687
6726
  *
6688
6727
  * @example
6689
6728
  * const res = await client.twitter.following({ username: "nasa", limit: 200 });