Skip to content

Commit 34f5a2a

Browse files
authored
Linear Project Updates webhook (#15259)
* project-updated-instant * pnpm-lock.yaml * versions * updates * versions
1 parent a268be5 commit 34f5a2a

File tree

25 files changed

+170
-25
lines changed

25 files changed

+170
-25
lines changed

components/linear/actions/create-issue/create-issue.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ export default {
1010
...utils.getAppProps(createIssue),
1111
key: "linear-create-issue",
1212
description: "Create an issue (OAuth). See the docs [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api#creating-and-editing-issues)",
13-
version: "0.4.6",
13+
version: "0.4.7",
1414
};
1515

components/linear/actions/get-issue/get-issue.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ export default {
1010
...utils.getAppProps(getIssue),
1111
key: "linear-get-issue",
1212
description: "Get an issue by ID (OAuth). See the docs [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api)",
13-
version: "0.1.6",
13+
version: "0.1.7",
1414
};
1515

components/linear/actions/get-teams/get-teams.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default {
99
...getTeams,
1010
key: "linear-get-teams",
1111
description: "Get all the teams (OAuth). See the docs [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api#creating-and-editing-issues)",
12-
version: "0.2.6",
12+
version: "0.2.7",
1313
props: {
1414
linearApp,
1515
},

components/linear/actions/search-issues/search-issues.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ export default {
1010
...utils.getAppProps(searchIssues),
1111
key: "linear-search-issues",
1212
description: "Search issues (OAuth). See the docs [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api)",
13-
version: "0.2.6",
13+
version: "0.2.7",
1414
};
1515

components/linear/actions/update-issue/update-issue.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ export default {
99
...utils.getAppProps(updateIssue),
1010
key: "linear-update-issue",
1111
description: "Update an issue (OAuth). See the docs [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api#creating-and-editing-issues)",
12-
version: "0.1.6",
12+
version: "0.1.7",
1313
};
1414

components/linear/linear.app.mjs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
import linearApp from "@pipedream/linear_app";
1+
//import linearApp from "@pipedream/linear_app";
2+
import linearApp from "../linear_app/linear_app.app.mjs";
3+
4+
// TODO: Will update above statement to import from @pipedream/linear_app
5+
// after updates to linear_app are published
26

37
export default {
48
...linearApp,

components/linear/package.json

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

components/linear/sources/comment-created-instant/comment-created-instant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ export default {
1010
...utils.getAppProps(commentCreatedInstant),
1111
key: "linear-comment-created-instant",
1212
description: "Emit new event when a new comment is created (OAuth). [See the documentation](https://developers.linear.app/docs/graphql/webhooks)",
13-
version: "0.1.8",
13+
version: "0.1.9",
1414
};

components/linear/sources/issue-created-instant/issue-created-instant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ export default {
1010
...utils.getAppProps(issueCreatedInstant),
1111
key: "linear-issue-created-instant",
1212
description: "Emit new event when a new issue is created (OAuth). [See the documentation](https://developers.linear.app/docs/graphql/webhooks)",
13-
version: "0.3.8",
13+
version: "0.3.9",
1414
};

components/linear/sources/issue-updated-instant/issue-updated-instant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ export default {
1010
...utils.getAppProps(issueUpdatedInstant),
1111
key: "linear-issue-updated-instant",
1212
description: "Emit new event when an issue is updated (OAuth). See the documentation](https://developers.linear.app/docs/graphql/webhooks)",
13-
version: "0.3.8",
13+
version: "0.3.9",
1414
};

0 commit comments

Comments
 (0)