@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.js
CHANGED
|
@@ -3191,6 +3191,32 @@ var LinkedinNamespace = class {
|
|
|
3191
3191
|
profile(input, options) {
|
|
3192
3192
|
return this._core.run("linkedin.profile", input, options);
|
|
3193
3193
|
}
|
|
3194
|
+
/**
|
|
3195
|
+
* LinkedIn Profile Posts (full)
|
|
3196
|
+
*
|
|
3197
|
+
* Fetch recent public LinkedIn profile posts with enriched author, engagement, article, newsletter, media, annotation, repost, and social activity details.
|
|
3198
|
+
*
|
|
3199
|
+
* Price: $0.00006 per request plus $0.00184 per result (maximum $0.184).
|
|
3200
|
+
*
|
|
3201
|
+
* @example
|
|
3202
|
+
* const res = await client.linkedin.profilePostsFull({ url: "https://www.linkedin.com/in/williamhgates/", limit: 10 });
|
|
3203
|
+
*/
|
|
3204
|
+
profilePostsFull(input, options) {
|
|
3205
|
+
return this._core.run("linkedin.profile_posts_full", input, options);
|
|
3206
|
+
}
|
|
3207
|
+
/**
|
|
3208
|
+
* LinkedIn Profile Posts (basic)
|
|
3209
|
+
*
|
|
3210
|
+
* Fetch recent public LinkedIn profile posts with portable identity, author, engagement, article, image, video, and repost fields.
|
|
3211
|
+
*
|
|
3212
|
+
* Price: $0 per request plus $0.00137 per result (maximum $0.137).
|
|
3213
|
+
*
|
|
3214
|
+
* @example
|
|
3215
|
+
* const res = await client.linkedin.profilePostsThin({ url: "https://www.linkedin.com/in/williamhgates/", limit: 10 });
|
|
3216
|
+
*/
|
|
3217
|
+
profilePostsThin(input, options) {
|
|
3218
|
+
return this._core.run("linkedin.profile_posts_thin", input, options);
|
|
3219
|
+
}
|
|
3194
3220
|
/**
|
|
3195
3221
|
* LinkedIn Profile (basic)
|
|
3196
3222
|
*
|