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 billing subscription is created.
Emit new event when a new invoice is created or imported.
Creates a billing subscription for a customer. See the documentation.
Generates a new invoice for a customer using Pennylane. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pennylane: {
type: "app",
app: "pennylane",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.pennylane.com/api/external/v1/me`,
headers: {
Authorization: `Bearer ${this.pennylane.$auth.oauth_access_token}`,
"Accept": `application/json`
},
})
},
})