Skip to content

Commit 0a2d4e9

Browse files
committed
updates
1 parent 89b584b commit 0a2d4e9

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

components/linkedin/actions/delete-post/delete-post.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import linkedin from "../../linkedin.app.mjs";
33
export default {
44
key: "linkedin-delete-post",
55
name: "Delete Post",
6-
description: "Removes a post from user's wall. [See the docs](https://docs.microsoft.com/en-us/linkedin/marketing/integrations/community-management/shares/share-api?tabs=http#delete-shares) for more information",
7-
version: "0.0.9",
6+
description: "Removes a post from user's wall. [See the documentation](https://docs.microsoft.com/en-us/linkedin/marketing/integrations/community-management/shares/share-api?tabs=http#delete-shares) for more information",
7+
version: "0.0.10",
88
type: "action",
99
props: {
1010
linkedin,

components/linkedin/actions/retrieve-comments-on-comments/retrieve-comments-on-comments.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import linkedin from "../../linkedin.app.mjs";
33
export default {
44
key: "linkedin-retrieve-comments-on-comments",
55
name: "Retrieves Comments on Comments",
6-
description: "Retrieves comments on comments, given the parent comment urn. [See the docs here](https://docs.microsoft.com/en-us/linkedin/marketing/integrations/community-management/shares/network-update-social-actions#retrieve-comments-on-comments)",
7-
version: "0.1.9",
6+
description: "Retrieves comments on comments, given the parent comment urn. [See the documentation](https://docs.microsoft.com/en-us/linkedin/marketing/integrations/community-management/shares/network-update-social-actions#retrieve-comments-on-comments)",
7+
version: "0.1.10",
88
type: "action",
99
props: {
1010
linkedin,

components/linkedin/linkedin.app.mjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export default {
8585
postId: {
8686
type: "string",
8787
label: "Post Id",
88-
description: "URN of the post that will be deleted",
88+
description: "URN of the post that will be deleted. URN must be either a ugcPostUrn (`urn:li:ugcPost:{id}`) or shareUrn (`urn:li:share:{id}`). The shareUrn can be found in the post's embed code.",
8989
},
9090
startYear: {
9191
type: "string",
@@ -131,7 +131,6 @@ export default {
131131
return {
132132
"Authorization": `Bearer ${this.$auth.oauth_access_token}`,
133133
"Content-Type": "application/json",
134-
"X-Restli-Protocol-Version": "2.0.0",
135134
"Linkedin-Version": constants.VERSION_HEADER,
136135
};
137136
},

components/linkedin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/linkedin",
3-
"version": "1.2.2",
3+
"version": "1.2.3",
44
"description": "Pipedream Linkedin Components",
55
"main": "linkedin.app.mjs",
66
"keywords": [

0 commit comments

Comments
 (0)