with npm and Add to Calendar PRO?
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 event is deleted in the system
Emit new event when a new event group is deleted in the system
Emit new event when a new event group is updated in the system
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
add_to_calendar_pro: {
type: "app",
app: "add_to_calendar_pro",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.add-to-calendar-pro.com/v1/event/all`,
headers: {
"authorization": `${this.add_to_calendar_pro.$auth.api_key}`,
},
})
},
})