n8n/packages/nodes-base/credentials/ImpervaWafApi.credentials.ts

38 lines
731 B
TypeScript

import type { IAuthenticateGeneric, ICredentialType, INodeProperties } from 'n8n-workflow';
export class ImpervaWafApi implements ICredentialType {
name = 'impervaWafApi';
displayName = 'Imperva WAF API';
icon = 'file:icons/Imperva.svg';
properties: INodeProperties[] = [
{
displayName: 'API ID',
name: 'apiID',
type: 'string',
default: '',
required: true,
},
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
typeOptions: { password: true },
default: '',
required: true,
},
];
authenticate: IAuthenticateGeneric = {
type: 'generic',
properties: {
headers: {
'x-API-Id': '={{$credentials.apiID}}',
'x-API-Key': '={{$credentials.apiKey}}',
},
},
};
}