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
Adds a new member or updates an existing member's data in Hullo. See the documentation
Sends a personalized message to a Hullo member. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hullo: {
type: "app",
app: "hullo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.hullo.me/api/endpoints/account`,
headers: {
"X-API-KEY": `${this.hullo.$auth.api_key}`,
},
})
},
})