with npm and V7 Go?
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 all fields of an entity are completed in V7 Go.
Emit new event when a field within an entity is completed in V7 Go.
Initiates the creation of a new project with a unique project identifier. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    v7_go: {
      type: "app",
      app: "v7_go",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://go.v7labs.com/api/workspaces/${this.v7_go.$auth.workspace_id}/members`,
      headers: {
        "X-API-KEY": `${this.v7_go.$auth.api_key}`,
      },
    })
  },
})