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
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
nodejs 18.18.0
nodejs 20.13.1
pnpm 9.14.2
python 3.11.5
poetry 1.6.1
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,7 +9,7 @@ export default {
...createIssue,
...utils.getAppProps(createIssue),
key: "linear-create-issue",
description: "Create an issue (OAuth). See the docs [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api#creating-and-editing-issues)",
version: "0.4.9",
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",
};

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,7 +9,7 @@ export default {
...getIssue,
...utils.getAppProps(getIssue),
key: "linear-get-issue",
description: "Get an issue by ID (OAuth). See the docs [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api)",
version: "0.1.9",
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",
};

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 @@ -8,8 +8,8 @@ import getTeams from "@pipedream/linear_app/actions/get-teams/get-teams.mjs";
export default {
...getTeams,
key: "linear-get-teams",
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)",
version: "0.2.9",
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.10",
props: {
linearApp,
},
Expand Down
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,7 +9,7 @@ export default {
...searchIssues,
...utils.getAppProps(searchIssues),
key: "linear-search-issues",
description: "Search issues (OAuth). See the docs [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api)",
version: "0.2.9",
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",
};

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,7 +8,7 @@ export default {
...updateIssue,
...utils.getAppProps(updateIssue),
key: "linear-update-issue",
description: "Update an issue (OAuth). See the docs [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api#creating-and-editing-issues)",
version: "0.1.9",
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",
};

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.7.1",
"version": "0.7.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: "Emit new event when a new comment is created (OAuth). [See the documentation](https://developers.linear.app/docs/graphql/webhooks)",
version: "0.1.11",
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",
};
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: "Emit new event when a new issue is created (OAuth). [See the documentation](https://developers.linear.app/docs/graphql/webhooks)",
version: "0.3.11",
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",
};
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: "Emit new event when an issue is updated (OAuth). See the documentation](https://developers.linear.app/docs/graphql/webhooks)",
version: "0.3.11",
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",
};
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: "Emit new event when the status of an issue is updated (OAuth). [See the documentation](https://developers.linear.app/docs/graphql/webhooks)",
version: "0.1.12",
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",
};
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: "Project updates are short status reports on the health of your projects. Emit new event when a new Project Update is written. [See the documentation](https://developers.linear.app/docs/graphql/webhooks)",
version: "0.0.2",
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.3",
};
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: "Emit new event when a project is updated (OAuth). [See the documentation](https://developers.linear.app/docs/graphql/webhooks)",
version: "0.0.3",
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",
};
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: "Create an issue (API Key). See the docs [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api#creating-and-editing-issues)",
version: "0.4.8",
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 Linear docs for additional info [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api#creating-and-editing-issues).",
version: "0.4.9",
props: {
linearApp,
teamId: {
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: "Get an issue by ID (API Key). See the docs [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api)",
version: "0.1.8",
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.9",
type: "action",
props: {
linearApp,
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: "Get all the teams (API Key). See the docs [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api)",
version: "0.2.8",
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.9",
type: "action",
props: {
linearApp,
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: "Search issues (API Key). See the docs [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://developers.linear.app/docs/graphql/working-with-the-graphql-api).",
type: "action",
version: "0.2.8",
version: "0.2.9",
props: {
linearApp,
teamId: {
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: "Update an issue (API Key). See the docs [here](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 Linear docs for additional info [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api#creating-and-editing-issues).",
type: "action",
version: "0.1.8",
version: "0.1.9",
props: {
linearApp,
teamId: {
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.7.1",
"version": "0.7.2",
"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 @@ -4,10 +4,10 @@
export default {
...common,
key: "linear_app-comment-created-instant",
name: "New Created Comment (Instant)",
description: "Emit new event when a new comment is created. [See the documentation](https://developers.linear.app/docs/graphql/webhooks)",
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).",

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.10",
version: "0.1.11",
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-created-instant",
name: "New Created Issue (Instant)",
description: "Emit new event when a new issue is created. [See the documentation](https://developers.linear.app/docs/graphql/webhooks)",
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).",

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.10",
version: "0.3.11",
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: "New Updated Issue (Instant)",
description: "Emit new event when an issue is updated. [See the documentation](https://developers.linear.app/docs/graphql/webhooks)",
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).",

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.10",
version: "0.3.11",
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: "New Issue Status Updated (Instant)",
description: "Emit new event when the status of an issue is updated. [See the documentation](https://developers.linear.app/docs/graphql/webhooks)",
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).",

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.10",
version: "0.1.11",
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: "Project updates are short status reports on the health of your projects. Emit new event when a new Project Update is written. [See the documentation](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://developers.linear.app/docs/graphql/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.2",
version: "0.0.3",
dedupe: "unique",
props: {
linearApp,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
export default {
...common,
key: "linear_app-project-updated-instant",
name: "New Updated Project (Instant)",
description: "Emit new event when a project is updated. [See the documentation](https://developers.linear.app/docs/graphql/webhooks)",
name: "Project Updated (Instant)",

Check warning on line 8 in components/linear_app/sources/project-updated-instant/project-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 a project is updated in Linear. Returns project details including name, description, status, dates, and team info. Supports filtering by specific teams. See Linear docs for additional info [here](https://developers.linear.app/docs/graphql/webhooks).",

Check warning on line 9 in components/linear_app/sources/project-updated-instant/project-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.0.3",
version: "0.0.4",
dedupe: "unique",
props: {
linearApp,
Expand Down
26 changes: 14 additions & 12 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading