Skip to content

Commit c831dc1

Browse files
verhovskymichelle0927GTFalcao
authored
Fix spelling (#20077)
* Fix spelling * versions * updates * versions * tsconfig.json * revert tsconfig * Address review * Revert unintended change * Grammar fix in kanban_tool * versions * versions, fix key * version --------- Co-authored-by: Michelle Bergeron <michelle.bergeron@gmail.com> Co-authored-by: michelle0927 <michelle0927@users.noreply.github.com> Co-authored-by: Guilherme Falcão <48412907+GTFalcao@users.noreply.github.com>
1 parent 91d4bc4 commit c831dc1

303 files changed

Lines changed: 401 additions & 400 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

components/addressfinder/actions/verify-email/verify-email.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "addressfinder-verify-email",
55
name: "Verify Email",
66
description: "Validates the input email. [See the documentation](https://addressfinder.com.au/api/email/verification/)",
7-
version: "0.0.2",
7+
version: "0.0.3",
88
annotations: {
99
destructiveHint: false,
1010
openWorldHint: true,
@@ -39,7 +39,7 @@ export default {
3939
value: "connection",
4040
},
4141
{
42-
label: "Email provider - a check that determines the underlaying provider of the email service.",
42+
label: "Email provider - a check that determines the underlying provider of the email service.",
4343
value: "provider",
4444
},
4545
],

components/addressfinder/package.json

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

components/airmeet/actions/add-authorized-attendee/add-authorized-attendee.mjs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import app from "../../airmeet.app.mjs";
22

33
export default {
44
name: "Add Authorized Attendee",
5-
version: "0.0.2",
5+
version: "0.0.3",
66
annotations: {
77
destructiveHint: false,
88
openWorldHint: true,
@@ -22,17 +22,17 @@ export default {
2222
email: {
2323
type: "string",
2424
label: "Email",
25-
description: "Email of the atendee",
25+
description: "Email of the attendee",
2626
},
2727
firstName: {
2828
type: "string",
2929
label: "First name",
30-
description: "First name of the atendee",
30+
description: "First name of the attendee",
3131
},
3232
lastName: {
3333
type: "string",
3434
label: "Last name",
35-
description: "Last name of the atendee",
35+
description: "Last name of the attendee",
3636
},
3737
},
3838
async run({ $ }) {

components/airmeet/package.json

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

components/alpaca/actions/get-account-info/get-account-info.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import app from "../../alpaca.app.mjs";
33
export default {
44
type: "action",
55
key: "alpaca-get-account-info",
6-
version: "0.0.2",
6+
version: "0.0.3",
77
annotations: {
88
destructiveHint: false,
99
openWorldHint: true,
@@ -25,7 +25,7 @@ export default {
2525
$,
2626
isPaperAPI: this.isPaperAPI,
2727
});
28-
$.export("$summary", "Account info has been retreived.");
28+
$.export("$summary", "Account info has been retrieved.");
2929
return response;
3030
},
3131
};

components/alpaca/package.json

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

components/bandwidth/actions/send-sms/send-sms.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ module.exports = {
55
name: "Send SMS",
66
description: "Send an SMS message using Bandwidth's Messaging API",
77
type: "action",
8-
version: "1.0.0",
8+
version: "1.0.1",
9+
annotations: {
10+
destructiveHint: false,
11+
openWorldHint: true,
12+
readOnlyHint: false,
13+
},
914
props: {
1015
bandwidth,
1116
messageTo: {

components/bandwidth/bandwidth.app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module.exports = {
2727
mediaUrl: {
2828
type: "string[]",
2929
label: "Media URL",
30-
description: "Publicly addressible URL of the media you would like to send with the SMS",
30+
description: "Publicly addressable URL of the media you would like to send with the SMS",
3131
},
3232
},
3333
methods: {

components/bandwidth/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/bandwidth",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"description": "Pipedream Bandwidth Components",
55
"main": "bandwidth.app.js",
66
"keywords": [

components/bandwidth/sources/new-incoming-sms/new-incoming-sms.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ module.exports = {
44
name: "New Incoming SMS",
55
description: "Emits an event each time a `message-received` event is received at the source url",
66
key: "bandwidth-new-incoming-sms",
7-
version: "1.1.0",
7+
version: "1.1.1",
8+
type: "source",
89
props: {
910
bandwidth,
1011
http: {

0 commit comments

Comments
 (0)