-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
779 additions
and
10 deletions.
There are no files selected for viewing
102 changes: 102 additions & 0 deletions
102
components/heyy/actions/create-contact/create-contact.mjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
import { ConfigurationError } from "@pipedream/platform"; | ||
import app from "../../heyy.app.mjs"; | ||
import utils from "../../common/utils.mjs"; | ||
|
||
export default { | ||
key: "heyy-create-contact", | ||
name: "Create Contact", | ||
description: "Creates a new contact for the business. [See the documentation](https://documenter.getpostman.com/view/27408936/2sA2r3a6DW#a1249b8d-10cf-446a-be35-eb8793ffa967).", | ||
version: "0.0.1", | ||
type: "action", | ||
props: { | ||
app, | ||
phoneNumber: { | ||
propDefinition: [ | ||
app, | ||
"phoneNumber", | ||
], | ||
}, | ||
firstName: { | ||
propDefinition: [ | ||
app, | ||
"firstName", | ||
], | ||
}, | ||
lastName: { | ||
propDefinition: [ | ||
app, | ||
"lastName", | ||
], | ||
}, | ||
email: { | ||
propDefinition: [ | ||
app, | ||
"email", | ||
], | ||
}, | ||
labels: { | ||
propDefinition: [ | ||
app, | ||
"labels", | ||
], | ||
}, | ||
attributes: { | ||
propDefinition: [ | ||
app, | ||
"attributes", | ||
], | ||
}, | ||
}, | ||
methods: { | ||
createContact(args = {}) { | ||
return this.app.post({ | ||
path: "/contacts", | ||
...args, | ||
}); | ||
}, | ||
}, | ||
async run({ $ }) { | ||
const { | ||
createContact, | ||
phoneNumber, | ||
firstName, | ||
lastName, | ||
email, | ||
labels, | ||
attributes, | ||
} = this; | ||
|
||
if (!utils.isPhoneNumberValid(phoneNumber)) { | ||
throw new ConfigurationError(`The phone number \`${phoneNumber}\` is invalid. Please provide a valid phone number.`); | ||
} | ||
|
||
const response = await createContact({ | ||
$, | ||
data: { | ||
phoneNumber, | ||
firstName, | ||
lastName, | ||
email, | ||
...(labels?.length && { | ||
labels: labels.map((name) => ({ | ||
name, | ||
})), | ||
}), | ||
attributes: | ||
attributes && Object.entries(attributes) | ||
.reduce((acc, [ | ||
externalId, | ||
value, | ||
]) => ([ | ||
...acc, | ||
{ | ||
externalId, | ||
value, | ||
}, | ||
]), []), | ||
}, | ||
}); | ||
$.export("$summary", `Successfully created contact with ID \`${response.data.id}\`.`); | ||
return response; | ||
}, | ||
}; |
161 changes: 161 additions & 0 deletions
161
components/heyy/actions/send-whatsapp-message/send-whatsapp-message.mjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,161 @@ | ||
import app from "../../heyy.app.mjs"; | ||
import constants from "../../common/constants.mjs"; | ||
import utils from "../../common/utils.mjs"; | ||
|
||
export default { | ||
key: "heyy-send-whatsapp-message", | ||
name: "Send WhatsApp Message", | ||
description: "Sends a WhatsApp message to a contact. [See the documentation](https://documenter.getpostman.com/view/27408936/2sa2r3a6dw)", | ||
version: "0.0.1", | ||
type: "action", | ||
props: { | ||
app, | ||
channelId: { | ||
propDefinition: [ | ||
app, | ||
"channelId", | ||
], | ||
}, | ||
phoneNumber: { | ||
label: "Phone Number", | ||
description: "The phone number of the contact.", | ||
propDefinition: [ | ||
app, | ||
"contactId", | ||
() => ({ | ||
mapper: ({ | ||
firstName, phoneNumber: value, | ||
}) => ({ | ||
label: firstName || value, | ||
value, | ||
}), | ||
}), | ||
], | ||
}, | ||
msgType: { | ||
type: "string", | ||
label: "Message Type", | ||
description: "The type of message to send.", | ||
options: Object.values(constants.MSG_TYPE), | ||
reloadProps: true, | ||
}, | ||
}, | ||
additionalProps() { | ||
const { msgType } = this; | ||
|
||
const bodyText = { | ||
type: "string", | ||
label: "Body Text", | ||
description: "The text of the message to send.", | ||
}; | ||
|
||
if (msgType === constants.MSG_TYPE.TEXT) { | ||
return { | ||
bodyText, | ||
}; | ||
} | ||
|
||
if (msgType === constants.MSG_TYPE.IMAGE) { | ||
return { | ||
bodyText, | ||
fileId: { | ||
type: "string", | ||
label: "File ID", | ||
description: "The ID of the file to attach to the message.", | ||
}, | ||
}; | ||
} | ||
|
||
if (msgType === constants.MSG_TYPE.TEMPLATE) { | ||
return { | ||
messageTemplateId: { | ||
type: "string", | ||
label: "Message Template ID", | ||
description: "The ID of the message template to use.", | ||
optional: true, | ||
options: async ({ page }) => { | ||
const { data: { messageTemplates } } = await this.app.getMessageTemplates({ | ||
params: { | ||
page, | ||
sortBy: "updatedAt", | ||
order: "DESC", | ||
}, | ||
}); | ||
return messageTemplates.map(({ | ||
id: value, name: label, | ||
}) => ({ | ||
label, | ||
value, | ||
})); | ||
}, | ||
}, | ||
}; | ||
} | ||
|
||
if (msgType === constants.MSG_TYPE.INTERACTIVE) { | ||
return { | ||
bodyText, | ||
buttons: { | ||
type: "string[]", | ||
label: "Buttons", | ||
description: "The buttons to include in the message. Each row should have a JSON formated string. Eg. `{ \"id\": \"STRING\", \"title\": \"STRING\" }`.", | ||
}, | ||
headerText: { | ||
type: "string", | ||
label: "Header Text", | ||
description: "The header text of the message to send.", | ||
optional: true, | ||
}, | ||
footerText: { | ||
type: "string", | ||
label: "Footer Text", | ||
description: "The footer text of the message to send.", | ||
optional: true, | ||
}, | ||
}; | ||
} | ||
|
||
return {}; | ||
}, | ||
methods: { | ||
sendWhatsappMessage({ | ||
channelId, ...args | ||
} = {}) { | ||
return this.app.post({ | ||
path: `/${channelId}/whatsapp_messages/send`, | ||
...args, | ||
}); | ||
}, | ||
}, | ||
async run({ $ }) { | ||
const { | ||
sendWhatsappMessage, | ||
channelId, | ||
phoneNumber, | ||
msgType, | ||
bodyText, | ||
fileId, | ||
messageTemplateId, | ||
headerText, | ||
footerText, | ||
buttons, | ||
} = this; | ||
|
||
const response = await sendWhatsappMessage({ | ||
$, | ||
channelId, | ||
data: { | ||
phoneNumber, | ||
type: msgType, | ||
bodyText, | ||
fileId, | ||
messageTemplateId, | ||
headerText, | ||
footerText, | ||
buttons: utils.parseArray(buttons), | ||
}, | ||
}); | ||
$.export("$summary", "Succesfully sent WhatsApp message."); | ||
return response; | ||
}, | ||
}; |
115 changes: 115 additions & 0 deletions
115
components/heyy/actions/update-contact/update-contact.mjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
import { ConfigurationError } from "@pipedream/platform"; | ||
import app from "../../heyy.app.mjs"; | ||
import utils from "../../common/utils.mjs"; | ||
|
||
export default { | ||
key: "heyy-update-contact", | ||
name: "Update Contact", | ||
description: "Updates the details of a contact under your business. [See the documentation](https://documenter.getpostman.com/view/27408936/2sA2r3a6DW#5a5ee22b-c16e-4d46-ae5d-3844b6501a34).", | ||
version: "0.0.1", | ||
type: "action", | ||
props: { | ||
app, | ||
contactId: { | ||
propDefinition: [ | ||
app, | ||
"contactId", | ||
], | ||
}, | ||
phoneNumber: { | ||
optional: true, | ||
propDefinition: [ | ||
app, | ||
"phoneNumber", | ||
], | ||
}, | ||
firstName: { | ||
optional: true, | ||
propDefinition: [ | ||
app, | ||
"firstName", | ||
], | ||
}, | ||
lastName: { | ||
propDefinition: [ | ||
app, | ||
"lastName", | ||
], | ||
}, | ||
email: { | ||
propDefinition: [ | ||
app, | ||
"email", | ||
], | ||
}, | ||
labels: { | ||
propDefinition: [ | ||
app, | ||
"labels", | ||
], | ||
}, | ||
attributes: { | ||
propDefinition: [ | ||
app, | ||
"attributes", | ||
], | ||
}, | ||
}, | ||
methods: { | ||
updateContact({ | ||
contactId, ...args | ||
} = {}) { | ||
return this.app.put({ | ||
path: `/contacts/${contactId}`, | ||
...args, | ||
}); | ||
}, | ||
}, | ||
async run({ $ }) { | ||
const { | ||
updateContact, | ||
contactId, | ||
phoneNumber, | ||
firstName, | ||
lastName, | ||
email, | ||
labels, | ||
attributes, | ||
} = this; | ||
|
||
if (phoneNumber && !utils.isPhoneNumberValid(phoneNumber)) { | ||
throw new ConfigurationError(`The phone number \`${phoneNumber}\` is invalid. Please provide a valid phone number.`); | ||
} | ||
|
||
const response = await updateContact({ | ||
$, | ||
contactId, | ||
data: { | ||
phoneNumber, | ||
firstName, | ||
lastName, | ||
email, | ||
...(labels?.length && { | ||
labels: labels.map((name) => ({ | ||
name, | ||
})), | ||
}), | ||
attributes: | ||
attributes && Object.entries(attributes) | ||
.reduce((acc, [ | ||
externalId, | ||
value, | ||
]) => ([ | ||
...acc, | ||
{ | ||
externalId, | ||
value, | ||
}, | ||
]), []), | ||
}, | ||
}); | ||
|
||
$.export("$summary", `Successfully updated contact with ID \`${response.data.id}\`.`); | ||
return response; | ||
}, | ||
}; |
Oops, something went wrong.