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
Emit new event when a new model is added to your organization in Summit. See the documentation
Executes a model within Summit and captures the response fields. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
summit: {
type: "app",
app: "summit",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.usesummit.com/v1/apps`,
headers: {
"x-api-key": `${this.summit.$auth.api_key}`,
},
})
},
})