Skip to content

Commit 8a2106e

Browse files
committed
versions
1 parent 3f451a5 commit 8a2106e

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
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/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,

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.11",
10+
version: "0.3.12",
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.11",
11+
version: "0.1.12",
1212
dedupe: "unique",
1313
props: {
1414
linearApp: common.props.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.4",
11+
version: "0.0.5",
1212
dedupe: "unique",
1313
props: {
1414
linearApp,

0 commit comments

Comments
 (0)