@pipedream/linear 0.6.1 → 0.7.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pipedream/linear",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "Pipedream Linear Components",
|
|
5
5
|
"main": "linear.app.mjs",
|
|
6
6
|
"keywords": [
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@linear/sdk": "^13.0.0",
|
|
18
|
-
"@pipedream/linear_app": "^0.
|
|
18
|
+
"@pipedream/linear_app": "^0.7.0",
|
|
19
19
|
"@pipedream/platform": "^3.0.3"
|
|
20
20
|
}
|
|
21
21
|
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import newProjectUpdateCreated from "@pipedream/linear_app/sources/new-projectupdate-created/new-projectupdate-created.mjs";
|
|
2
|
+
|
|
3
|
+
import utils from "../../common/utils.mjs";
|
|
4
|
+
|
|
5
|
+
/* eslint-disable pipedream/required-properties-type */
|
|
6
|
+
/* eslint-disable pipedream/required-properties-name */
|
|
7
|
+
/* eslint-disable pipedream/required-properties-version */
|
|
8
|
+
|
|
9
|
+
export default {
|
|
10
|
+
...newProjectUpdateCreated,
|
|
11
|
+
...utils.getAppProps(newProjectUpdateCreated),
|
|
12
|
+
key: "linear-new-projectupdate-created",
|
|
13
|
+
description: "Project updates are short status reports on the health of your projects. Emit new event when a new Project Update is written. [See the documentation](https://developers.linear.app/docs/graphql/webhooks)",
|
|
14
|
+
version: "0.0.1",
|
|
15
|
+
};
|