import type { IAuthenticateGeneric, ICredentialType, INodeProperties } from 'n8n-workflow'; export class ImpervaWafApi implements ICredentialType { name = 'impervaWafApi'; displayName = 'Imperva WAF API'; documentationUrl = 'impervawaf'; 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}}', }, }, }; }