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
4 changes: 2 additions & 2 deletions components/linear/actions/create-issue/create-issue.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ export default {
...createIssue,
...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.12",
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://linear.app/developers/graphql#creating-and-editing-issues).",
version: "0.4.13",
};
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ const DEFAULT_CONNECTION_LIMIT = 50;
export default {
key: "linear-get-current-user",
name: "Get Current User",
description: "Retrieve rich context about the authenticated Linear user, including core profile fields, recent timestamps, direct team memberships, and high-level organization settings. Returns the user object, a paginated team list (with names, keys, cycle configs, etc.), associated team memberships, and organization metadata such as auth defaults and SCIM/SAML flags. Use this when your workflow or agent needs to understand who is currently authenticated, which teams they belong to, or what workspace policies might influence subsequent Linear actions. See Linear's GraphQL viewer docs [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api).",
version: "0.0.1",
description: "Retrieve rich context about the authenticated Linear user, including core profile fields, recent timestamps, direct team memberships, and high-level organization settings. Returns the user object, a paginated team list (with names, keys, cycle configs, etc.), associated team memberships, and organization metadata such as auth defaults and SCIM/SAML flags. Use this when your workflow or agent needs to understand who is currently authenticated, which teams they belong to, or what workspace policies might influence subsequent Linear actions. See Linear's GraphQL viewer docs [here](https://linear.app/developers/graphql).",
version: "0.0.2",
type: "action",
annotations: {
destructiveHint: false,
Expand Down
4 changes: 2 additions & 2 deletions components/linear/actions/get-issue/get-issue.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ export default {
...getIssue,
...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.12",
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://linear.app/developers/graphql).",
version: "0.1.13",
};
4 changes: 2 additions & 2 deletions components/linear/actions/get-teams/get-teams.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ export default {
...getTeams,
...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.13",
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://linear.app/developers/graphql).",
version: "0.2.14",
};
4 changes: 2 additions & 2 deletions components/linear/actions/search-issues/search-issues.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ export default {
...searchIssues,
...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.12",
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://linear.app/developers/graphql).",
version: "0.2.13",
};
4 changes: 2 additions & 2 deletions components/linear/actions/update-issue/update-issue.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ export default {
...updateIssue,
...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.12",
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://linear.app/developers/graphql#creating-and-editing-issues).",
version: "0.1.13",
};
2 changes: 1 addition & 1 deletion components/linear/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/linear",
"version": "0.8.1",
"version": "0.8.2",
"description": "Pipedream Linear Components",
"main": "linear.app.mjs",
"keywords": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ export default {
...commentCreatedInstant,
...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.14",
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://linear.app/developers/webhooks).",
version: "0.1.15",
};
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ export default {
...issueCreatedInstant,
...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.14",
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://linear.app/developers/webhooks).",
version: "0.3.15",
};
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ export default {
...issueUpdatedInstant,
...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.14",
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://linear.app/developers/webhooks).",
version: "0.3.15",
};
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ export default {
...newIssueStatusUpdated,
...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.15",
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://linear.app/developers/webhooks).",
version: "0.1.16",
};
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ export default {
...newProjectUpdateCreated,
...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.6",
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://linear.app/developers/webhooks).",
version: "0.0.7",
};
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ export default {
...projectUpdatedInstant,
...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.6",
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://linear.app/developers/webhooks).",
version: "0.0.7",
};
4 changes: 2 additions & 2 deletions components/linear_app/actions/create-issue/create-issue.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ export default {
type: "action",
key: "linear_app-create-issue",
name: "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 API Key authentication. [See the documentation](https://developers.linear.app/docs/graphql/working-with-the-graphql-api#creating-and-editing-issues).",
version: "0.4.14",
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 API Key authentication. [See the documentation](https://linear.app/developers/graphql#creating-and-editing-issues).",
version: "0.4.15",
annotations: {
destructiveHint: true,
openWorldHint: true,
Expand Down
4 changes: 2 additions & 2 deletions components/linear_app/actions/get-issue/get-issue.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import linearApp from "../../linear_app.app.mjs";
export default {
key: "linear_app-get-issue",
name: "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 API Key authentication. See Linear docs for additional info [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api).",
version: "0.1.14",
description: "Retrieves a Linear issue by its ID. Returns complete issue details including title, description, state, assignee, team, project, labels, and timestamps. Uses API Key authentication. See Linear docs for additional info [here](https://linear.app/developers/graphql).",
version: "0.1.15",
annotations: {
destructiveHint: false,
openWorldHint: true,
Expand Down
4 changes: 2 additions & 2 deletions components/linear_app/actions/get-teams/get-teams.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import constants from "../../common/constants.mjs";
export default {
key: "linear_app-get-teams",
name: "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 API Key authentication. See Linear docs for additional info [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api).",
version: "0.2.14",
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 API Key authentication. See Linear docs for additional info [here](https://linear.app/developers/graphql).",
version: "0.2.15",
annotations: {
destructiveHint: false,
openWorldHint: true,
Expand Down
4 changes: 2 additions & 2 deletions components/linear_app/actions/search-issues/search-issues.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import constants from "../../common/constants.mjs";
export default {
key: "linear_app-search-issues",
name: "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 API Key authentication. See Linear docs for additional info [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api).",
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 API Key authentication. See Linear docs for additional info [here](https://linear.app/developers/graphql).",
type: "action",
version: "0.2.14",
version: "0.2.15",
annotations: {
destructiveHint: false,
openWorldHint: true,
Expand Down
4 changes: 2 additions & 2 deletions components/linear_app/actions/update-issue/update-issue.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import linearApp from "../../linear_app.app.mjs";
export default {
key: "linear_app-update-issue",
name: "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 API Key authentication. [See the documentation](https://developers.linear.app/docs/graphql/working-with-the-graphql-api#creating-and-editing-issues).",
description: "Updates an existing Linear issue. Can modify title, description, assignee, state, project, team, labels, priority, and dates. Returns updated issue details. Uses API Key authentication. [See the documentation](https://linear.app/developers/graphql#creating-and-editing-issues).",
type: "action",
version: "0.1.14",
version: "0.1.15",
annotations: {
destructiveHint: true,
openWorldHint: true,
Expand Down
2 changes: 1 addition & 1 deletion components/linear_app/common/constants.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const RESOURCE_TYPE = {

const RESOURCE_TYPES = Object.values(RESOURCE_TYPE);

// https://developers.linear.app/docs/graphql/webhooks#how-does-a-webhook-work
// https://linear.app/developers/webhooks#how-does-a-webhook-work
// To make sure a Webhook POST is truly created by Linear, check the request
// that originates from one of the following IPs:
const CLIENT_IPS = [
Expand Down
2 changes: 1 addition & 1 deletion components/linear_app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/linear_app",
"version": "0.8.0",
"version": "0.8.1",
"description": "Pipedream Linear_app Components",
"main": "linear_app.app.mjs",
"keywords": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
...common,
key: "linear_app-comment-created-instant",
name: "New 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. See Linear docs for additional info [here](https://developers.linear.app/docs/graphql/webhooks).",
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. See Linear docs for additional info [here](https://linear.app/developers/webhooks).",

Check warning on line 8 in components/linear_app/sources/comment-created-instant/comment-created-instant.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Source descriptions should start with "Emit new". See https://pipedream.com/docs/components/guidelines/#source-description
type: "source",
version: "0.1.15",
version: "0.1.16",
dedupe: "unique",
methods: {
...common.methods,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
...common,
key: "linear_app-issue-created-instant",
name: "New 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. See Linear docs for additional info [here](https://developers.linear.app/docs/graphql/webhooks).",
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. See Linear docs for additional info [here](https://linear.app/developers/webhooks).",

Check warning on line 8 in components/linear_app/sources/issue-created-instant/issue-created-instant.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Source descriptions should start with "Emit new". See https://pipedream.com/docs/components/guidelines/#source-description
type: "source",
version: "0.3.15",
version: "0.3.16",
dedupe: "unique",
methods: {
...common.methods,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
export default {
...common,
key: "linear_app-issue-updated-instant",
name: "Issue Updated (Instant)",

Check warning on line 7 in components/linear_app/sources/issue-updated-instant/issue-updated-instant.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Source names should start with "New". See https://pipedream.com/docs/components/guidelines/#source-name
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. See Linear docs for additional info [here](https://developers.linear.app/docs/graphql/webhooks).",
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. See Linear docs for additional info [here](https://linear.app/developers/webhooks).",

Check warning on line 8 in components/linear_app/sources/issue-updated-instant/issue-updated-instant.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Source descriptions should start with "Emit new". See https://pipedream.com/docs/components/guidelines/#source-description
type: "source",
version: "0.3.15",
version: "0.3.16",
dedupe: "unique",
methods: {
...common.methods,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
export default {
...common,
key: "linear_app-new-issue-status-updated",
name: "Issue Status Updated (Instant)",

Check warning on line 8 in components/linear_app/sources/new-issue-status-updated/new-issue-status-updated.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Source names should start with "New". See https://pipedream.com/docs/components/guidelines/#source-name
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. See Linear docs for additional info [here](https://developers.linear.app/docs/graphql/webhooks).",
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. See Linear docs for additional info [here](https://linear.app/developers/webhooks).",

Check warning on line 9 in components/linear_app/sources/new-issue-status-updated/new-issue-status-updated.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Source descriptions should start with "Emit new". See https://pipedream.com/docs/components/guidelines/#source-description
type: "source",
version: "0.1.15",
version: "0.1.16",
dedupe: "unique",
props: {
linearApp: common.props.linearApp,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
...common,
key: "linear_app-new-projectupdate-created",
name: "New Project Update Written (Instant)",
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. See Linear docs for additional info [here](https://developers.linear.app/docs/graphql/webhooks).",
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. See Linear docs for additional info [here](https://linear.app/developers/webhooks).",

Check warning on line 9 in components/linear_app/sources/new-projectupdate-created/new-projectupdate-created.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Source descriptions should start with "Emit new". See https://pipedream.com/docs/components/guidelines/#source-description
type: "source",
version: "0.0.7",
version: "0.0.8",
dedupe: "unique",
props: {
linearApp,
Expand Down
Loading
Loading