mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
✨ Add Supabase node (#2549)
* ✨ Supabase node * ⚡ Improvements * ⚡ Improvements * ⚡ Improvements * ⚡ Improvements * ⚡ Minor improvements Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
This commit is contained in:
25
packages/nodes-base/credentials/SupabaseApi.credentials.ts
Normal file
25
packages/nodes-base/credentials/SupabaseApi.credentials.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
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: '',
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user