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 whenever a task is created or updated in Height.
Searches for tasks within your workspace using a text query. See the documentation
Updates a specified task within your workspace. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
height: {
type: "app",
app: "height",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.height.app/users/me`,
headers: {
"Authorization": `api-key ${this.height.$auth.api_key}`,
},
})
},
})