with npm and Orshot?
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
Generate an image from a pre-designed library template using the Orshot API. See the documentation
Generate an image from an Orshot Studio template using the Orshot API. See the documentation
Get available modification keys for a studio template
Get available modification keys for a library template
Retrieve a list of available library templates from Orshot. See templates
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
orshot: {
type: "app",
app: "orshot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.orshot.com/v1/templates`,
headers: {
Authorization: `Bearer ${this.orshot.$auth.token}`,
"content-type": `application/json`,
},
})
},
})