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
The Beebole API provides a way to automate time tracking, manage projects, and handle employee data efficiently. With Pipedream, you can harness this functionality to create custom workflows that trigger on specific events, manipulate and analyze time tracking data, and integrate with other services for enhanced automation. For instance, you could sync time entries with project management tools, create reports for payroll, or set up alerts based on your team's time tracking patterns.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
beebole_app: {
type: "app",
app: "beebole_app",
}
},
async run({steps, $}) {
const data = {
"service": `company.list`,
}
return await axios($, {
method: "post",
url: `https://beebole-apps.com/api/v2`,
auth: {
username: `${this.beebole_app.$auth.api_token}`,
password: `x`,
},
data,
})
},
})