Skip to content

Commit 827dd7b

Browse files
Fix Linear get-teams action missing limit prop (#17491)
* Fix Linear get-teams action missing limit prop The get-teams action was not properly inheriting props from the parent linear_app component. Added utils.getAppProps() to ensure all props (including limit) are correctly imported. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]> * Update pnpm-lock.yaml --------- Co-authored-by: Claude <[email protected]>
1 parent 886cf86 commit 827dd7b

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed
Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
1-
import linearApp from "../../linear.app.mjs";
21
import getTeams from "@pipedream/linear_app/actions/get-teams/get-teams.mjs";
2+
import utils from "../../common/utils.mjs";
33

44
/* eslint-disable pipedream/required-properties-type */
55
/* eslint-disable pipedream/required-properties-name */
66
/* eslint-disable pipedream/required-properties-version */
77

88
export default {
99
...getTeams,
10+
...utils.getAppProps(getTeams),
1011
key: "linear-get-teams",
1112
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",
1614
};
1715

components/linear/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/linear",
3-
"version": "0.7.2",
3+
"version": "0.7.3",
44
"description": "Pipedream Linear Components",
55
"main": "linear.app.mjs",
66
"keywords": [

pnpm-lock.yaml

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)