Skip to content

Commit e21d334

Browse files
authored
Merging pull request #17583
* updates * pnpm-lock.yaml * versions
1 parent 02aa2ee commit e21d334

File tree

15 files changed

+39
-22
lines changed

15 files changed

+39
-22
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.9",
8+
version: "0.4.10",
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.9",
7+
version: "0.1.10",
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.9",
8+
version: "0.2.10",
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.9",
10+
version: "0.2.10",
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.9",
8+
version: "0.1.10",
99
props: {
1010
linearApp,
1111
teamId: {

components/linear_app/common/queries.mjs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,4 +103,12 @@ export default {
103103
${fragments.projectUpdate}
104104
${fragments.pageInfo}
105105
`,
106+
getProjectUpdate: `
107+
query GetProjectUpdate($projectUpdateId: String!) {
108+
projectUpdate(id: $projectUpdateId) {
109+
...ProjectUpdate
110+
}
111+
}
112+
${fragments.projectUpdate}
113+
`,
106114
};

components/linear_app/linear_app.app.mjs

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,9 @@ export default {
7272
}),
7373
resourcesArgs: teamId && {
7474
filter: {
75-
issues: {
76-
team: {
77-
id: {
78-
eq: teamId,
79-
},
75+
accessibleTeams: {
76+
id: {
77+
eq: teamId,
8078
},
8179
},
8280
},
@@ -258,6 +256,17 @@ export default {
258256
async getProjectUpdate(id) {
259257
return this.client().projectUpdate(id);
260258
},
259+
async getProjectUpdateGraphQL(id) {
260+
const { data: { projectUpdate } } = await this.post({
261+
data: {
262+
query: queries.getProjectUpdate,
263+
variables: {
264+
projectUpdateId: id,
265+
},
266+
},
267+
});
268+
return projectUpdate;
269+
},
261270
async getState(id) {
262271
return this.client().workflowState(id);
263272
},

components/linear_app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/linear_app",
3-
"version": "0.7.2",
3+
"version": "0.7.3",
44
"description": "Pipedream Linear_app Components",
55
"main": "linear_app.app.mjs",
66
"keywords": [

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.11",
10+
version: "0.1.12",
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.11",
10+
version: "0.3.12",
1111
dedupe: "unique",
1212
methods: {
1313
...common.methods,

0 commit comments

Comments
 (0)