Skip to content

Commit beeac5c

Browse files
committed
updates
1 parent 6b1c93d commit beeac5c

File tree

16 files changed

+18
-16
lines changed

16 files changed

+18
-16
lines changed

components/trengo/actions/create-contact/create-contact.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "trengo-create-contact",
66
version: "0.0.4",
77
name: "Create Contact",
8-
description: "Creates a contact. If a contact with given identifier already exists, returns it. [See the docs](https://developers.trengo.com/reference/create-update-a-user)",
8+
description: "Creates a contact. If a contact with given identifier already exists, returns it. [See the documentation](https://developers.trengo.com/reference/create-contact)",
99
props: {
1010
app,
1111
channelId: {

components/trengo/actions/find-contacts/find-contacts.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "trengo-find-contacts",
77
version: "0.0.4",
88
name: "Find Contacts",
9-
description: "Finds contacts with the given term. [See the docs](https://developers.trengo.com/reference/as)",
9+
description: "Finds contacts with the given term. [See the documentation](https://developers.trengo.com/reference/list-all-contacts)",
1010
props: {
1111
app,
1212
term: {

components/trengo/actions/list-articles/list-articles.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "trengo-list-articles",
77
version: "0.0.2",
88
name: "List Articles",
9-
description: "List articles from a help center according to the specified criteria. [See the docs](https://developers.trengo.com/reference/list-all-articles)",
9+
description: "List articles from a help center according to the specified criteria. [See the documentation](https://developers.trengo.com/reference/list-all-articles)",
1010
props: {
1111
app,
1212
helpCenterId: {

components/trengo/actions/list-tickets/list-tickets.mjs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ export default {
2626
app,
2727
"toUserId",
2828
],
29+
type: "integer[]",
2930
label: "User IDs",
3031
description: "Filter by one or more user IDs",
3132
optional: true,
@@ -35,6 +36,7 @@ export default {
3536
app,
3637
"channelId",
3738
],
39+
type: "integer[]",
3840
label: "Channel IDs",
3941
description: "Filter by one or more channel IDs",
4042
optional: true,
@@ -63,7 +65,7 @@ export default {
6365
maxResults: {
6466
type: "integer",
6567
label: "Max Results",
66-
description: "Maximum number of articles to return (if not specified, all results will be returned)",
68+
description: "Maximum number of tickets to return (if not specified, all results will be returned)",
6769
optional: true,
6870
},
6971
},

components/trengo/actions/log-a-voice-call/log-a-voice-call.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "trengo-log-a-voice-call",
66
version: "0.0.4",
77
name: "Log A Voice Call",
8-
description: "Logs a phone call from external VOIP applications, [See the docs](https://developers.trengo.com/reference/log-a-phone-call)",
8+
description: "Logs a phone call from external VOIP applications, [See the documentation](https://developers.trengo.com/reference/log-a-phone-call)",
99
props: {
1010
app,
1111
channelId: {

components/trengo/actions/send-a-message/send-a-message.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "trengo-send-a-message",
66
version: "0.0.4",
77
name: "Send A Message",
8-
description: "This action can be used to easily send a message or an email without having to think about contacts or tickets, [See the docs](https://developers.trengo.com/reference/send-a-message-1)",
8+
description: "This action can be used to easily send a message or an email without having to think about contacts or tickets, [See the documentation](https://developers.trengo.com/reference/send-a-message-1)",
99
props: {
1010
app,
1111
channelId: {

components/trengo/actions/send-a-team-chat-message/send-a-team-chat-message.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "trengo-send-a-team-chat-message",
77
version: "0.0.4",
88
name: "Send A Team Chat Message",
9-
description: "Send a message as a bot in the Team Chat, [See the docs](https://developers.trengo.com/reference/sending-a-bot-message)",
9+
description: "Send a message as a bot in the Team Chat, [See the documentation](https://developers.trengo.com/reference/sending-a-bot-message)",
1010
props: {
1111
app,
1212
threadId: {

components/trengo/actions/send-a-whatsapp-message-template/send-a-whatsapp-message-template.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "trengo-send-a-whatsapp-message-template",
77
version: "0.0.4",
88
name: "Send A WhatsApp Message Template",
9-
description: "Sends a WhatsApp message template, [See the docs](https://developers.trengo.com/reference/start-a-conversation)",
9+
description: "Sends a WhatsApp message template, [See the documentation](https://developers.trengo.com/reference/start-a-conversation)",
1010
props: {
1111
app,
1212
recepientPhoneNumber: {

components/trengo/sources/new-inbound-message/new-inbound-message.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import common from "../common/common.mjs";
33
export default {
44
key: "trengo-new-inbound-message",
55
name: "New Inbound Message Event (Instant)",
6-
description: "Emit new events when an inbound message received. [See the docs here](https://developers.trengo.com/docs/webhooks)",
6+
description: "Emit new event when an inbound message is received. [See the documentation](https://developers.trengo.com/docs/webhooks)",
77
version: "0.0.4",
88
type: "source",
99
dedupe: "unique",

components/trengo/sources/new-internal-note/new-internal-note.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import common from "../common/common.mjs";
33
export default {
44
key: "trengo-new-internal-note",
55
name: "New Internal Note Event (Instant)",
6-
description: "Emit new events when a internal note added. [See the docs here](https://developers.trengo.com/docs/webhooks)",
6+
description: "Emit new event when an internal note is added. [See the documentation](https://developers.trengo.com/docs/webhooks)",
77
version: "0.0.4",
88
type: "source",
99
dedupe: "unique",

0 commit comments

Comments
 (0)