with npm and Rhombus?
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 audit record for a specified event is created. See the documentation
Emit new event when a new button event is created. See the documentation
Emit new event when a new clip is created. See the documentation
Create a camera clip from video footage. See the documentation
Create custom activity seekpoints for a specified camera. See the documentation
Create a shared live video stream and get the URL to access it. See the documentation)
Play an uploaded audio clip through an audio device. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
rhombus: {
type: "app",
app: "rhombus",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `https://api2.rhombussystems.com/api/org/getOrgV2`,
headers: {
"x-auth-apikey": `${this.rhombus.$auth.api_token}`,
"x-auth-scheme": `api-token`,
"content-type": `application/json`,
},
})
},
})