with npm and DotSimple?
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 new account is connected. See the documentation
Emit new event when a new file is uploaded. See the documentation
Emit new event when a new post is created on the platform. See the documentation
Amend an existing post on your DotSimple site. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    dotsimple: {
      type: "app",
      app: "dotsimple",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://app.dotsimple.io/app/api/${this.dotsimple.$auth.workspace_id}/accounts`,
      headers: {
        Authorization: `Bearer ${this.dotsimple.$auth.access_token}`,
      },
    })
  },
})