@pipedream/linear 0.5.5 → 0.5.7

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.
package/README.md CHANGED
@@ -1,7 +1,11 @@
1
1
  # Overview
2
2
 
3
- With the Linear API, you can build a variety of applications that allow users
4
- to track their work and progress over time. For example, you could build a task
5
- manager that allows users to track their to-do lists and progress on each task,
6
- or a project manager that allows users to track their progress on different
7
- projects.
3
+ Linear (OAuth) API provides access to Linear's issue tracking and project management capabilities, letting you automate tasks, synchronize data across platforms, and enhance your team's productivity. Whether you're reporting bugs, assigning tasks, or tracking progress, the Linear API on Pipedream allows for real-time, event-driven workflows that can increase efficiency and foster collaboration within teams.
4
+
5
+ # Example Use Cases
6
+
7
+ - **Issue Sync with GitHub**: Whenever a new issue is created in Linear, automatically create a corresponding GitHub issue. This keeps your project management and code repositories aligned, ensuring no task goes unnoticed by developers who primarily interact with GitHub.
8
+
9
+ - **Slack Notifications for Priority Tasks**: Set up a workflow where high-priority issues in Linear trigger instant messages to a designated Slack channel or user. This ensures critical items are immediately visible and can be acted upon swiftly by your team.
10
+
11
+ - **Customer Support Ticketing Integration**: Connect Linear with a customer support platform like Zendesk. When a support ticket escalates to a point where development work is needed, automatically create a new Linear issue to track the work, making sure customer problems are addressed in your development workflow.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/linear",
3
- "version": "0.5.5",
3
+ "version": "0.5.7",
4
4
  "description": "Pipedream Linear Components",
5
5
  "main": "linear.app.mjs",
6
6
  "keywords": [
@@ -15,6 +15,6 @@
15
15
  },
16
16
  "dependencies": {
17
17
  "@linear/sdk": "^13.0.0",
18
- "@pipedream/platform": "^1.3.0"
18
+ "@pipedream/platform": "^3.0.3"
19
19
  }
20
20
  }
@@ -9,6 +9,6 @@ export default {
9
9
  ...commentCreatedInstant,
10
10
  ...utils.getAppProps(commentCreatedInstant),
11
11
  key: "linear-comment-created-instant",
12
- description: "Emit new event when a new comment is created (OAuth). See the docs [here](https://developers.linear.app/docs/graphql/webhooks)",
13
- version: "0.1.5",
12
+ description: "Emit new event when a new comment is created (OAuth). [See the documentation](https://developers.linear.app/docs/graphql/webhooks)",
13
+ version: "0.1.7",
14
14
  };
@@ -9,6 +9,6 @@ export default {
9
9
  ...issueCreatedInstant,
10
10
  ...utils.getAppProps(issueCreatedInstant),
11
11
  key: "linear-issue-created-instant",
12
- description: "Emit new event when a new issue is created (OAuth). See the docs [here](https://developers.linear.app/docs/graphql/webhooks)",
13
- version: "0.3.5",
12
+ description: "Emit new event when a new issue is created (OAuth). [See the documentation](https://developers.linear.app/docs/graphql/webhooks)",
13
+ version: "0.3.7",
14
14
  };
@@ -9,6 +9,6 @@ export default {
9
9
  ...issueUpdatedInstant,
10
10
  ...utils.getAppProps(issueUpdatedInstant),
11
11
  key: "linear-issue-updated-instant",
12
- description: "Emit new event when an issue is updated (OAuth). See the docs [here](https://developers.linear.app/docs/graphql/webhooks)",
13
- version: "0.3.5",
12
+ description: "Emit new event when an issue is updated (OAuth). See the documentation](https://developers.linear.app/docs/graphql/webhooks)",
13
+ version: "0.3.7",
14
14
  };
@@ -9,6 +9,6 @@ export default {
9
9
  ...newIssueStatusUpdated,
10
10
  ...utils.getAppProps(newIssueStatusUpdated),
11
11
  key: "linear-new-issue-status-updated",
12
- description: "Emit new event when the status of an issue is updated (OAuth). See the docs [here](https://developers.linear.app/docs/graphql/webhooks)",
13
- version: "0.1.5",
12
+ description: "Emit new event when the status of an issue is updated (OAuth). [See the documentation](https://developers.linear.app/docs/graphql/webhooks)",
13
+ version: "0.1.7",
14
14
  };