mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-04 02:37:46 +02:00
21 lines
436 B
TypeScript
21 lines
436 B
TypeScript
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
|
|
export class SecurityScorecardApi implements ICredentialType {
|
|
name = 'securityScorecardApi';
|
|
|
|
displayName = 'SecurityScorecard API';
|
|
|
|
documentationUrl = 'securityscorecard';
|
|
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'API Key',
|
|
name: 'apiKey',
|
|
type: 'string',
|
|
typeOptions: { password: true },
|
|
default: '',
|
|
required: true,
|
|
},
|
|
];
|
|
}
|