@pipedream/linear 0.7.4 → 0.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10,6 +10,5 @@ export default {
10
10
  ...utils.getAppProps(createIssue),
11
11
  key: "linear-create-issue",
12
12
  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.10",
13
+ version: "0.4.12",
14
14
  };
15
-
@@ -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
+ };
@@ -10,6 +10,5 @@ export default {
10
10
  ...utils.getAppProps(getIssue),
11
11
  key: "linear-get-issue",
12
12
  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.10",
13
+ version: "0.1.12",
14
14
  };
15
-
@@ -10,6 +10,5 @@ export default {
10
10
  ...utils.getAppProps(getTeams),
11
11
  key: "linear-get-teams",
12
12
  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.11",
13
+ version: "0.2.13",
14
14
  };
15
-
@@ -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
+ };
@@ -10,6 +10,5 @@ export default {
10
10
  ...utils.getAppProps(searchIssues),
11
11
  key: "linear-search-issues",
12
12
  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.10",
13
+ version: "0.2.12",
14
14
  };
15
-
@@ -9,6 +9,5 @@ export default {
9
9
  ...utils.getAppProps(updateIssue),
10
10
  key: "linear-update-issue",
11
11
  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.10",
12
+ version: "0.1.12",
13
13
  };
14
-
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/linear",
3
- "version": "0.7.4",
3
+ "version": "0.8.0",
4
4
  "description": "Pipedream Linear Components",
5
5
  "main": "linear.app.mjs",
6
6
  "keywords": [
@@ -14,8 +14,8 @@
14
14
  "access": "public"
15
15
  },
16
16
  "dependencies": {
17
- "@linear/sdk": "^13.0.0",
18
- "@pipedream/linear_app": "^0.7.3",
17
+ "@linear/sdk": "^55.1.0",
18
+ "@pipedream/linear_app": "^0.8.0",
19
19
  "@pipedream/platform": "^3.0.3"
20
20
  }
21
21
  }
@@ -10,5 +10,5 @@ export default {
10
10
  ...utils.getAppProps(commentCreatedInstant),
11
11
  key: "linear-comment-created-instant",
12
12
  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.12",
13
+ version: "0.1.14",
14
14
  };
@@ -10,5 +10,5 @@ export default {
10
10
  ...utils.getAppProps(issueCreatedInstant),
11
11
  key: "linear-issue-created-instant",
12
12
  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.12",
13
+ version: "0.3.14",
14
14
  };
@@ -10,5 +10,5 @@ export default {
10
10
  ...utils.getAppProps(issueUpdatedInstant),
11
11
  key: "linear-issue-updated-instant",
12
12
  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. Uses OAuth authentication. See Linear docs for additional info [here](https://developers.linear.app/docs/graphql/webhooks).",
13
- version: "0.3.12",
13
+ version: "0.3.14",
14
14
  };
@@ -10,5 +10,5 @@ export default {
10
10
  ...utils.getAppProps(newIssueStatusUpdated),
11
11
  key: "linear-new-issue-status-updated",
12
12
  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. 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.15",
14
14
  };
@@ -11,5 +11,5 @@ export default {
11
11
  ...utils.getAppProps(newProjectUpdateCreated),
12
12
  key: "linear-new-projectupdate-created",
13
13
  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. Uses OAuth authentication. See Linear docs for additional info [here](https://developers.linear.app/docs/graphql/webhooks).",
14
- version: "0.0.4",
14
+ version: "0.0.6",
15
15
  };
@@ -11,5 +11,5 @@ export default {
11
11
  ...utils.getAppProps(projectUpdatedInstant),
12
12
  key: "linear-project-updated-instant",
13
13
  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. Uses OAuth authentication. See Linear docs for additional info [here](https://developers.linear.app/docs/graphql/webhooks).",
14
- version: "0.0.4",
14
+ version: "0.0.6",
15
15
  };