Skip to content
Merged
  •  
  •  
  •  
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "addressfinder-verify-email",
name: "Verify Email",
description: "Validates the input email. [See the documentation](https://addressfinder.com.au/api/email/verification/)",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
Expand Down Expand Up @@ -39,7 +39,7 @@ export default {
value: "connection",
},
{
label: "Email provider - a check that determines the underlaying provider of the email service.",
label: "Email provider - a check that determines the underlying provider of the email service.",
value: "provider",
},
],
Expand Down
2 changes: 1 addition & 1 deletion components/addressfinder/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/addressfinder",
"version": "0.1.0",
"version": "0.1.1",
"description": "Pipedream Addressfinder Components",
"main": "addressfinder.app.mjs",
"keywords": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import app from "../../airmeet.app.mjs";

export default {
name: "Add Authorized Attendee",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
Expand All @@ -22,17 +22,17 @@ export default {
email: {
type: "string",
label: "Email",
description: "Email of the atendee",
description: "Email of the attendee",
},
firstName: {
type: "string",
label: "First name",
description: "First name of the atendee",
description: "First name of the attendee",
},
lastName: {
type: "string",
label: "Last name",
description: "Last name of the atendee",
description: "Last name of the attendee",
},
},
async run({ $ }) {
Expand Down
2 changes: 1 addition & 1 deletion components/airmeet/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/airmeet",
"version": "0.1.0",
"version": "0.1.1",
"description": "Pipedream Airmeet Components",
"main": "airmeet.app.mjs",
"keywords": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import app from "../../alpaca.app.mjs";
export default {
type: "action",
key: "alpaca-get-account-info",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
Expand All @@ -25,7 +25,7 @@ export default {
$,
isPaperAPI: this.isPaperAPI,
});
$.export("$summary", "Account info has been retreived.");
$.export("$summary", "Account info has been retrieved.");
return response;
},
};
2 changes: 1 addition & 1 deletion components/alpaca/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/alpaca",
"version": "0.1.0",
"version": "0.1.1",
"description": "Pipedream Alpaca Components",
"main": "alpaca.app.mjs",
"keywords": [
Expand Down
7 changes: 6 additions & 1 deletion components/bandwidth/actions/send-sms/send-sms.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ module.exports = {
name: "Send SMS",
description: "Send an SMS message using Bandwidth's Messaging API",
type: "action",
version: "1.0.0",
version: "1.0.1",
annotations: {
destructiveHint: false,
openWorldHint: true,
readOnlyHint: false,
},
props: {
bandwidth,
messageTo: {
Expand Down
2 changes: 1 addition & 1 deletion components/bandwidth/bandwidth.app.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module.exports = {
mediaUrl: {
type: "string[]",
label: "Media URL",
description: "Publicly addressible URL of the media you would like to send with the SMS",
description: "Publicly addressable URL of the media you would like to send with the SMS",
},
},
methods: {
Expand Down
2 changes: 1 addition & 1 deletion components/bandwidth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/bandwidth",
"version": "1.0.3",
"version": "1.0.4",
"description": "Pipedream Bandwidth Components",
"main": "bandwidth.app.js",
"keywords": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

module.exports = {
name: "New Incoming SMS",
description: "Emits an event each time a `message-received` event is received at the source url",

Check warning on line 5 in components/bandwidth/sources/new-incoming-sms/new-incoming-sms.js

View workflow job for this annotation

GitHub Actions / Lint Code Base

Source descriptions should start with "Emit new". See https://pipedream.com/docs/components/guidelines/#source-description
key: "bandwidth-new-incoming-sms",
version: "1.1.0",
version: "1.1.1",
type: "source",
props: {
bandwidth,
http: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

module.exports = {
name: "New Outgoing SMS",
description:

Check warning on line 5 in components/bandwidth/sources/new-outgoing-sms/new-outgoing-sms.js

View workflow job for this annotation

GitHub Actions / Lint Code Base

Source descriptions should start with "Emit new". See https://pipedream.com/docs/components/guidelines/#source-description
"Emits an event each time an outbound message status event is received at the source url",
key: "bandwidth-new-outgoing-sms",
version: "1.1.1",
version: "1.1.2",
type: "source",
props: {
bandwidth,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
key: "bloomerang-add-interaction",
name: "Add Interaction",
description: "Adds an interaction to an existing constituent in Bloomerang. [See the documentation](https://bloomerang.co/product/integrations-data-management/api/rest-api/#/Interactions/post_interaction)",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
Expand All @@ -30,18 +30,18 @@ export default {
subject: {
type: "string",
label: "Subject",
description: "The subject od the interation",
description: "The subject of the interaction",
},
channel: {
type: "string",
label: "Channel",
description: "The channel of the interation",
description: "The channel of the interaction",
options: CHANNEL_OPTIONS,
},
purpose: {
type: "string",
label: "Purpose",
description: "The purpose of the interation",
description: "The purpose of the interaction",
options: PURPOSE_OPTIONS,
},
note: {
Expand Down
2 changes: 1 addition & 1 deletion components/bloomerang/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/bloomerang",
"version": "0.1.0",
"version": "0.1.1",
"description": "Pipedream Bloomerang Components",
"main": "bloomerang.app.mjs",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion components/bluesky/actions/create-post/create-post.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
key: "bluesky-create-post",
name: "Create Post",
description: "Creates a new post on Bluesky. [See the documentation](https://docs.bsky.app/docs/api/com-atproto-repo-create-record).",
version: "0.1.1",
version: "0.1.2",
annotations: {
destructiveHint: false,
openWorldHint: true,
Expand Down
2 changes: 1 addition & 1 deletion components/bluesky/actions/like-post/like-post.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
key: "bluesky-like-post",
name: "Like Post",
description: "Like a specific post on Bluesky. [See the documentation](https://docs.bsky.app/docs/api/com-atproto-repo-create-record).",
version: "0.0.3",
version: "0.0.4",
annotations: {
destructiveHint: false,
openWorldHint: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "bluesky-retrieve-thread",
name: "Retrieve Thread",
description: "Retrieve a full thread of posts. [See the documentation](https://docs.bsky.app/docs/api/app-bsky-feed-get-post-thread).",
version: "0.0.3",
version: "0.0.4",
annotations: {
destructiveHint: false,
openWorldHint: true,
Expand Down
2 changes: 1 addition & 1 deletion components/bluesky/common/constants.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const BASE_URL = "https://bsky.social";
const VERSION_PATH = "/xrpc";

const INTERACTION_EVENT = {
REQUES_TLESS: "app.bsky.feed.defs#requestLess",
REQUEST_LESS: "app.bsky.feed.defs#requestLess",
REQUEST_MORE: "app.bsky.feed.defs#requestMore",
CLICK_THROUGH_ITEM: "app.bsky.feed.defs#clickthroughItem",
CLICK_THROUGH_AUTHOR: "app.bsky.feed.defs#clickthroughAuthor",
Expand Down
2 changes: 1 addition & 1 deletion components/bluesky/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/bluesky",
"version": "0.1.2",
"version": "0.1.3",
"description": "Pipedream Bluesky Components",
"main": "bluesky.app.mjs",
"keywords": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
key: "bluesky-new-follower-on-account",
name: "New Follower On Account",
description: "Emit new event when someone follows the specified account. Requires the account ID as a prop to monitor followers for that account. [See the documentation](https://docs.bsky.app/docs/api/app-bsky-graph-get-followers).",
version: "0.0.2",
version: "0.0.3",
type: "source",
dedupe: "unique",
props: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
key: "bluesky-new-posts-by-author",
name: "New Posts By Author",
description: "Emit new event when an author creates a post. Requires the author id as a prop to track posts from a specific author. [See the documentation](https://docs.bsky.app/docs/api/app-bsky-feed-search-posts).",
version: "0.0.2",
version: "0.0.3",
type: "source",
dedupe: "unique",
props: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
key: "bluesky-new-timeline-posts",
name: "New Timeline Posts",
description: "Emit new event when posts appear in the `following` feed. [See the documentation](https://docs.bsky.app/docs/api/app-bsky-feed-get-timeline).",
version: "0.0.2",
version: "0.0.3",
type: "source",
dedupe: "unique",
methods: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
key: "boloforms-send-template-signature",
name: "Send Template Signature",
description: "Dispatch a predefined template to obtain a signature. [See the documentation](https://help.boloforms.com/en/articles/8557564-sending-for-signing)",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
Expand Down Expand Up @@ -40,12 +40,12 @@ export default {
receiversList: {
type: "string[]",
label: "Receivers List",
description: "A list of receiver objects. **Format: {\"name\": \"Chirag Gupta\", \"email\": \"support@boloforms.com\", \"roleTitle\": \"Junior Doctor\", \"roleColour\": \"#8FB1C8\"}** `RoleTitle has to exactly same as the role you added otherwise it will not work properly`. `Give color to your role you can pass any hex code but it's necessary`.",
description: "A list of receiver objects. **Format: {\"name\": \"Chirag Gupta\", \"email\": \"support@boloforms.com\", \"roleTitle\": \"Junior Doctor\", \"roleColour\": \"#8FB1C8\"}** `roleTitle` has to be exactly the same as the role you added or it won't work properly. You can pass a hex code to give a color to your role, but it's not required.",
},
customVariables: {
type: "string[]",
label: "Custom Variables",
description: "A list of custom variable objects. **Format: {\"varName\": \"[v1]\", \"varValue\": \"v1 value from api\" }**. `Variable name has to be in square barckets`. `If you don't pass customVariables then also the call would work, Boloforms will pass each variable as empty.`.",
description: "A list of custom variable objects. **Format: {\"varName\": \"[v1]\", \"varValue\": \"v1 value from api\" }**. The variable name has to be in square brackets. If you don't pass customVariables then the call will still work, Boloforms will pass each variable as empty.",
Comment thread
michelle0927 marked this conversation as resolved.
optional: true,
},
},
Expand Down
2 changes: 1 addition & 1 deletion components/boloforms/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/boloforms",
"version": "0.1.0",
"version": "0.1.1",
"description": "Pipedream Boloforms Components",
"main": "boloforms.app.mjs",
"keywords": [
Expand Down
4 changes: 2 additions & 2 deletions components/clerk/actions/create-user/create-user.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
export default {
key: "clerk-create-user",
name: "Create User",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
Expand Down Expand Up @@ -76,7 +76,7 @@ export default {
passwordHasher: {
type: "string",
label: "Password Hasher",
description: "The hashing algorithm that was used to generate the password digest. The algorithms that Clerk supports at the moment are `bcrypt`, `bcrypt_sha256_django`, `md5`, `pbkdf2_sha256`, `pbkdf2_sha256_django`, `phpass`, `scrypt_firebase` and 2 `argon2` variants, `argon2i` and `argon2id`. Each of the above expects the incoming digest to be of a particular format. [See the documentarion](https://clerk.com/docs/reference/backend-api/tag/Users#operation/CreateUser!path=password_hasher&t=request) for further information.",
description: "The hashing algorithm that was used to generate the password digest. The algorithms that Clerk supports at the moment are `bcrypt`, `bcrypt_sha256_django`, `md5`, `pbkdf2_sha256`, `pbkdf2_sha256_django`, `phpass`, `scrypt_firebase` and 2 `argon2` variants, `argon2i` and `argon2id`. Each of the above expects the incoming digest to be of a particular format. [See the documentation](https://clerk.com/docs/reference/backend-api/tag/Users#operation/CreateUser!path=password_hasher&t=request) for further information.",
optional: true,
},
skipPasswordChecks: {
Expand Down
2 changes: 1 addition & 1 deletion components/clerk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/clerk",
"version": "0.1.0",
"version": "0.1.1",
"description": "Pipedream Clerk Components",
"main": "clerk.app.mjs",
"keywords": [
Expand Down
4 changes: 2 additions & 2 deletions components/click2mail2/actions/create-job/create-job.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
export default {
key: "click2mail2-create-job",
name: "Create Job",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
Expand Down Expand Up @@ -164,7 +164,7 @@ export default {
businessReplyAddressId: {
type: "integer",
label: "Business Reply Address Id",
description: "If you are mailing a business reply mail product use this to specify the busines reply address and permit information already in your account.",
description: "If you are mailing a business reply mail product use this to specify the business reply address and permit information already in your account.",
optional: true,
},
courtesyReplyAddressId: {
Expand Down
2 changes: 1 addition & 1 deletion components/click2mail2/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/click2mail2",
"version": "1.0.3",
"version": "1.0.4",
"description": "Pipedream Click2Mail Components",
"main": "click2mail2.app.mjs",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion components/discord/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Discord and Discord Bot actions and triggers _can_ both:

However the Discord integration will perform actions with the official Pipedream Discord bot.

Using the Discord Bot integration will use a custom bot instead, with it's own name and photo.
Using the Discord Bot integration will use a custom bot instead, with its own name and photo.

### Accounts

Expand Down
2 changes: 1 addition & 1 deletion components/discord_bot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Discord and Discord Bot actions and triggers _can_ both:

However the Discord integration will perform actions with the official Pipedream Discord bot.

Using the Discord Bot integration will use a custom bot instead, with it's own name and photo.
Using the Discord Bot integration will use a custom bot instead, with its own name and photo.

## New Messages in Channel

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default {
name: "Download File to TMP",
description: "Download a specific file to the temporary directory. [See the documentation](https://dropbox.github.io/dropbox-sdk-js/Dropbox.html#filesDownload__anchor).",
key: "dropbox-download-file-to-tmp",
version: "0.0.10",
version: "0.0.11",
annotations: {
destructiveHint: false,
openWorldHint: true,
Expand All @@ -30,7 +30,7 @@ export default {
name: {
type: "string",
label: "File Name",
description: "The new name of the file to be saved, including it's extension. e.g: `myFile.csv`",
description: "The new name of the file to be saved, including its extension. e.g: `myFile.csv`",
optional: true,
},
syncDir: {
Expand Down
2 changes: 1 addition & 1 deletion components/dropbox/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/dropbox",
"version": "1.1.3",
"version": "1.1.4",
"description": "Pipedream Dropbox Components",
"main": "dropbox.app.mjs",
"keywords": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import firefish from "../../firefish.app.mjs";
export default {
key: "firefish-unsubscribe-email",
name: "Unsubscribe Email",
description: "Removes a particular contact or candidate from all existing firefish email subscriptions. [See the documentatio](https://developer.firefishsoftware.com/#002bb8c0-0b41-4016-b33c-026a46b499b2)",
version: "0.0.2",
description: "Removes a particular contact or candidate from all existing firefish email subscriptions. [See the documentation](https://developer.firefishsoftware.com/#002bb8c0-0b41-4016-b33c-026a46b499b2)",
version: "0.0.3",
annotations: {
destructiveHint: true,
openWorldHint: true,
Expand Down
2 changes: 1 addition & 1 deletion components/firefish/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/firefish",
"version": "0.1.0",
"version": "0.1.1",
"description": "Pipedream Firefish Components",
"main": "firefish.app.mjs",
"keywords": [
Expand Down
Loading
Loading