with npm and FlexiSign?
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
Sends a signature request to the specified recipients for a document generated from a template. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
flexisign: {
type: "app",
app: "flexisign",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.flexisign.io/v1/templates/all`,
headers: {
"api-key": `${this.flexisign.$auth.api_key}`,
},
})
},
})