Skip to content

Commit a70ffcf

Browse files
luancazarinemichelle0927
authored andcommitted
17079 trigger trengo voice call recorded (PipedreamHQ#17177)
* [TRIGGER] Trengo - VOICE_CALL_RECORDED PipedreamHQ#17079 Sources - Voice Call Recorded * update pnpm-lock.yaml * Update components/trengo/sources/voice-call-recorded/voice-call-recorded.mjs --------- Co-authored-by: michelle0927 <[email protected]>
1 parent b5cd089 commit a70ffcf

File tree

17 files changed

+71
-35
lines changed

17 files changed

+71
-35
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import app from "../../trengo.app.mjs";
33
export default {
44
type: "action",
55
key: "trengo-create-contact",
6-
version: "0.0.1",
6+
version: "0.0.2",
77
name: "Create Contact",
88
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)",
99
props: {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import app from "../../trengo.app.mjs";
21
import utils from "../../common/utils.mjs";
2+
import app from "../../trengo.app.mjs";
33

44
export default {
55
type: "action",
66
key: "trengo-find-contacts",
7-
version: "0.0.1",
7+
version: "0.0.2",
88
name: "Find Contacts",
99
description: "Finds contacts with the given term. [See the docs](https://developers.trengo.com/reference/as)",
1010
props: {

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
@@ -3,7 +3,7 @@ import app from "../../trengo.app.mjs";
33
export default {
44
type: "action",
55
key: "trengo-log-a-voice-call",
6-
version: "0.0.1",
6+
version: "0.0.2",
77
name: "Log A Voice Call",
88
description: "Logs a phone call from external VOIP applications, [See the docs](https://developers.trengo.com/reference/log-a-phone-call)",
99
props: {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import app from "../../trengo.app.mjs";
33
export default {
44
type: "action",
55
key: "trengo-send-a-message",
6-
version: "0.0.1",
6+
version: "0.0.2",
77
name: "Send A Message",
88
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)",
99
props: {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import app from "../../trengo.app.mjs";
21
import { ConfigurationError } from "@pipedream/platform";
2+
import app from "../../trengo.app.mjs";
33

44
export default {
55
type: "action",
66
key: "trengo-send-a-team-chat-message",
7-
version: "0.0.1",
7+
version: "0.0.2",
88
name: "Send A Team Chat Message",
99
description: "Send a message as a bot in the Team Chat, [See the docs](https://developers.trengo.com/reference/sending-a-bot-message)",
1010
props: {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import app from "../../trengo.app.mjs";
21
import { ConfigurationError } from "@pipedream/platform";
2+
import app from "../../trengo.app.mjs";
33

44
export default {
55
type: "action",
66
key: "trengo-send-a-whatsapp-message-template",
7-
version: "0.0.1",
7+
version: "0.0.2",
88
name: "Send A WhatsApp Message Template",
99
description: "Sends a WhatsApp message template, [See the docs](https://developers.trengo.com/reference/start-a-conversation)",
1010
props: {

components/trengo/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/trengo",
3-
"version": "0.0.2",
3+
"version": "0.1.0",
44
"description": "Pipedream Trengo Components",
55
"main": "trengo.app.mjs",
66
"keywords": [
@@ -10,7 +10,7 @@
1010
"homepage": "https://pipedream.com/apps/trengo",
1111
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
1212
"dependencies": {
13-
"@pipedream/platform": "^1.1.1",
13+
"@pipedream/platform": "^3.1.0",
1414
"crypto-js": "^4.1.1"
1515
},
1616
"publishConfig": {

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

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

33
export default {
44
key: "trengo-new-inbound-message",
5-
name: "New Inbound Message Event",
5+
name: "New Inbound Message Event (Instant)",
66
description: "Emit new events when an inbound message received. [See the docs here](https://developers.trengo.com/docs/webhooks)",
7-
version: "0.0.1",
7+
version: "0.0.2",
88
type: "source",
99
dedupe: "unique",
1010
...common,

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

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

33
export default {
44
key: "trengo-new-internal-note",
5-
name: "New Internal Note Event",
5+
name: "New Internal Note Event (Instant)",
66
description: "Emit new events when a internal note added. [See the docs here](https://developers.trengo.com/docs/webhooks)",
7-
version: "0.0.1",
7+
version: "0.0.2",
88
type: "source",
99
dedupe: "unique",
1010
...common,

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

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

33
export default {
44
key: "trengo-new-outbound-message",
5-
name: "New Outbound Message Event",
5+
name: "New Outbound Message Event (Instant)",
66
description: "Emit new events when an outbound message sent. [See the docs here](https://developers.trengo.com/docs/webhooks)",
7-
version: "0.0.1",
7+
version: "0.0.2",
88
type: "source",
99
dedupe: "unique",
1010
...common,

0 commit comments

Comments
 (0)