pull:初次提交
This commit is contained in:
53
n8n-n8n-1.109.2/packages/nodes-base/credentials/SupabaseApi.credentials.ts
Executable file
53
n8n-n8n-1.109.2/packages/nodes-base/credentials/SupabaseApi.credentials.ts
Executable file
@@ -0,0 +1,53 @@
|
||||
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: '/',
|
||||
},
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user