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 when a column value is updated on a board in Monday. For changes to Name, use the Name Updated Trigger.
Emit new event when a new item is added to a board in Monday.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
monday_oauth: {
type: "app",
app: "monday_oauth",
}
},
async run({steps, $}) {
const data = {
"query": "query { me { is_guest join_date email } }"
}
return await axios($, {
method: "post",
url: `https://api.monday.com/v2`,
headers: {
Authorization: `Bearer ${this.monday_oauth.$auth.oauth_access_token}`,
},
data,
})
},
})