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
Retrieve the total number of credits left for the month. See the documentation
Launch a Repliq process by deploying the selected template. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
repliq: {
type: "app",
app: "repliq",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.repliq.co/v2/getCreditsCount`,
headers: {
Authorization: `Bearer ${this.repliq.$auth.api_key}`,
},
})
},
})