@pipedream/linear 0.6.0 → 0.6.1
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/actions/create-issue/create-issue.mjs +1 -1
- package/actions/get-issue/get-issue.mjs +1 -1
- package/actions/get-teams/get-teams.mjs +1 -1
- package/actions/search-issues/search-issues.mjs +1 -1
- package/actions/update-issue/update-issue.mjs +1 -1
- package/linear.app.mjs +1 -5
- package/package.json +2 -2
- package/sources/comment-created-instant/comment-created-instant.mjs +1 -1
- package/sources/issue-created-instant/issue-created-instant.mjs +1 -1
- package/sources/issue-updated-instant/issue-updated-instant.mjs +1 -1
- package/sources/new-issue-status-updated/new-issue-status-updated.mjs +1 -1
- package/sources/project-updated-instant/project-updated-instant.mjs +2 -7
|
@@ -10,6 +10,6 @@ export default {
|
|
|
10
10
|
...utils.getAppProps(createIssue),
|
|
11
11
|
key: "linear-create-issue",
|
|
12
12
|
description: "Create an issue (OAuth). See the docs [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api#creating-and-editing-issues)",
|
|
13
|
-
version: "0.4.
|
|
13
|
+
version: "0.4.8",
|
|
14
14
|
};
|
|
15
15
|
|
|
@@ -10,6 +10,6 @@ export default {
|
|
|
10
10
|
...utils.getAppProps(getIssue),
|
|
11
11
|
key: "linear-get-issue",
|
|
12
12
|
description: "Get an issue by ID (OAuth). See the docs [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api)",
|
|
13
|
-
version: "0.1.
|
|
13
|
+
version: "0.1.8",
|
|
14
14
|
};
|
|
15
15
|
|
|
@@ -9,7 +9,7 @@ export default {
|
|
|
9
9
|
...getTeams,
|
|
10
10
|
key: "linear-get-teams",
|
|
11
11
|
description: "Get all the teams (OAuth). See the docs [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api#creating-and-editing-issues)",
|
|
12
|
-
version: "0.2.
|
|
12
|
+
version: "0.2.8",
|
|
13
13
|
props: {
|
|
14
14
|
linearApp,
|
|
15
15
|
},
|
|
@@ -10,6 +10,6 @@ export default {
|
|
|
10
10
|
...utils.getAppProps(searchIssues),
|
|
11
11
|
key: "linear-search-issues",
|
|
12
12
|
description: "Search issues (OAuth). See the docs [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api)",
|
|
13
|
-
version: "0.2.
|
|
13
|
+
version: "0.2.8",
|
|
14
14
|
};
|
|
15
15
|
|
|
@@ -9,6 +9,6 @@ export default {
|
|
|
9
9
|
...utils.getAppProps(updateIssue),
|
|
10
10
|
key: "linear-update-issue",
|
|
11
11
|
description: "Update an issue (OAuth). See the docs [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api#creating-and-editing-issues)",
|
|
12
|
-
version: "0.1.
|
|
12
|
+
version: "0.1.8",
|
|
13
13
|
};
|
|
14
14
|
|
package/linear.app.mjs
CHANGED
|
@@ -1,8 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
import linearApp from "../linear_app/linear_app.app.mjs";
|
|
3
|
-
|
|
4
|
-
// TODO: Will update above statement to import from @pipedream/linear_app
|
|
5
|
-
// after updates to linear_app are published
|
|
1
|
+
import linearApp from "@pipedream/linear_app";
|
|
6
2
|
|
|
7
3
|
export default {
|
|
8
4
|
...linearApp,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pipedream/linear",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.1",
|
|
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.6.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: "Emit new event when a new comment is created (OAuth). [See the documentation](https://developers.linear.app/docs/graphql/webhooks)",
|
|
13
|
-
version: "0.1.
|
|
13
|
+
version: "0.1.10",
|
|
14
14
|
};
|
|
@@ -10,5 +10,5 @@ export default {
|
|
|
10
10
|
...utils.getAppProps(issueCreatedInstant),
|
|
11
11
|
key: "linear-issue-created-instant",
|
|
12
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.
|
|
13
|
+
version: "0.3.10",
|
|
14
14
|
};
|
|
@@ -10,5 +10,5 @@ export default {
|
|
|
10
10
|
...utils.getAppProps(issueUpdatedInstant),
|
|
11
11
|
key: "linear-issue-updated-instant",
|
|
12
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.
|
|
13
|
+
version: "0.3.10",
|
|
14
14
|
};
|
|
@@ -10,5 +10,5 @@ export default {
|
|
|
10
10
|
...utils.getAppProps(newIssueStatusUpdated),
|
|
11
11
|
key: "linear-new-issue-status-updated",
|
|
12
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.
|
|
13
|
+
version: "0.1.10",
|
|
14
14
|
};
|
|
@@ -1,9 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
//"@pipedream/linear_app/sources/project-updated-instant/project-updated-instant.mjs";
|
|
3
|
-
import projectUpdatedInstant from "../../../linear_app/sources/project-updated-instant/project-updated-instant.mjs";
|
|
4
|
-
|
|
5
|
-
// TODO: Will update above statement to import from @pipedream/linear_app
|
|
6
|
-
// after updates to linear_app are published
|
|
1
|
+
import projectUpdatedInstant from "@pipedream/linear_app/sources/project-updated-instant/project-updated-instant.mjs";
|
|
7
2
|
|
|
8
3
|
import utils from "../../common/utils.mjs";
|
|
9
4
|
|
|
@@ -16,5 +11,5 @@ export default {
|
|
|
16
11
|
...utils.getAppProps(projectUpdatedInstant),
|
|
17
12
|
key: "linear-project-updated-instant",
|
|
18
13
|
description: "Emit new event when a project is updated (OAuth). [See the documentation](https://developers.linear.app/docs/graphql/webhooks)",
|
|
19
|
-
version: "0.0.
|
|
14
|
+
version: "0.0.2",
|
|
20
15
|
};
|