diff --git a/components/linear/actions/create-issue/create-issue.mjs b/components/linear/actions/create-issue/create-issue.mjs index 1d951b5d47f50..bec238de468bf 100644 --- a/components/linear/actions/create-issue/create-issue.mjs +++ b/components/linear/actions/create-issue/create-issue.mjs @@ -10,6 +10,6 @@ export default { ...utils.getAppProps(createIssue), key: "linear-create-issue", description: "Create an issue (OAuth). See the docs [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api#creating-and-editing-issues)", - version: "0.4.7", + version: "0.4.8", }; diff --git a/components/linear/actions/get-issue/get-issue.mjs b/components/linear/actions/get-issue/get-issue.mjs index b6f02c00ec70e..72f5a6d0ef1b8 100644 --- a/components/linear/actions/get-issue/get-issue.mjs +++ b/components/linear/actions/get-issue/get-issue.mjs @@ -10,6 +10,6 @@ export default { ...utils.getAppProps(getIssue), key: "linear-get-issue", description: "Get an issue by ID (OAuth). See the docs [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api)", - version: "0.1.7", + version: "0.1.8", }; diff --git a/components/linear/actions/get-teams/get-teams.mjs b/components/linear/actions/get-teams/get-teams.mjs index ba19faafcc6fd..e65f61fe61a4c 100644 --- a/components/linear/actions/get-teams/get-teams.mjs +++ b/components/linear/actions/get-teams/get-teams.mjs @@ -9,7 +9,7 @@ export default { ...getTeams, key: "linear-get-teams", description: "Get all the teams (OAuth). See the docs [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api#creating-and-editing-issues)", - version: "0.2.7", + version: "0.2.8", props: { linearApp, }, diff --git a/components/linear/actions/search-issues/search-issues.mjs b/components/linear/actions/search-issues/search-issues.mjs index 07e6e97231625..93425cb708ec8 100644 --- a/components/linear/actions/search-issues/search-issues.mjs +++ b/components/linear/actions/search-issues/search-issues.mjs @@ -10,6 +10,6 @@ export default { ...utils.getAppProps(searchIssues), key: "linear-search-issues", description: "Search issues (OAuth). See the docs [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api)", - version: "0.2.7", + version: "0.2.8", }; diff --git a/components/linear/actions/update-issue/update-issue.mjs b/components/linear/actions/update-issue/update-issue.mjs index 6a8ab9feaf37c..9efe19561ca80 100644 --- a/components/linear/actions/update-issue/update-issue.mjs +++ b/components/linear/actions/update-issue/update-issue.mjs @@ -9,6 +9,6 @@ export default { ...utils.getAppProps(updateIssue), key: "linear-update-issue", description: "Update an issue (OAuth). See the docs [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api#creating-and-editing-issues)", - version: "0.1.7", + version: "0.1.8", }; diff --git a/components/linear/linear.app.mjs b/components/linear/linear.app.mjs index 4952da76a7d15..c706602638eef 100644 --- a/components/linear/linear.app.mjs +++ b/components/linear/linear.app.mjs @@ -1,8 +1,4 @@ -//import linearApp from "@pipedream/linear_app"; -import linearApp from "../linear_app/linear_app.app.mjs"; - -// TODO: Will update above statement to import from @pipedream/linear_app -// after updates to linear_app are published +import linearApp from "@pipedream/linear_app"; export default { ...linearApp, diff --git a/components/linear/package.json b/components/linear/package.json index cb7907068d2d4..504a14bf2da44 100644 --- a/components/linear/package.json +++ b/components/linear/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/linear", - "version": "0.6.0", + "version": "0.6.1", "description": "Pipedream Linear Components", "main": "linear.app.mjs", "keywords": [ @@ -15,7 +15,7 @@ }, "dependencies": { "@linear/sdk": "^13.0.0", - "@pipedream/linear_app": "^0.5.7", + "@pipedream/linear_app": "^0.6.0", "@pipedream/platform": "^3.0.3" } } diff --git a/components/linear/sources/comment-created-instant/comment-created-instant.mjs b/components/linear/sources/comment-created-instant/comment-created-instant.mjs index 456e8b1b1fbeb..c75eac4358286 100644 --- a/components/linear/sources/comment-created-instant/comment-created-instant.mjs +++ b/components/linear/sources/comment-created-instant/comment-created-instant.mjs @@ -10,5 +10,5 @@ export default { ...utils.getAppProps(commentCreatedInstant), key: "linear-comment-created-instant", description: "Emit new event when a new comment is created (OAuth). [See the documentation](https://developers.linear.app/docs/graphql/webhooks)", - version: "0.1.9", + version: "0.1.10", }; diff --git a/components/linear/sources/issue-created-instant/issue-created-instant.mjs b/components/linear/sources/issue-created-instant/issue-created-instant.mjs index c6b0910004e36..aeeb2a41cedba 100644 --- a/components/linear/sources/issue-created-instant/issue-created-instant.mjs +++ b/components/linear/sources/issue-created-instant/issue-created-instant.mjs @@ -10,5 +10,5 @@ export default { ...utils.getAppProps(issueCreatedInstant), key: "linear-issue-created-instant", description: "Emit new event when a new issue is created (OAuth). [See the documentation](https://developers.linear.app/docs/graphql/webhooks)", - version: "0.3.9", + version: "0.3.10", }; diff --git a/components/linear/sources/issue-updated-instant/issue-updated-instant.mjs b/components/linear/sources/issue-updated-instant/issue-updated-instant.mjs index ec6712f06f8ba..a3425729790f0 100644 --- a/components/linear/sources/issue-updated-instant/issue-updated-instant.mjs +++ b/components/linear/sources/issue-updated-instant/issue-updated-instant.mjs @@ -10,5 +10,5 @@ export default { ...utils.getAppProps(issueUpdatedInstant), key: "linear-issue-updated-instant", description: "Emit new event when an issue is updated (OAuth). See the documentation](https://developers.linear.app/docs/graphql/webhooks)", - version: "0.3.9", + version: "0.3.10", }; diff --git a/components/linear/sources/new-issue-status-updated/new-issue-status-updated.mjs b/components/linear/sources/new-issue-status-updated/new-issue-status-updated.mjs index e7a5b11008afc..62fc359642764 100644 --- a/components/linear/sources/new-issue-status-updated/new-issue-status-updated.mjs +++ b/components/linear/sources/new-issue-status-updated/new-issue-status-updated.mjs @@ -10,5 +10,5 @@ export default { ...utils.getAppProps(newIssueStatusUpdated), key: "linear-new-issue-status-updated", description: "Emit new event when the status of an issue is updated (OAuth). [See the documentation](https://developers.linear.app/docs/graphql/webhooks)", - version: "0.1.9", + version: "0.1.10", }; diff --git a/components/linear/sources/project-updated-instant/project-updated-instant.mjs b/components/linear/sources/project-updated-instant/project-updated-instant.mjs index 27cb7361f408b..e22b921744506 100644 --- a/components/linear/sources/project-updated-instant/project-updated-instant.mjs +++ b/components/linear/sources/project-updated-instant/project-updated-instant.mjs @@ -1,9 +1,4 @@ -//import projectUpdatedInstant from -//"@pipedream/linear_app/sources/project-updated-instant/project-updated-instant.mjs"; -import projectUpdatedInstant from "../../../linear_app/sources/project-updated-instant/project-updated-instant.mjs"; - -// TODO: Will update above statement to import from @pipedream/linear_app -// after updates to linear_app are published +import projectUpdatedInstant from "@pipedream/linear_app/sources/project-updated-instant/project-updated-instant.mjs"; import utils from "../../common/utils.mjs"; @@ -16,5 +11,5 @@ export default { ...utils.getAppProps(projectUpdatedInstant), key: "linear-project-updated-instant", description: "Emit new event when a project is updated (OAuth). [See the documentation](https://developers.linear.app/docs/graphql/webhooks)", - version: "0.0.1", + version: "0.0.2", }; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ca391384a140c..cddfaa8cfccb1 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -5848,8 +5848,8 @@ importers: specifier: ^13.0.0 version: 13.0.0 '@pipedream/linear_app': - specifier: ^0.5.7 - version: 0.5.7 + specifier: ^0.6.0 + version: 0.6.0 '@pipedream/platform': specifier: ^3.0.3 version: 3.0.3 @@ -9592,8 +9592,7 @@ importers: components/showpad: {} - components/shutterstock: - specifiers: {} + components/shutterstock: {} components/sidetracker: {} @@ -15172,8 +15171,8 @@ packages: '@pipedream/helpers@1.3.12': resolution: {integrity: sha512-k305RiFddUBtKY11V9G2aqYD8ICgarHV+A0Isxh0j3il4asnht0q4+t6ykPOb+hl5uo9UV8WY+9eAWlj6VFt6Q==} - '@pipedream/linear_app@0.5.7': - resolution: {integrity: sha512-QiHmFSOwWhchNPCIjjk/psmfQ61SVPuvHACLtmE6DOeJkYFJIM2yliNo9Ks/Psc8iVFrHhJc00h33fFIw3CVsA==} + '@pipedream/linear_app@0.6.0': + resolution: {integrity: sha512-vM5xDIw9xMkNuNAozzbaWuK8NdVKL+AZFkTnea0DDgTcndsBGyX1oY/3PKOrpfqRQ2LtNSb6o089WkxBiI/uNA==} '@pipedream/linkedin@0.1.1': resolution: {integrity: sha512-9pFjaohz/wnJMIRpPmDPqHeWiXUIJVWIPvQudE8TkUjaBbyieDpscy8reWMp96UK9aXz1Z2J2yiNh0msILAX9Q==} @@ -30481,7 +30480,7 @@ snapshots: '@pipedream/types': 0.0.5 lodash-es: 4.17.21 - '@pipedream/linear_app@0.5.7': + '@pipedream/linear_app@0.6.0': dependencies: '@linear/sdk': 13.0.0 '@pipedream/platform': 3.0.3 @@ -31013,6 +31012,8 @@ snapshots: '@putout/operator-filesystem': 5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3)) '@putout/operator-json': 2.2.0 putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3) + transitivePeerDependencies: + - supports-color '@putout/operator-regexp@1.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))': dependencies: