@getanyapi/sdk 0.20.0 → 0.21.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 +13 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +216 -1
- package/dist/index.d.ts +216 -1
- package/dist/index.js +13 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -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
|
*
|