mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
117962d473
extracted out of #7336 --------- Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com> Co-authored-by: Oleg Ivaniv <me@olegivaniv.com> Co-authored-by: Alex Grozav <alex@grozav.com>
54 lines
976 B
TypeScript
54 lines
976 B
TypeScript
import type {
|
|
IAuthenticateGeneric,
|
|
ICredentialTestRequest,
|
|
ICredentialType,
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export class SupabaseApi implements ICredentialType {
|
|
name = 'supabaseApi';
|
|
|
|
displayName = 'Supabase API';
|
|
|
|
documentationUrl = 'supabase';
|
|
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'Host',
|
|
name: 'host',
|
|
type: 'string',
|
|
placeholder: 'https://your_account.supabase.co',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Service Role Secret',
|
|
name: 'serviceRole',
|
|
type: 'string',
|
|
default: '',
|
|
typeOptions: {
|
|
password: true,
|
|
},
|
|
},
|
|
];
|
|
|
|
authenticate: IAuthenticateGeneric = {
|
|
type: 'generic',
|
|
properties: {
|
|
headers: {
|
|
apikey: '={{$credentials.serviceRole}}',
|
|
Authorization: '=Bearer {{$credentials.serviceRole}}',
|
|
},
|
|
},
|
|
};
|
|
|
|
test: ICredentialTestRequest = {
|
|
request: {
|
|
baseURL: '={{$credentials.host}}/rest/v1',
|
|
headers: {
|
|
Prefer: 'return=representation',
|
|
},
|
|
url: '/',
|
|
},
|
|
};
|
|
}
|