From f392728a46a92e31fdafda11fee80977bb6dd42e Mon Sep 17 00:00:00 2001 From: Michelle Bergeron Date: Tue, 11 Nov 2025 16:50:58 -0500 Subject: [PATCH 1/4] get-accounts-following --- .../get-accounts-following.mjs | 30 +++++++++++++++++++ components/mastodon/mastodon.app.mjs | 7 +++++ components/mastodon/package.json | 4 +-- 3 files changed, 39 insertions(+), 2 deletions(-) create mode 100644 components/mastodon/actions/get-accounts-following/get-accounts-following.mjs diff --git a/components/mastodon/actions/get-accounts-following/get-accounts-following.mjs b/components/mastodon/actions/get-accounts-following/get-accounts-following.mjs new file mode 100644 index 0000000000000..7f1a2b8942d9f --- /dev/null +++ b/components/mastodon/actions/get-accounts-following/get-accounts-following.mjs @@ -0,0 +1,30 @@ +import mastodon from "../../mastodon.app.mjs"; + +export default { + key: "mastodon-get-accounts-following", + name: "Get Accounts Following", + description: "Get the accounts that the given account is following. [See the documentation](https://docs.joinmastodon.org/methods/accounts/#following)", + version: "0.0.1", + type: "action", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, + props: { + mastodon, + max: { + propDefinition: [ + mastodon, + "max", + ], + }, + }, + async run({ $ }) { + const accounts = await this.mastodon.paginate(this.mastodon.getAccountsFollowing, { + $, + }, this.max); + $.export("$summary", `Successfully retrieved ${accounts.length} item(s) from accounts following`); + return accounts; + }, +}; diff --git a/components/mastodon/mastodon.app.mjs b/components/mastodon/mastodon.app.mjs index 281d84a5f80b6..8e8883fd8a07f 100644 --- a/components/mastodon/mastodon.app.mjs +++ b/components/mastodon/mastodon.app.mjs @@ -416,6 +416,13 @@ export default { ...args, }); }, + async getAccountsFollowing(args = {}) { + const { id } = await this.verifyAccountCredentials(); + return this._makeRequest({ + path: `${API_V1}/accounts/${id}/following`, + ...args, + }); + }, async paginate(resourceFn, args, max = DEFAULT_PAGE_SIZE, resourceType = null) { const items = []; let done = false; diff --git a/components/mastodon/package.json b/components/mastodon/package.json index 33c7a8395ac50..faf8a30cd8740 100644 --- a/components/mastodon/package.json +++ b/components/mastodon/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/mastodon", - "version": "0.1.3", + "version": "0.2.0", "description": "Pipedream Mastodon Components", "main": "mastodon.app.mjs", "keywords": [ @@ -13,7 +13,7 @@ "access": "public" }, "dependencies": { - "@pipedream/platform": "^1.6.8", + "@pipedream/platform": "^3.1.1", "axios": "^1.12.0" } } From 581eba7f38f41dab78b7a9b210967da16e4ba915 Mon Sep 17 00:00:00 2001 From: Michelle Bergeron Date: Tue, 11 Nov 2025 16:52:21 -0500 Subject: [PATCH 2/4] pnpm-lock.yaml --- pnpm-lock.yaml | 25 ++++++++++--------------- 1 file changed, 10 insertions(+), 15 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 292b611f31cd8..d748eec4e9fae 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -4587,8 +4587,7 @@ importers: specifier: ^3.1.1 version: 3.1.1 - components/elastic_security: - specifiers: {} + components/elastic_security: {} components/elasticemail: {} @@ -8795,8 +8794,8 @@ importers: components/mastodon: dependencies: '@pipedream/platform': - specifier: ^1.6.8 - version: 1.6.8 + specifier: ^3.1.1 + version: 3.1.1 axios: specifier: ^1.13.2 version: 1.13.2(debug@3.2.7) @@ -11434,8 +11433,7 @@ importers: components/postmaster: {} - components/postnitro: - specifiers: {} + components/postnitro: {} components/postnl: dependencies: @@ -12068,8 +12066,7 @@ importers: specifier: ^3.24.0 version: 3.30.0 - components/redash: - specifiers: {} + components/redash: {} components/redcircle_api: dependencies: @@ -14253,11 +14250,9 @@ importers: specifier: ^1.6.8 version: 1.6.8 - components/straico: - specifiers: {} + components/straico: {} - components/straker_verify: - specifiers: {} + components/straker_verify: {} components/strapi: {} @@ -31575,17 +31570,17 @@ packages: superagent@3.8.1: resolution: {integrity: sha512-VMBFLYgFuRdfeNQSMLbxGSLfmXL/xc+OO+BZp41Za/NRDBet/BNbkRJrYzCUu0u4GU0i/ml2dtT8b9qgkw9z6Q==} engines: {node: '>= 4.0'} - deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net + deprecated: Please upgrade to superagent v10.2.2+, see release notes at https://github.com/forwardemail/superagent/releases/tag/v10.2.2 - maintenance is supported by Forward Email @ https://forwardemail.net superagent@4.1.0: resolution: {integrity: sha512-FT3QLMasz0YyCd4uIi5HNe+3t/onxMyEho7C3PSqmti3Twgy2rXT4fmkTz6wRL6bTF4uzPcfkUCa8u4JWHw8Ag==} engines: {node: '>= 6.0'} - deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net + deprecated: Please upgrade to superagent v10.2.2+, see release notes at https://github.com/forwardemail/superagent/releases/tag/v10.2.2 - maintenance is supported by Forward Email @ https://forwardemail.net superagent@5.3.1: resolution: {integrity: sha512-wjJ/MoTid2/RuGCOFtlacyGNxN9QLMgcpYLDQlWFIhhdJ93kNscFonGvrpAHSCVjRVj++DGCglocF7Aej1KHvQ==} engines: {node: '>= 7.0.0'} - deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net + deprecated: Please upgrade to superagent v10.2.2+, see release notes at https://github.com/forwardemail/superagent/releases/tag/v10.2.2 - maintenance is supported by Forward Email @ https://forwardemail.net supports-color@10.0.0: resolution: {integrity: sha512-HRVVSbCCMbj7/kdWF9Q+bbckjBHLtHMEoJWlkmYzzdwhYMkjkOwubLM6t7NbWKjgKamGDrWL1++KrjUO1t9oAQ==} From f48811c6ec6486033256cb39c1f019c7dcc51668 Mon Sep 17 00:00:00 2001 From: Michelle Bergeron Date: Tue, 11 Nov 2025 16:55:37 -0500 Subject: [PATCH 3/4] versions --- components/mastodon/actions/bookmark-status/bookmark-status.mjs | 2 +- components/mastodon/actions/boost-status/boost-status.mjs | 2 +- components/mastodon/actions/delete-status/delete-status.mjs | 2 +- components/mastodon/actions/edit-status/edit-status.mjs | 2 +- components/mastodon/actions/favorite-status/favorite-status.mjs | 2 +- .../mastodon/actions/mute-conversation/mute-conversation.mjs | 2 +- components/mastodon/actions/perform-search/perform-search.mjs | 2 +- components/mastodon/actions/pin-status/pin-status.mjs | 2 +- .../actions/post-multiple-statuses/post-multiple-statuses.mjs | 2 +- components/mastodon/actions/post-status/post-status.mjs | 2 +- .../mastodon/actions/unbookmark-status/unbookmark-status.mjs | 2 +- components/mastodon/actions/unboost-status/unboost-status.mjs | 2 +- .../mastodon/actions/unfavorite-status/unfavorite-status.mjs | 2 +- .../actions/unmute-conversation/unmute-conversation.mjs | 2 +- components/mastodon/actions/unpin-status/unpin-status.mjs | 2 +- .../actions/view-hashtag-timeline/view-hashtag-timeline.mjs | 2 +- .../mastodon/actions/view-home-timeline/view-home-timeline.mjs | 2 +- .../mastodon/actions/view-list-timeline/view-list-timeline.mjs | 2 +- .../actions/view-public-timeline/view-public-timeline.mjs | 2 +- .../mastodon/actions/view-single-status/view-single-status.mjs | 2 +- components/mastodon/sources/new-bookmark/new-bookmark.mjs | 2 +- .../mastodon/sources/new-status-boosted/new-status-boosted.mjs | 2 +- .../sources/new-status-favorited/new-status-favorited.mjs | 2 +- components/mastodon/sources/new-status/new-status.mjs | 2 +- 24 files changed, 24 insertions(+), 24 deletions(-) diff --git a/components/mastodon/actions/bookmark-status/bookmark-status.mjs b/components/mastodon/actions/bookmark-status/bookmark-status.mjs index c43d1378a3f6f..6c92d60fee4c3 100644 --- a/components/mastodon/actions/bookmark-status/bookmark-status.mjs +++ b/components/mastodon/actions/bookmark-status/bookmark-status.mjs @@ -4,7 +4,7 @@ export default { key: "mastodon-bookmark-status", name: "Bookmark Status", description: "Privately bookmark a status. [See the docs here](https://docs.joinmastodon.org/methods/statuses/#bookmark)", - version: "0.0.2", + version: "0.0.3", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/mastodon/actions/boost-status/boost-status.mjs b/components/mastodon/actions/boost-status/boost-status.mjs index 95b93c1867282..fca0769a400f4 100644 --- a/components/mastodon/actions/boost-status/boost-status.mjs +++ b/components/mastodon/actions/boost-status/boost-status.mjs @@ -4,7 +4,7 @@ export default { key: "mastodon-boost-status", name: "Boost Status", description: "Reshare a status on your own profile. [See the docs here](https://docs.joinmastodon.org/methods/statuses/#boost)", - version: "0.0.2", + version: "0.0.3", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/mastodon/actions/delete-status/delete-status.mjs b/components/mastodon/actions/delete-status/delete-status.mjs index b8a1551fde270..42cd5f3a45e0b 100644 --- a/components/mastodon/actions/delete-status/delete-status.mjs +++ b/components/mastodon/actions/delete-status/delete-status.mjs @@ -4,7 +4,7 @@ export default { key: "mastodon-delete-status", name: "Delete Status", description: "Delete one of your own statuses. [See the docs here](https://docs.joinmastodon.org/methods/statuses/#delete)", - version: "0.0.2", + version: "0.0.3", annotations: { destructiveHint: true, openWorldHint: true, diff --git a/components/mastodon/actions/edit-status/edit-status.mjs b/components/mastodon/actions/edit-status/edit-status.mjs index 20d605bed98aa..58cc4a3ac0833 100644 --- a/components/mastodon/actions/edit-status/edit-status.mjs +++ b/components/mastodon/actions/edit-status/edit-status.mjs @@ -4,7 +4,7 @@ export default { key: "mastodon-edit-status", name: "Edit Status", description: "Edit a given status to change its text or sensitivity. [See the docs here](https://docs.joinmastodon.org/methods/statuses/#edit)", - version: "0.0.2", + version: "0.0.3", annotations: { destructiveHint: true, openWorldHint: true, diff --git a/components/mastodon/actions/favorite-status/favorite-status.mjs b/components/mastodon/actions/favorite-status/favorite-status.mjs index 6550dce044f15..4ffb3e2ba9423 100644 --- a/components/mastodon/actions/favorite-status/favorite-status.mjs +++ b/components/mastodon/actions/favorite-status/favorite-status.mjs @@ -4,7 +4,7 @@ export default { key: "mastodon-favorite-status", name: "Favorite Status", description: "Add a status to your favourites list. [See the docs here](https://docs.joinmastodon.org/methods/statuses/#favourite)", - version: "0.0.2", + version: "0.0.3", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/mastodon/actions/mute-conversation/mute-conversation.mjs b/components/mastodon/actions/mute-conversation/mute-conversation.mjs index e84d78a7bbb5b..54b7a33d73dff 100644 --- a/components/mastodon/actions/mute-conversation/mute-conversation.mjs +++ b/components/mastodon/actions/mute-conversation/mute-conversation.mjs @@ -4,7 +4,7 @@ export default { key: "mastodon-mute-conversation", name: "Mute Conversation", description: "Do not receive notifications for the thread that this status is part of. Must be a thread in which you are a participant. [See the docs here](https://docs.joinmastodon.org/methods/statuses/#mute)", - version: "0.0.2", + version: "0.0.3", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/mastodon/actions/perform-search/perform-search.mjs b/components/mastodon/actions/perform-search/perform-search.mjs index 65a91f9a12914..6c32503ae4c54 100644 --- a/components/mastodon/actions/perform-search/perform-search.mjs +++ b/components/mastodon/actions/perform-search/perform-search.mjs @@ -5,7 +5,7 @@ export default { key: "mastodon-perform-search", name: "Perform Search", description: "Search for content in accounts, statuses or hashtags. [See the docs here](https://docs.joinmastodon.org/methods/search/#v2)", - version: "0.0.2", + version: "0.0.3", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/mastodon/actions/pin-status/pin-status.mjs b/components/mastodon/actions/pin-status/pin-status.mjs index 66cfadae29729..546cc686b83ff 100644 --- a/components/mastodon/actions/pin-status/pin-status.mjs +++ b/components/mastodon/actions/pin-status/pin-status.mjs @@ -4,7 +4,7 @@ export default { key: "mastodon-pin-status", name: "Pin Status to Profile", description: "Feature one of your own public statuses at the top of your profile. [See the docs here](https://docs.joinmastodon.org/methods/statuses/#pin)", - version: "0.0.2", + version: "0.0.3", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/mastodon/actions/post-multiple-statuses/post-multiple-statuses.mjs b/components/mastodon/actions/post-multiple-statuses/post-multiple-statuses.mjs index e9f22c3ff21ab..9eb742cad14fa 100644 --- a/components/mastodon/actions/post-multiple-statuses/post-multiple-statuses.mjs +++ b/components/mastodon/actions/post-multiple-statuses/post-multiple-statuses.mjs @@ -6,7 +6,7 @@ export default { key: "mastodon-post-multiple-statuses", name: "Post Multiple Statuses", description: "Publish multiple statuses with the given parameters, the subsequent statuses will be posted as a reply of of the first status. [See the documentation](https://docs.joinmastodon.org/methods/statuses/#create)", - version: "0.0.3", + version: "0.0.4", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/mastodon/actions/post-status/post-status.mjs b/components/mastodon/actions/post-status/post-status.mjs index 9d2f26fdca4f9..14bc44668806e 100644 --- a/components/mastodon/actions/post-status/post-status.mjs +++ b/components/mastodon/actions/post-status/post-status.mjs @@ -5,7 +5,7 @@ export default { key: "mastodon-post-status", name: "Post Status", description: "Publish a status with the given parameters. [See the documentation](https://docs.joinmastodon.org/methods/statuses/#create)", - version: "0.0.4", + version: "0.0.5", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/mastodon/actions/unbookmark-status/unbookmark-status.mjs b/components/mastodon/actions/unbookmark-status/unbookmark-status.mjs index a71513c9e3a15..780d34ea5a79d 100644 --- a/components/mastodon/actions/unbookmark-status/unbookmark-status.mjs +++ b/components/mastodon/actions/unbookmark-status/unbookmark-status.mjs @@ -4,7 +4,7 @@ export default { key: "mastodon-unbookmark-status", name: "Undo Bookmark of a Status", description: "Remove a status from your private bookmarks. [See the docs here](https://docs.joinmastodon.org/methods/statuses/#unbookmark)", - version: "0.0.2", + version: "0.0.3", annotations: { destructiveHint: true, openWorldHint: true, diff --git a/components/mastodon/actions/unboost-status/unboost-status.mjs b/components/mastodon/actions/unboost-status/unboost-status.mjs index d38e5829b3f9b..653b2ba0f90ae 100644 --- a/components/mastodon/actions/unboost-status/unboost-status.mjs +++ b/components/mastodon/actions/unboost-status/unboost-status.mjs @@ -4,7 +4,7 @@ export default { key: "mastodon-unboost-status", name: "Undo Boost of a Status", description: "Undo a reshare of a status. [See the docs here](https://docs.joinmastodon.org/methods/statuses/#unreblog)", - version: "0.0.2", + version: "0.0.3", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/mastodon/actions/unfavorite-status/unfavorite-status.mjs b/components/mastodon/actions/unfavorite-status/unfavorite-status.mjs index cf1139dc1aad9..c014f419b2bd9 100644 --- a/components/mastodon/actions/unfavorite-status/unfavorite-status.mjs +++ b/components/mastodon/actions/unfavorite-status/unfavorite-status.mjs @@ -4,7 +4,7 @@ export default { key: "mastodon-unfavorite-status", name: "Undo Favorite of a Status", description: "Remove a status from your favourites list.. [See the docs here](https://docs.joinmastodon.org/methods/statuses/#unfavourite)", - version: "0.0.2", + version: "0.0.3", annotations: { destructiveHint: true, openWorldHint: true, diff --git a/components/mastodon/actions/unmute-conversation/unmute-conversation.mjs b/components/mastodon/actions/unmute-conversation/unmute-conversation.mjs index 1f513713bd577..402da7cbbfe98 100644 --- a/components/mastodon/actions/unmute-conversation/unmute-conversation.mjs +++ b/components/mastodon/actions/unmute-conversation/unmute-conversation.mjs @@ -4,7 +4,7 @@ export default { key: "mastodon-unmute-conversation", name: "Unmute a Conversation", description: "Start receiving notifications again for the thread that this status is part of. [See the docs here](https://docs.joinmastodon.org/methods/statuses/#unmute)", - version: "0.0.2", + version: "0.0.3", annotations: { destructiveHint: true, openWorldHint: true, diff --git a/components/mastodon/actions/unpin-status/unpin-status.mjs b/components/mastodon/actions/unpin-status/unpin-status.mjs index 51576053bf558..2302dbebd00d4 100644 --- a/components/mastodon/actions/unpin-status/unpin-status.mjs +++ b/components/mastodon/actions/unpin-status/unpin-status.mjs @@ -4,7 +4,7 @@ export default { key: "mastodon-unpin-status", name: "Unpin Status from Profile", description: "Unfeature a status from the top of your profile. [See the docs here](https://docs.joinmastodon.org/methods/statuses/#unpin)", - version: "0.0.2", + version: "0.0.3", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/mastodon/actions/view-hashtag-timeline/view-hashtag-timeline.mjs b/components/mastodon/actions/view-hashtag-timeline/view-hashtag-timeline.mjs index 194ddcddf4641..f7d2e31b042e4 100644 --- a/components/mastodon/actions/view-hashtag-timeline/view-hashtag-timeline.mjs +++ b/components/mastodon/actions/view-hashtag-timeline/view-hashtag-timeline.mjs @@ -4,7 +4,7 @@ export default { key: "mastodon-view-hashtag-timeline", name: "View Hashtag Timeline", description: "View public statuses containing the given hashtag. [See the docs here](https://docs.joinmastodon.org/methods/timelines/#tag)", - version: "0.0.2", + version: "0.0.3", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/mastodon/actions/view-home-timeline/view-home-timeline.mjs b/components/mastodon/actions/view-home-timeline/view-home-timeline.mjs index 132ee13a5bbfe..78910cebc06ea 100644 --- a/components/mastodon/actions/view-home-timeline/view-home-timeline.mjs +++ b/components/mastodon/actions/view-home-timeline/view-home-timeline.mjs @@ -4,7 +4,7 @@ export default { key: "mastodon-view-home-timeline", name: "View Home Timeline", description: "View statuses from followed users. [See the docs here](https://docs.joinmastodon.org/methods/timelines/#home)", - version: "0.0.2", + version: "0.0.3", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/mastodon/actions/view-list-timeline/view-list-timeline.mjs b/components/mastodon/actions/view-list-timeline/view-list-timeline.mjs index 82cc936272aba..4f3ca3a47e27f 100644 --- a/components/mastodon/actions/view-list-timeline/view-list-timeline.mjs +++ b/components/mastodon/actions/view-list-timeline/view-list-timeline.mjs @@ -4,7 +4,7 @@ export default { key: "mastodon-view-list-timeline", name: "View List Timeline", description: "View statuses in the given list timeline. [See the docs here](https://docs.joinmastodon.org/methods/timelines/#list)", - version: "0.0.2", + version: "0.0.3", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/mastodon/actions/view-public-timeline/view-public-timeline.mjs b/components/mastodon/actions/view-public-timeline/view-public-timeline.mjs index c5224518cebd4..447fa905f98ae 100644 --- a/components/mastodon/actions/view-public-timeline/view-public-timeline.mjs +++ b/components/mastodon/actions/view-public-timeline/view-public-timeline.mjs @@ -4,7 +4,7 @@ export default { key: "mastodon-view-public-timeline", name: "View Public Timeline", description: "View public statuses. [See the docs here](https://docs.joinmastodon.org/methods/timelines/#public)", - version: "0.0.2", + version: "0.0.3", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/mastodon/actions/view-single-status/view-single-status.mjs b/components/mastodon/actions/view-single-status/view-single-status.mjs index 2653a5e1af391..184987a51353e 100644 --- a/components/mastodon/actions/view-single-status/view-single-status.mjs +++ b/components/mastodon/actions/view-single-status/view-single-status.mjs @@ -4,7 +4,7 @@ export default { key: "mastodon-view-single-status", name: "View Single Status", description: "Obtain information about a status. [See the docs here](https://docs.joinmastodon.org/methods/statuses/#get)", - version: "0.0.2", + version: "0.0.3", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/mastodon/sources/new-bookmark/new-bookmark.mjs b/components/mastodon/sources/new-bookmark/new-bookmark.mjs index 7081b0792c455..2605307ad4d55 100644 --- a/components/mastodon/sources/new-bookmark/new-bookmark.mjs +++ b/components/mastodon/sources/new-bookmark/new-bookmark.mjs @@ -5,7 +5,7 @@ export default { key: "mastodon-new-bookmark", name: "New Status Bookmarked", description: "Emit new event when the specified status is bookmarked. [See the docs here](https://docs.joinmastodon.org/methods/bookmarks/)", - version: "0.0.1", + version: "0.0.2", type: "source", dedupe: "unique", methods: { diff --git a/components/mastodon/sources/new-status-boosted/new-status-boosted.mjs b/components/mastodon/sources/new-status-boosted/new-status-boosted.mjs index e2fb8868e473e..b0df926aabc97 100644 --- a/components/mastodon/sources/new-status-boosted/new-status-boosted.mjs +++ b/components/mastodon/sources/new-status-boosted/new-status-boosted.mjs @@ -5,7 +5,7 @@ export default { key: "mastodon-new-status-boosted", name: "New Status Boosted", description: "Emit new event when the specified status is boosted. [See the docs here](https://docs.joinmastodon.org/methods/statuses/#reblogged_by)", - version: "0.0.1", + version: "0.0.2", type: "source", dedupe: "unique", props: { diff --git a/components/mastodon/sources/new-status-favorited/new-status-favorited.mjs b/components/mastodon/sources/new-status-favorited/new-status-favorited.mjs index fe4c94c8955de..a7e5315bb298f 100644 --- a/components/mastodon/sources/new-status-favorited/new-status-favorited.mjs +++ b/components/mastodon/sources/new-status-favorited/new-status-favorited.mjs @@ -5,7 +5,7 @@ export default { key: "mastodon-new-status-favorited", name: "New Status Favorited", description: "Emit new event when the specified status is favorited. [See the docs here](https://docs.joinmastodon.org/methods/statuses/#favourited_by)", - version: "0.0.1", + version: "0.0.2", type: "source", dedupe: "unique", props: { diff --git a/components/mastodon/sources/new-status/new-status.mjs b/components/mastodon/sources/new-status/new-status.mjs index f8a340707988c..e6cd0e3e0b650 100644 --- a/components/mastodon/sources/new-status/new-status.mjs +++ b/components/mastodon/sources/new-status/new-status.mjs @@ -5,7 +5,7 @@ export default { key: "mastodon-new-status", name: "New Status", description: "Emit new event when a new status is posted to your Profile. [See the docs here](https://docs.joinmastodon.org/methods/accounts/#statuses)", - version: "0.0.1", + version: "0.0.2", type: "source", dedupe: "unique", hooks: { From 882867183034ce15e0ab483e7ce2a254a57e7a5a Mon Sep 17 00:00:00 2001 From: Michelle Bergeron Date: Tue, 11 Nov 2025 17:03:40 -0500 Subject: [PATCH 4/4] update summary --- .../actions/get-accounts-following/get-accounts-following.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/mastodon/actions/get-accounts-following/get-accounts-following.mjs b/components/mastodon/actions/get-accounts-following/get-accounts-following.mjs index 7f1a2b8942d9f..a50dfcb0a55fc 100644 --- a/components/mastodon/actions/get-accounts-following/get-accounts-following.mjs +++ b/components/mastodon/actions/get-accounts-following/get-accounts-following.mjs @@ -24,7 +24,7 @@ export default { const accounts = await this.mastodon.paginate(this.mastodon.getAccountsFollowing, { $, }, this.max); - $.export("$summary", `Successfully retrieved ${accounts.length} item(s) from accounts following`); + $.export("$summary", `Successfully retrieved ${accounts.length} account(s) that the user is following`); return accounts; }, };