with npm and Mintlify?
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
Generates a response message from the assistant for the specified domain. See the documentation
Perform semantic and keyword searches across your documentation. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mintlify: {
type: "app",
app: "mintlify",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.mintlify.com/v1/agent/${this.mintlify.$auth.project_id}/jobs`,
headers: {
Authorization: `Bearer ${this.mintlify.$auth.admin_api_key}`,
}
})
},
})