@getanyapi/sdk 0.15.2 → 0.16.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 +26 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +682 -1
- package/dist/index.d.ts +682 -1
- package/dist/index.js +26 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -3289,6 +3289,32 @@ var LinkedinNamespace = class {
|
|
|
3289
3289
|
profile(input, options) {
|
|
3290
3290
|
return this._core.run("linkedin.profile", input, options);
|
|
3291
3291
|
}
|
|
3292
|
+
/**
|
|
3293
|
+
* LinkedIn Profile Posts (full)
|
|
3294
|
+
*
|
|
3295
|
+
* Fetch recent public LinkedIn profile posts with enriched author, engagement, article, newsletter, media, annotation, repost, and social activity details.
|
|
3296
|
+
*
|
|
3297
|
+
* Price: $0.00006 per request plus $0.00184 per result (maximum $0.184).
|
|
3298
|
+
*
|
|
3299
|
+
* @example
|
|
3300
|
+
* const res = await client.linkedin.profilePostsFull({ url: "https://www.linkedin.com/in/williamhgates/", limit: 10 });
|
|
3301
|
+
*/
|
|
3302
|
+
profilePostsFull(input, options) {
|
|
3303
|
+
return this._core.run("linkedin.profile_posts_full", input, options);
|
|
3304
|
+
}
|
|
3305
|
+
/**
|
|
3306
|
+
* LinkedIn Profile Posts (basic)
|
|
3307
|
+
*
|
|
3308
|
+
* Fetch recent public LinkedIn profile posts with portable identity, author, engagement, article, image, video, and repost fields.
|
|
3309
|
+
*
|
|
3310
|
+
* Price: $0 per request plus $0.00137 per result (maximum $0.137).
|
|
3311
|
+
*
|
|
3312
|
+
* @example
|
|
3313
|
+
* const res = await client.linkedin.profilePostsThin({ url: "https://www.linkedin.com/in/williamhgates/", limit: 10 });
|
|
3314
|
+
*/
|
|
3315
|
+
profilePostsThin(input, options) {
|
|
3316
|
+
return this._core.run("linkedin.profile_posts_thin", input, options);
|
|
3317
|
+
}
|
|
3292
3318
|
/**
|
|
3293
3319
|
* LinkedIn Profile (basic)
|
|
3294
3320
|
*
|