@getanyapi/sdk 0.20.0 → 0.21.1
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 +15 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +218 -3
- package/dist/index.d.ts +218 -3
- package/dist/index.js +15 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -3494,7 +3494,7 @@ var LinkedinNamespace = class {
|
|
|
3494
3494
|
*
|
|
3495
3495
|
* List a LinkedIn company page's recent posts by URL: full text, canonical link, publish date, author, engagement counts with a per-reaction breakdown, and attached media.
|
|
3496
3496
|
*
|
|
3497
|
-
* Price: $0.
|
|
3497
|
+
* Price: $0.00111 per request plus $0.00184 per result (maximum $0.093).
|
|
3498
3498
|
*
|
|
3499
3499
|
* @example
|
|
3500
3500
|
* const res = await client.linkedin.companyPosts({ url: "https://www.linkedin.com/company/stripe", limit: 10 });
|
|
@@ -3637,7 +3637,7 @@ var LinkedinNamespace = class {
|
|
|
3637
3637
|
*
|
|
3638
3638
|
* Fetch recent public LinkedIn profile posts with enriched author, engagement, article, newsletter, media, annotation, repost, and social activity details.
|
|
3639
3639
|
*
|
|
3640
|
-
* Price: $0.
|
|
3640
|
+
* Price: $0.00111 per request plus $0.00184 per result (maximum $0.185).
|
|
3641
3641
|
*
|
|
3642
3642
|
* @example
|
|
3643
3643
|
* const res = await client.linkedin.profilePostsFull({ url: "https://www.linkedin.com/in/williamhgates/", limit: 10 });
|
|
@@ -3697,6 +3697,19 @@ var LinkedinNamespace = class {
|
|
|
3697
3697
|
searchPosts(input, options) {
|
|
3698
3698
|
return this._core.run("linkedin.search_posts", input, options);
|
|
3699
3699
|
}
|
|
3700
|
+
/**
|
|
3701
|
+
* LinkedIn Post Search (full)
|
|
3702
|
+
*
|
|
3703
|
+
* Search public LinkedIn posts with rich author, engagement, attachment, and poll details.
|
|
3704
|
+
*
|
|
3705
|
+
* Price: $0 per request plus $0.00137 per result (maximum $0.137).
|
|
3706
|
+
*
|
|
3707
|
+
* @example
|
|
3708
|
+
* const res = await client.linkedin.searchPostsFull({ query: "artificial intelligence", datePosted: "last-week", limit: 10, sort: "relevance" });
|
|
3709
|
+
*/
|
|
3710
|
+
searchPostsFull(input, options) {
|
|
3711
|
+
return this._core.run("linkedin.search_posts_full", input, options);
|
|
3712
|
+
}
|
|
3700
3713
|
/**
|
|
3701
3714
|
* LinkedIn Profile Search
|
|
3702
3715
|
*
|