Skip to content

Commit 7b004c8

Browse files
committed
updates
1 parent 50117b2 commit 7b004c8

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

components/esendex/actions/send-sms-message/send-sms-message.mjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import constants from "../../common/constants.mjs";
44
export default {
55
key: "esendex-send-sms-message",
66
name: "Send SMS Message",
7-
description: "Send an SMS message to a recipient. [See the documentation[(https://developers.esendex.com/api-reference/#messagedispatcher)",
7+
description: "Send an SMS message to a recipient. [See the documentation](https://developers.esendex.com/api-reference/#messagedispatcher)",
88
version: "0.0.1",
99
type: "action",
1010
props: {
@@ -63,7 +63,6 @@ export default {
6363
body: this.message,
6464
from: this.from,
6565
type: "SMS",
66-
sendat: this.sendAt,
6766
characterset: this.characterSet,
6867
validity: this.validity,
6968
},

components/esendex/actions/send-voice-message/send-voice-message.mjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import constants from "../../common/constants.mjs";
44
export default {
55
key: "esendex-send-voice-message",
66
name: "Send Voice Message",
7-
description: "Send a voice message to a recipient. [See the documentation[(https://developers.esendex.com/api-reference/#messagedispatcher)",
7+
description: "Send a voice message to a recipient. [See the documentation](https://developers.esendex.com/api-reference/#messagedispatcher)",
88
version: "0.0.1",
99
type: "action",
1010
props: {
@@ -69,7 +69,6 @@ export default {
6969
body: this.message,
7070
from: this.from,
7171
type: "Voice",
72-
sendat: this.sendAt,
7372
characterset: this.characterSet,
7473
lang: this.lang,
7574
retries: this.retries,

components/esendex/sources/new-message-received/new-message-received.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import sampleEmit from "./test-event.mjs";
77
export default {
88
key: "esendex-new-message-received",
99
name: "New Message Received",
10-
description: "Emit new event when a new message is received. [See the documentation[(https://developers.esendex.com/api-reference/#messageheader)",
10+
description: "Emit new event when a new message is received. [See the documentation](https://developers.esendex.com/api-reference/#messageheader)",
1111
version: "0.0.1",
1212
type: "source",
1313
dedupe: "unique",

0 commit comments

Comments
 (0)