Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a file request status changes. You can only create one webhook in a parser at a time.
Emit new event when a new version of an npm package is published. See the documentation
Uploads a document to DocumentPro's parser. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
documentpro: {
type: "app",
app: "documentpro",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.documentpro.ai/v1/templates`,
headers: {
"x-api-key": `${this.documentpro.$auth.api_key}`,
},
})
},
})