Supabase is an open source Firebase alternative.
Emit new event for every new row added in a table. See documentation here
Emit new event for every insert
, update
, or delete
operation in a table. This source requires user configuration using the Supabase website. More information in the README. Also see documentation here
Have Sapling adapt its system over time. Each suggested completion has a completion UUID. You can pass this information back to Sapling to indicate the completion suggestion was helpful. See the documentation here.
Have Sapling adapt its system over time. Each suggested edit has an edit UUID. You can pass this information back to Sapling to indicate the edit suggestion was helpful. See the documentation here.
Have Sapling not recommend the same edit anymore. Each suggested edit has an edit UUID. You can pass this information back to Sapling to indicate the edit suggestion was not helpful. See the documentation here.
Supabase is a real-time backend-as-a-service that provides developers with a suite of tools to quickly build and scale their applications. It offers database storage, authentication, instant APIs, and real-time subscriptions. With the Supabase API, you can perform CRUD operations on your database, manage users, and listen to database changes in real time. When integrated with Pipedream, you can automate workflows that react to these database events, synchronize data across multiple services, or streamline user management processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
supabase: {
type: "app",
app: "supabase",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.supabase.$auth.subdomain}.supabase.co/rest/v1/`,
headers: {
Authorization: `Bearer ${this.supabase.$auth.service_key}`,
"apikey": `${this.supabase.$auth.service_key}`,
},
})
},
})
Sapling.ai offers an AI-driven writing assistant that can help you write better and faster by providing grammar and style suggestions. With its API, you can automate text analysis and correction processes within Pipedream workflows. By integrating Sapling.ai's API in Pipedream, you can create powerful automations that enhance writing quality across various applications, from customer support messages to content creation.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sapling_ai: {
type: "app",
app: "sapling_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.sapling.ai/api/v1/team`,
params: {
key: `${this.sapling_ai.$auth.api_key}`,
},
})
},
})