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
Delete an employee with the specified ID. See the documentation
Update an employee with the specified ID. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
onbee_app: {
type: "app",
app: "onbee_app",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.onbee_app.$auth.workspace_name}.onbee.app/api/employee-list/`,
headers: {
Authorization: `Bearer ${this.onbee_app.$auth.api_token}`,
},
})
},
})