mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
8e708f3d3d
* ✨ Supabase node * ⚡ Improvements * ⚡ Improvements * ⚡ Improvements * ⚡ Improvements * ⚡ Minor improvements Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
26 lines
495 B
TypeScript
26 lines
495 B
TypeScript
import {
|
|
ICredentialType,
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export class SupabaseApi implements ICredentialType {
|
|
name = 'supabaseApi';
|
|
displayName = 'Supabase API';
|
|
documentationUrl = 'superbase';
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'Host',
|
|
name: 'host',
|
|
type: 'string',
|
|
placeholder: 'https://your_account.supabase.co',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Service Role Secret',
|
|
name: 'serviceRole',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
];
|
|
}
|