@getanyapi/sdk 0.41.0 → 0.43.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
@@ -3713,7 +3713,7 @@ var InstagramNamespace = class {
3713
3713
  *
3714
3714
  * Fetch an Instagram account's public profile (followers, posts, bio, verification) by handle.
3715
3715
  *
3716
- * Price: $0.0012 per request.
3716
+ * Price: $0.0005 per request.
3717
3717
  *
3718
3718
  * @example
3719
3719
  * const res = await client.instagram.profile({ handle: "nasa" });
@@ -4184,6 +4184,19 @@ var LinkedinNamespace = class {
4184
4184
  email(input, options) {
4185
4185
  return this._core.run("linkedin.email", input, options);
4186
4186
  }
4187
+ /**
4188
+ * LinkedIn Job
4189
+ *
4190
+ * 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.
4191
+ *
4192
+ * Price: $0.0015 per request.
4193
+ *
4194
+ * @example
4195
+ * const res = await client.linkedin.job({ url: "https://www.linkedin.com/jobs/view/4431721875/" });
4196
+ */
4197
+ job(input, options) {
4198
+ return this._core.run("linkedin.job", input, options);
4199
+ }
4187
4200
  /**
4188
4201
  * LinkedIn Jobs
4189
4202
  *
@@ -4275,6 +4288,19 @@ var LinkedinNamespace = class {
4275
4288
  profile(input, options) {
4276
4289
  return this._core.run("linkedin.profile", input, options);
4277
4290
  }
4291
+ /**
4292
+ * LinkedIn Profile Comments
4293
+ *
4294
+ * 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.
4295
+ *
4296
+ * Price: $0.005 per request.
4297
+ *
4298
+ * @example
4299
+ * const res = await client.linkedin.profileComments({ url: "https://www.linkedin.com/in/jeffweiner08", limit: 10 });
4300
+ */
4301
+ profileComments(input, options) {
4302
+ return this._core.run("linkedin.profile_comments", input, options);
4303
+ }
4278
4304
  /**
4279
4305
  * LinkedIn Profile Posts (full)
4280
4306
  *
@@ -4301,6 +4327,19 @@ var LinkedinNamespace = class {
4301
4327
  profilePostsThin(input, options) {
4302
4328
  return this._core.run("linkedin.profile_posts_thin", input, options);
4303
4329
  }
4330
+ /**
4331
+ * LinkedIn Profile Reactions
4332
+ *
4333
+ * 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.
4334
+ *
4335
+ * Price: $0.005 per request.
4336
+ *
4337
+ * @example
4338
+ * const res = await client.linkedin.profileReactions({ url: "https://www.linkedin.com/in/williamhgates", limit: 10 });
4339
+ */
4340
+ profileReactions(input, options) {
4341
+ return this._core.run("linkedin.profile_reactions", input, options);
4342
+ }
4304
4343
  /**
4305
4344
  * LinkedIn Profile (basic)
4306
4345
  *
@@ -6769,7 +6808,7 @@ var TwitterNamespace = class {
6769
6808
  *
6770
6809
  * Fetch the follower list of any public X (Twitter) account 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.
6771
6810
  *
6772
- * Price: $0.00075 per request.
6811
+ * Price: $0.0005 per request.
6773
6812
  *
6774
6813
  * @example
6775
6814
  * const res = await client.twitter.followers({ username: "nasa", limit: 200 });
@@ -6796,9 +6835,9 @@ var TwitterNamespace = class {
6796
6835
  /**
6797
6836
  * X / Twitter Following
6798
6837
  *
6799
- * 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.
6838
+ * 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.
6800
6839
  *
6801
- * Price: $0.00075 per request.
6840
+ * Price: $0.0005 per request.
6802
6841
  *
6803
6842
  * @example
6804
6843
  * const res = await client.twitter.following({ username: "nasa", limit: 200 });