with npm and Picqer?
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 Picqer sends a webhook matched with selected event. See the documentation
Adds a single product to concept orders only. See the documentation
Removes orders with 'concept' or 'expected' status only. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
picqer: {
type: "app",
app: "picqer",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.picqer.$auth.subdomain}.picqer.com/api/v1/users`,
auth: {
username: `${this.picqer.$auth.api_key}`,
password: ``,
},
})
},
})