Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a new version of an npm package is published. See the documentation
Create and update contacts or add events to contacts. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
regal: {
type: "app",
app: "regal",
}
},
async run({steps, $}) {
const data = {
"userId": "testing",
"traits": {
"phones": {
"+19545552399": {}
},
"firstName": "Rebecca",
"lastName": "Greene"
},
"eventSource": "crm"
}
return await axios($, {
method: "post",
url: `https://events.regalvoice.com/events`,
headers: {
"Authorization": `${this.regal.$auth.api_key}`,
},
data,
})
},
})