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
Emit new event when a business gets a new incoming message. See the documentation.
Updates the details of a contact under your business. See the documentation.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
heyy: {
type: "app",
app: "heyy",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.hey-y.io/api/v2.0/business`,
headers: {
Authorization: `Bearer ${this.heyy.$auth.api_token}`,
},
})
},
})