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 new event is created. See the documentation
Create a new user in Keycloak. The username must be unique. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
keycloak: {
type: "app",
app: "keycloak",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.keycloak.$auth.url}/admin/realms`,
headers: {
Authorization: `Bearer ${this.keycloak.$auth.oauth_access_token}`,
},
})
},
})