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
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
xverify: {
type: "app",
app: "xverify",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.xverify.com/v2/ev`,
params: {
api_key: `${this.xverify.$auth.api_key}`,
domain: `${this.xverify.$auth.domain}`,
email: `test@test.com`,
},
})
},
})