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
Generates a new banner using provided data. This action can create different types of banners, such as animated HTML5, image, or video banners. See the documentation
Retrieves a specified banner. This action should be used after a 'create-banner' action to ensure that the banner is fully processed and ready for use. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
adrapid: {
type: "app",
app: "adrapid",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.adrapid.com/me`,
headers: {
Authorization: `Bearer ${this.adrapid.$auth.api_token}`,
},
})
},
})