n8n/packages/nodes-base/credentials/SupabaseApi.credentials.ts
2022-01-10 13:21:40 +01:00

26 lines
494 B
TypeScript

import {
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: '',
},
];
}