Skip to content

Commit 667cc73

Browse files
authored
Merging pull request #18648
* updates & new components * pnpm-lock.yaml
1 parent b4b9b13 commit 667cc73

File tree

15 files changed

+46
-18
lines changed

15 files changed

+46
-18
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,5 +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.11",
13+
version: "0.4.12",
1414
};
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import createProject from "@pipedream/linear_app/actions/create-project/create-project.mjs";
2+
import utils from "../../common/utils.mjs";
3+
4+
/* eslint-disable pipedream/required-properties-type */
5+
/* eslint-disable pipedream/required-properties-name */
6+
/* eslint-disable pipedream/required-properties-version */
7+
8+
export default {
9+
...createProject,
10+
...utils.getAppProps(createProject),
11+
key: "linear-create-project",
12+
description: "Create a project in Linear. [See the documentation](https://studio.apollographql.com/public/Linear-API/variant/current/schema/reference/inputs/ProjectCreateInput).",
13+
version: "0.0.1",
14+
};

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +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.11",
13+
version: "0.1.12",
1414
};

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +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.12",
13+
version: "0.2.13",
1414
};
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import listProjects from "@pipedream/linear_app/actions/list-projects/list-projects.mjs";
2+
import utils from "../../common/utils.mjs";
3+
4+
/* eslint-disable pipedream/required-properties-type */
5+
/* eslint-disable pipedream/required-properties-name */
6+
/* eslint-disable pipedream/required-properties-version */
7+
8+
export default {
9+
...listProjects,
10+
...utils.getAppProps(listProjects),
11+
key: "linear-list-projects",
12+
description: "List projects in Linear. [See the documentation](https://studio.apollographql.com/public/Linear-API/variant/current/schema/reference/objects/ProjectConnection?query=projects).",
13+
version: "0.0.1",
14+
};

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +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.11",
13+
version: "0.2.12",
1414
};

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +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.11",
12+
version: "0.1.12",
1313
};

components/linear/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/linear",
3-
"version": "0.7.5",
3+
"version": "0.8.0",
44
"description": "Pipedream Linear Components",
55
"main": "linear.app.mjs",
66
"keywords": [
@@ -15,7 +15,7 @@
1515
},
1616
"dependencies": {
1717
"@linear/sdk": "^55.1.0",
18-
"@pipedream/linear_app": "^0.7.5",
18+
"@pipedream/linear_app": "^0.8.0",
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.13",
13+
version: "0.1.14",
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.13",
13+
version: "0.3.14",
1414
};

0 commit comments

Comments
 (0)