with Instant and ngrok?
import { init, id } from '@instantdb/admin';
export default defineComponent({
props: {
instant: {
type: "app",
app: "instant",
}
},
async run({steps, $}) {
const db = init({
appId: this.instant.$auth.app_id,
adminToken: this.instant.$auth.admin_token,
});
return await db.query({ _: {} });
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ngrok: {
type: "app",
app: "ngrok",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.ngrok.com/api_keys`,
headers: {
Authorization: `Bearer ${this.ngrok.$auth.api_key}`,
"ngrok-version": `2`,
},
})
},
})