Skip to content

Commit 602c7da

Browse files
committed
updates
1 parent 017f73f commit 602c7da

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

components/linear/linear.app.mjs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
import linearApp from "@pipedream/linear_app";
1+
//import linearApp from "@pipedream/linear_app";
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
26

37
export default {
48
...linearApp,

components/linear/sources/project-updated-instant/project-updated-instant.mjs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
import projectUpdatedInstant from "@pipedream/linear_app/sources/project-updated-instant/project-updated-instant.mjs";
1+
//import projectUpdatedInstant from
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
7+
28
import utils from "../../common/utils.mjs";
39

410
/* eslint-disable pipedream/required-properties-type */

components/linear_app/common/queries.mjs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,18 @@ export default {
5050
listProjects: `
5151
query ListProjects(
5252
$filter: ProjectFilter,
53+
$before: String,
54+
$after: String,
55+
$first: Int,
56+
$last: Int,
5357
$orderBy: PaginationOrderBy
5458
) {
5559
projects(
5660
filter: $filter,
61+
before: $before,
62+
after: $after,
63+
first: $first,
64+
last: $last,
5765
orderBy: $orderBy
5866
) {
5967
pageInfo {

0 commit comments

Comments
 (0)