with npm and Asters?
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 label is added to a post. See the documentation
Retrieve the list of all labels of a specific workspace. See the documentation
Retrieve the list of posts' analytics of a social account. See the documentation
Retrieve the list of all social accounts of a specific workspace. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
asters: {
type: "app",
app: "asters",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.asters.ai/api/external/v1.0/workspaces`,
headers: {
"x-api-key": `${this.asters.$auth.api_key}`,
},
})
},
})