with npm and Taiga?
Emit new event with the latest count of downloads for an npm package. See the documentation
Emit new event when an issue is updated in the selected project. See the documentation
Emit new event when a new version of an npm package is published. See the documentation
Emit new event when an issue status is changed in the selected project. See the documentation
Emit new event when a task is updated in the selected project. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
taiga: {
type: "app",
app: "taiga",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.taiga.$auth.api_url}/api/v1/projects`,
headers: {
Authorization: `Bearer ${this.taiga.$auth.oauth_access_token}`,
"content-type": `application/json`,
},
})
},
})