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
Creates a new task on your Hubstaff organization. See the documentation
Retrieves a list of all tasks from your Hubstaff organization. See the documentation
Update a specific task within your Hubstaff organization. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hubstaff: {
type: "app",
app: "hubstaff",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.hubstaff.com/v2/users/me`,
headers: {
Authorization: `Bearer ${this.hubstaff.$auth.oauth_access_token}`,
},
})
},
})