import common from "../common/common-create.mjs";
import appProp from "./common-app-prop.mjs";
import { ConfigurationError } from "@pipedream/platform";
import { ASSOCIATION_CATEGORY } from "../../common/constants.mjs";
export default {
...common,
key: "hubspot-create-communication",
name: "Create Communication",
description: "Create a WhatsApp, LinkedIn, or SMS message. [See the documentation](https://developers.hubspot.com/beta-docs/reference/api/crm/engagements/communications/v3#post-%2Fcrm%2Fv3%2Fobjects%2Fcommunications)",
version: "0.0.1",
type: "action",
props: {
...appProp.props,
toObjectType: {
propDefinition: [
appProp.props.hubspot,
"objectType",
],
label: "Associated Object Type",
description: "Type of object the communication is being associated with",
optional: true,
},
toObjectId: {
propDefinition: [
appProp.props.hubspot,
"objectId",
(c) => ({
objectType: c.toObjectType,
}),
],
label: "Associated Object",
description: "ID of object the communication is being associated with",
optional: true,
},
associationType: {
propDefinition: [
appProp.props.hubspot,
"associationType",
(c) => ({
fromObjectType: "communications",
toObjectType: c.toObjectType,
}),
],
description: "A unique identifier to indicate the association type between the communication and the other object",
optional: true,
},
},
methods: {
...common.methods,
getObjectType() {
return "communications";
},
},
async run({ $ }) {
const {
hubspot,
toObjectType,
toObjectId,
associationType,
getObjectType,
...properties
} = this;
if ((toObjectId && !associationType) || (!toObjectId && associationType)) {
throw new ConfigurationError("Both `toObjectId` and `associationType` must be entered");
}
const response = await hubspot.createObject({
$,
objectType: getObjectType(),
data: {
associations: toObjectId
? [
{
types: [
{
associationTypeId: associationType,
associationCategory: ASSOCIATION_CATEGORY.HUBSPOT_DEFINED,
},
],
to: {
id: toObjectId,
},
},
]
: undefined,
properties: {
...properties,
hs_communication_logged_from: "CRM",
},
},
});
$.export("$summary", `Successfully created communication with ID ${response.id}`);
return response;
},
};