@pipedream/linear 0.7.2 → 0.7.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.
@@ -1,5 +1,5 @@
1
- import linearApp from "../../linear.app.mjs";
2
1
  import getTeams from "@pipedream/linear_app/actions/get-teams/get-teams.mjs";
2
+ import utils from "../../common/utils.mjs";
3
3
 
4
4
  /* eslint-disable pipedream/required-properties-type */
5
5
  /* eslint-disable pipedream/required-properties-name */
@@ -7,11 +7,9 @@ import getTeams from "@pipedream/linear_app/actions/get-teams/get-teams.mjs";
7
7
 
8
8
  export default {
9
9
  ...getTeams,
10
+ ...utils.getAppProps(getTeams),
10
11
  key: "linear-get-teams",
11
12
  description: "Retrieves all teams in your Linear workspace. Returns array of team objects with details like ID, name, and key. Supports pagination with configurable limit. Uses OAuth authentication. See Linear docs for additional info [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api).",
12
- version: "0.2.10",
13
- props: {
14
- linearApp,
15
- },
13
+ version: "0.2.11",
16
14
  };
17
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/linear",
3
- "version": "0.7.2",
3
+ "version": "0.7.4",
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.7.1",
18
+ "@pipedream/linear_app": "^0.7.3",
19
19
  "@pipedream/platform": "^3.0.3"
20
20
  }
21
21
  }
@@ -11,5 +11,5 @@ export default {
11
11
  ...utils.getAppProps(newProjectUpdateCreated),
12
12
  key: "linear-new-projectupdate-created",
13
13
  description: "Triggers instantly when a project update (status report) is created in Linear. Returns update content, author, project details, and health status. Filters by team and optionally by project. Uses OAuth authentication. See Linear docs for additional info [here](https://developers.linear.app/docs/graphql/webhooks).",
14
- version: "0.0.3",
14
+ version: "0.0.4",
15
15
  };