with npm and Meetstream AI?
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
Creates a new bot instance to join a meeting. See the documentation
Retrieves the current status of a specific bot. See the documentation
Retrieves the recorded audio file for a specific bot, if available. See the documentation
Retrieves the transcript file for a specific bot, if available. See the documentation
Removes a bot from its meeting and deletes its associated data. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
meetstream_ai: {
type: "app",
app: "meetstream_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api-meetstream-tst-hack.meetstream.ai/api/v1/bots/${this.meetstream_ai.$auth.bot_id}/status`,
headers: {
"authorization": `Token ${this.meetstream_ai.$auth.api_key}`,
},
})
},
})