Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions components/linear/actions/create-issue/create-issue.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,5 @@ export default {
...utils.getAppProps(createIssue),
key: "linear-create-issue",
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).",
version: "0.4.10",
version: "0.4.11",
};

3 changes: 1 addition & 2 deletions components/linear/actions/get-issue/get-issue.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,5 @@ export default {
...utils.getAppProps(getIssue),
key: "linear-get-issue",
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).",
version: "0.1.10",
version: "0.1.11",
};

3 changes: 1 addition & 2 deletions components/linear/actions/get-teams/get-teams.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,5 @@ export default {
...utils.getAppProps(getTeams),
key: "linear-get-teams",
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).",
version: "0.2.11",
version: "0.2.12",
};

3 changes: 1 addition & 2 deletions components/linear/actions/search-issues/search-issues.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,5 @@ export default {
...utils.getAppProps(searchIssues),
key: "linear-search-issues",
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).",
version: "0.2.10",
version: "0.2.11",
};

3 changes: 1 addition & 2 deletions components/linear/actions/update-issue/update-issue.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,5 @@ export default {
...utils.getAppProps(updateIssue),
key: "linear-update-issue",
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).",
version: "0.1.10",
version: "0.1.11",
};

6 changes: 3 additions & 3 deletions components/linear/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/linear",
"version": "0.7.4",
"version": "0.7.5",
"description": "Pipedream Linear Components",
"main": "linear.app.mjs",
"keywords": [
Expand All @@ -14,8 +14,8 @@
"access": "public"
},
"dependencies": {
"@linear/sdk": "^13.0.0",
"@pipedream/linear_app": "^0.7.3",
"@linear/sdk": "^55.1.0",
"@pipedream/linear_app": "^0.7.5",
"@pipedream/platform": "^3.0.3"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ export default {
...utils.getAppProps(commentCreatedInstant),
key: "linear-comment-created-instant",
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).",
version: "0.1.12",
version: "0.1.13",
};
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ export default {
...utils.getAppProps(issueCreatedInstant),
key: "linear-issue-created-instant",
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).",
version: "0.3.12",
version: "0.3.13",
};
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ export default {
...utils.getAppProps(issueUpdatedInstant),
key: "linear-issue-updated-instant",
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).",
version: "0.3.12",
version: "0.3.13",
};
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ export default {
...utils.getAppProps(newIssueStatusUpdated),
key: "linear-new-issue-status-updated",
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).",
version: "0.1.13",
version: "0.1.14",
};
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ export default {
...utils.getAppProps(newProjectUpdateCreated),
key: "linear-new-projectupdate-created",
description: "Triggers instantly when a project update (status report) is created in Linear. Returns update content, author, project details, and health status. Filters by team and optionally by project. Uses OAuth authentication. See Linear docs for additional info [here](https://developers.linear.app/docs/graphql/webhooks).",
version: "0.0.4",
version: "0.0.5",
};
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ export default {
...utils.getAppProps(projectUpdatedInstant),
key: "linear-project-updated-instant",
description: "Triggers instantly when a project is updated in Linear. Returns project details including name, description, status, dates, and team info. Supports filtering by specific teams. Uses OAuth authentication. See Linear docs for additional info [here](https://developers.linear.app/docs/graphql/webhooks).",
version: "0.0.4",
version: "0.0.5",
};
Loading
Loading