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
Emit new event when the generation status of an image gets updated.
Allows user to purchase an image and receive a direct public link. User must have sufficient credit balance. See the documentation
Generates advanced customized images using a prompt from the user. See the documentation
Retrieves a previously generated image using its unique ID. See the documentation
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}`,
},
})
},
})
The All-Images.ai API serves as a tool for processing images through AI-driven methods. With this API, you can enhance images, deblur them, remove backgrounds, and much more. All-Images.ai becomes more powerful when integrated into Pipedream’s serverless platform, allowing you to automate image processing in workflows that connect with other apps. You can trigger workflows with HTTP requests, email, and over 800 Pipedream-supported apps. These automations can save time and enhance productivity, especially for tasks involving bulk image processing or real-time image manipulation.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
all_images_ai: {
type: "app",
app: "all_images_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.all-images.ai/v1/credit`,
headers: {
"Accept": `application/json`,
"api-key": `${this.all_images_ai.$auth.api_key}`,
},
})
},
})