with npm and Limitless.ai?
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
Returns a list of lifelog entries based on specified time range or date. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
limitless_ai: {
type: "app",
app: "limitless_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.limitless.ai/v1/lifelogs`,
headers: {
"x-api-key": `${this.limitless_ai.$auth.api_key}`,
},
})
},
})