import type { IAuthenticateGeneric, ICredentialType, INodeProperties } from 'n8n-workflow';

export class QRadarApi implements ICredentialType {
	name = 'qRadarApi';

	displayName = 'QRadar API';

	icon = { light: 'file:icons/IBM.svg', dark: 'file:icons/IBM.dark.svg' } as const;

	documentationUrl = 'qradar';

	httpRequestNode = {
		name: 'QRadar',
		docsUrl: 'https://www.ibm.com/docs/en/qradar-common',
		apiBaseUrl: '',
	};

	properties: INodeProperties[] = [
		{
			displayName: 'API Key',
			name: 'apiKey',
			type: 'string',
			typeOptions: { password: true },
			required: true,
			default: '',
		},
	];

	authenticate: IAuthenticateGeneric = {
		type: 'generic',
		properties: {
			headers: {
				SEC: '={{$credentials.apiKey}}',
			},
		},
	};
}