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
Search the user's codebase using a natural language query. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
greptile: {
type: "app",
app: "greptile",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.greptile.com/v2/chats/${this.greptile.$auth.chat_session_id}`,
headers: {
Authorization: `Bearer ${this.greptile.$auth.api_key}`,
},
})
},
})