Skip to content

Commit 1ab9200

Browse files
republish (#17989)
1 parent 10e252a commit 1ab9200

File tree

13 files changed

+105
-91
lines changed

13 files changed

+105
-91
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,5 @@ export default {
1010
...utils.getAppProps(createIssue),
1111
key: "linear-create-issue",
1212
description: "Creates a new issue in Linear. Requires team ID and title. Optional: description, assignee, project, state. Returns response object with success status and issue details. Uses OAuth authentication. See Linear docs for additional info [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api#creating-and-editing-issues).",
13-
version: "0.4.10",
13+
version: "0.4.11",
1414
};
15-

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,5 @@ export default {
1010
...utils.getAppProps(getIssue),
1111
key: "linear-get-issue",
1212
description: "Retrieves a Linear issue by its ID. Returns complete issue details including title, description, state, assignee, team, project, labels, and timestamps. Uses OAuth authentication. See Linear docs for additional info [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api).",
13-
version: "0.1.10",
13+
version: "0.1.11",
1414
};
15-

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,5 @@ export default {
1010
...utils.getAppProps(getTeams),
1111
key: "linear-get-teams",
1212
description: "Retrieves all teams in your Linear workspace. Returns array of team objects with details like ID, name, and key. Supports pagination with configurable limit. Uses OAuth authentication. See Linear docs for additional info [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api).",
13-
version: "0.2.11",
13+
version: "0.2.12",
1414
};
15-

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,5 @@ export default {
1010
...utils.getAppProps(searchIssues),
1111
key: "linear-search-issues",
1212
description: "Searches Linear issues by team, project, assignee, labels, state, or text query. Supports pagination, ordering, and archived issues. Returns array of matching issues. Uses OAuth authentication. See Linear docs for additional info [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api).",
13-
version: "0.2.10",
13+
version: "0.2.11",
1414
};
15-

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,5 @@ export default {
99
...utils.getAppProps(updateIssue),
1010
key: "linear-update-issue",
1111
description: "Updates an existing Linear issue. Can modify title, description, assignee, state, project, team, labels, priority, and dates. Returns updated issue details. Uses OAuth authentication. See Linear docs for additional info [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api#creating-and-editing-issues).",
12-
version: "0.1.10",
12+
version: "0.1.11",
1313
};
14-

components/linear/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/linear",
3-
"version": "0.7.4",
3+
"version": "0.7.5",
44
"description": "Pipedream Linear Components",
55
"main": "linear.app.mjs",
66
"keywords": [
@@ -14,8 +14,8 @@
1414
"access": "public"
1515
},
1616
"dependencies": {
17-
"@linear/sdk": "^13.0.0",
18-
"@pipedream/linear_app": "^0.7.3",
17+
"@linear/sdk": "^55.1.0",
18+
"@pipedream/linear_app": "^0.7.5",
1919
"@pipedream/platform": "^3.0.3"
2020
}
2121
}

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: "Triggers instantly when a new comment is added to an issue in Linear. Returns comment details including content, author, issue reference, and timestamps. Supports filtering by team. Uses OAuth authentication. See Linear docs for additional info [here](https://developers.linear.app/docs/graphql/webhooks).",
13-
version: "0.1.12",
13+
version: "0.1.13",
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: "Triggers instantly when a new issue is created in Linear. Provides complete issue details including title, description, team, assignee, state, and timestamps. Supports filtering by team and project. Uses OAuth authentication. See Linear docs for additional info [here](https://developers.linear.app/docs/graphql/webhooks).",
13-
version: "0.3.12",
13+
version: "0.3.13",
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: "Triggers instantly when any issue is updated in Linear. Provides complete issue details with changes. Supports filtering by team and project. Includes all updates except status changes. Uses OAuth authentication. See Linear docs for additional info [here](https://developers.linear.app/docs/graphql/webhooks).",
13-
version: "0.3.12",
13+
version: "0.3.13",
1414
};

components/linear/sources/new-issue-status-updated/new-issue-status-updated.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ export default {
1010
...utils.getAppProps(newIssueStatusUpdated),
1111
key: "linear-new-issue-status-updated",
1212
description: "Triggers instantly when an issue's workflow state changes (e.g., Todo to In Progress). Returns issue with previous and current state info. Can filter by specific target state. Uses OAuth authentication. See Linear docs for additional info [here](https://developers.linear.app/docs/graphql/webhooks).",
13-
version: "0.1.13",
13+
version: "0.1.14",
1414
};

0 commit comments

Comments
 (0)