with npm and Stiply?
Emit new event with the latest count of downloads for an npm package. See the documentation
Emit new event when a sign request is completed in Stiply. See the documentation
Emit new event when a new version of an npm package is published. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
stiply: {
type: "app",
app: "stiply",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.stiply.nl/v2/sign_requests`,
headers: {
Authorization: `Bearer ${this.stiply.$auth.oauth_access_token}`,
"accept": `application/json`,
},
params: {
"$page": `1`,
"$page_size": `100`,
},
})
},
})