@pipedream/linear_app 0.4.2 → 0.4.3

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_app",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "description": "Pipedream Linear_app Components",
5
5
  "main": "linear_app.app.mjs",
6
6
  "keywords": [
@@ -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.4",
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.3",
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.3",
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,