@pipedream/linear_app 0.4.2 → 0.4.4
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.
|
@@ -5,7 +5,7 @@ export default {
|
|
|
5
5
|
name: "Update Issue",
|
|
6
6
|
description: "Update an issue (API Key). See the docs [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api#creating-and-editing-issues)",
|
|
7
7
|
type: "action",
|
|
8
|
-
version: "0.0.
|
|
8
|
+
version: "0.0.6",
|
|
9
9
|
props: {
|
|
10
10
|
linearApp,
|
|
11
11
|
issueId: {
|
|
@@ -62,7 +62,7 @@ export default {
|
|
|
62
62
|
},
|
|
63
63
|
});
|
|
64
64
|
|
|
65
|
-
const summary = response.
|
|
65
|
+
const summary = response.success
|
|
66
66
|
? `Updated issue ${response._issue.id}`
|
|
67
67
|
: "Failed to update issue";
|
|
68
68
|
$.export("$summary", summary);
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@ export default {
|
|
|
7
7
|
name: "New Created Comment (Instant)",
|
|
8
8
|
description: "Emit new event when a new comment is created. See the docs [here](https://developers.linear.app/docs/graphql/webhooks)",
|
|
9
9
|
type: "source",
|
|
10
|
-
version: "0.0.
|
|
10
|
+
version: "0.0.5",
|
|
11
11
|
dedupe: "unique",
|
|
12
12
|
methods: {
|
|
13
13
|
...common.methods,
|
|
@@ -27,6 +27,11 @@ export default {
|
|
|
27
27
|
sortBy: "createdAt",
|
|
28
28
|
filter: {
|
|
29
29
|
issue: {
|
|
30
|
+
team: {
|
|
31
|
+
id: {
|
|
32
|
+
in: this.teamIds,
|
|
33
|
+
},
|
|
34
|
+
},
|
|
30
35
|
project: {
|
|
31
36
|
id: {
|
|
32
37
|
eq: this.projectId,
|
|
@@ -7,7 +7,7 @@ export default {
|
|
|
7
7
|
name: "New Created Issue (Instant)",
|
|
8
8
|
description: "Emit new event when a new issue is created. See the docs [here](https://developers.linear.app/docs/graphql/webhooks)",
|
|
9
9
|
type: "source",
|
|
10
|
-
version: "0.2.
|
|
10
|
+
version: "0.2.4",
|
|
11
11
|
dedupe: "unique",
|
|
12
12
|
methods: {
|
|
13
13
|
...common.methods,
|
|
@@ -26,6 +26,11 @@ export default {
|
|
|
26
26
|
return {
|
|
27
27
|
sortBy: "createdAt",
|
|
28
28
|
filter: {
|
|
29
|
+
team: {
|
|
30
|
+
id: {
|
|
31
|
+
in: this.teamIds,
|
|
32
|
+
},
|
|
33
|
+
},
|
|
29
34
|
project: {
|
|
30
35
|
id: {
|
|
31
36
|
eq: this.projectId,
|
|
@@ -7,7 +7,7 @@ export default {
|
|
|
7
7
|
name: "New Updated Issue (Instant)",
|
|
8
8
|
description: "Emit new event when an issue is updated. See the docs [here](https://developers.linear.app/docs/graphql/webhooks)",
|
|
9
9
|
type: "source",
|
|
10
|
-
version: "0.2.
|
|
10
|
+
version: "0.2.4",
|
|
11
11
|
dedupe: "unique",
|
|
12
12
|
methods: {
|
|
13
13
|
...common.methods,
|
|
@@ -26,6 +26,11 @@ export default {
|
|
|
26
26
|
return {
|
|
27
27
|
sortBy: "updatedAt",
|
|
28
28
|
filter: {
|
|
29
|
+
team: {
|
|
30
|
+
id: {
|
|
31
|
+
in: this.teamIds,
|
|
32
|
+
},
|
|
33
|
+
},
|
|
29
34
|
project: {
|
|
30
35
|
id: {
|
|
31
36
|
eq: this.projectId,
|