with npm and HeyLibby?
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 new qualified lead is created.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
heylibby: {
type: "app",
app: "heylibby",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://3wsq3v2kgg.execute-api.us-east-1.amazonaws.com/prod/zapier/trigger`,
params: {
zapierAPI: `${this.heylibby.$auth.api_key}`,
},
})
},
})