Skip to content

Commit 10e252a

Browse files
Linear (API key) - remove package pin, update sdk version (#17987)
* remove package pin, update sdk version * pnpm
1 parent 647eb7d commit 10e252a

File tree

14 files changed

+81
-101
lines changed

14 files changed

+81
-101
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "linear_app-create-issue",
66
name: "Create Issue",
77
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).",
8-
version: "0.4.11",
8+
version: "0.4.12",
99
props: {
1010
linearApp,
1111
teamId: {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "linear_app-get-issue",
55
name: "Get Issue",
66
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).",
7-
version: "0.1.11",
7+
version: "0.1.12",
88
type: "action",
99
props: {
1010
linearApp,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "linear_app-get-teams",
66
name: "Get Teams",
77
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).",
8-
version: "0.2.11",
8+
version: "0.2.12",
99
type: "action",
1010
props: {
1111
linearApp,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
name: "Search Issues",
88
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).",
99
type: "action",
10-
version: "0.2.11",
10+
version: "0.2.12",
1111
props: {
1212
linearApp,
1313
teamId: {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
name: "Update Issue",
66
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).",
77
type: "action",
8-
version: "0.1.11",
8+
version: "0.1.12",
99
props: {
1010
linearApp,
1111
teamId: {

components/linear_app/linear_app.app.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { LinearClient } from "@linear/sdk@13.0.0";
1+
import { LinearClient } from "@linear/sdk";
22
import constants from "./common/constants.mjs";
33
import utils from "./common/utils.mjs";
44
import { axios } from "@pipedream/platform";

components/linear_app/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_app",
3-
"version": "0.7.4",
3+
"version": "0.7.5",
44
"description": "Pipedream Linear_app Components",
55
"main": "linear_app.app.mjs",
66
"keywords": [
@@ -14,7 +14,7 @@
1414
"access": "public"
1515
},
1616
"dependencies": {
17-
"@linear/sdk": "^13.0.0",
17+
"@linear/sdk": "^55.1.0",
1818
"@pipedream/platform": "^3.0.3"
1919
}
2020
}

components/linear_app/sources/comment-created-instant/comment-created-instant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
name: "New Comment Created (Instant)",
88
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).",
99
type: "source",
10-
version: "0.1.13",
10+
version: "0.1.14",
1111
dedupe: "unique",
1212
methods: {
1313
...common.methods,

components/linear_app/sources/issue-created-instant/issue-created-instant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
name: "New Issue Created (Instant)",
88
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).",
99
type: "source",
10-
version: "0.3.13",
10+
version: "0.3.14",
1111
dedupe: "unique",
1212
methods: {
1313
...common.methods,

components/linear_app/sources/issue-updated-instant/issue-updated-instant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
name: "Issue Updated (Instant)",
88
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).",
99
type: "source",
10-
version: "0.3.13",
10+
version: "0.3.14",
1111
dedupe: "unique",
1212
methods: {
1313
...common.methods,

0 commit comments

Comments
 (0)