Node package manager
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 knowledge base is created in Vectorshift.
Emit new event when a new pipeline is created in VectorShift.
Adds data to a knowledge base in VectorShift. See the documentation
Creates a new pipeline in VectorShift. See the documentation
Executes a VectorShift pipeline with specified inputs. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
vectorshift: {
type: "app",
app: "vectorshift",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.vectorshift.ai/v1/pipelines`,
headers: {
Authorization: `Bearer ${this.vectorshift.$auth.api_key}`,
},
})
},
})