Skip to content

Commit 2e648aa

Browse files
committed
versions
1 parent ada4015 commit 2e648aa

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

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.13",
7+
version: "0.1.14",
88
annotations: {
99
destructiveHint: false,
1010
openWorldHint: true,

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.13",
8+
version: "0.2.14",
99
annotations: {
1010
destructiveHint: false,
1111
openWorldHint: true,

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.13",
10+
version: "0.2.14",
1111
annotations: {
1212
destructiveHint: false,
1313
openWorldHint: true,

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.14",
10+
version: "0.1.15",
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.14",
10+
version: "0.3.15",
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.14",
10+
version: "0.3.15",
1111
dedupe: "unique",
1212
methods: {
1313
...common.methods,

components/linear_app/sources/new-issue-status-updated/new-issue-status-updated.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default {
88
name: "Issue Status Updated (Instant)",
99
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).",
1010
type: "source",
11-
version: "0.1.14",
11+
version: "0.1.15",
1212
dedupe: "unique",
1313
props: {
1414
linearApp: common.props.linearApp,

components/linear_app/sources/new-projectupdate-created/new-projectupdate-created.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default {
88
name: "New Project Update Written (Instant)",
99
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).",
1010
type: "source",
11-
version: "0.0.6",
11+
version: "0.0.7",
1212
dedupe: "unique",
1313
props: {
1414
linearApp,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default {
88
name: "Project Updated (Instant)",
99
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).",
1010
type: "source",
11-
version: "0.0.7",
11+
version: "0.0.8",
1212
dedupe: "unique",
1313
props: {
1414
linearApp,

0 commit comments

Comments
 (0)