Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event each time a signature request is completed.
Emit new event when a new version of an npm package is published. See the documentation
Emit new event each time a signature request is signed.
Emit new event when a signature request is viewed.
Sends a signature request using a pre-designed bunnydoc template. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bunnydoc: {
type: "app",
app: "bunnydoc",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.bunnydoc.com/v1/listTeamMembers`,
headers: {
"Authorization": `API-KEY ${this.bunnydoc.$auth.api_key}`,
},
})
},
})