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
Creates an Activity object with the given values. See the documentation
Update a candidate profile with the specified ID. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
merge: {
type: "app",
app: "merge",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.merge.dev/api/ats/v1/linked-accounts`,
headers: {
Authorization: `Bearer ${this.merge.$auth.api_key}`,
},
})
},
})