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 new customer order is created.
Emit new event when a new purchase order is created.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
allocadence: {
type: "app",
app: "allocadence",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.allocadence.com/rest/items`,
auth: {
username: `${this.allocadence.$auth.api_key}`,
password: `${this.allocadence.$auth.api_secret}`,
},
})
},
})