2022-07-24 08:36:17 -07:00
|
|
|
import { ICredentialType, INodeProperties } from 'n8n-workflow';
|
2021-01-28 09:31:37 -08:00
|
|
|
|
|
|
|
export class SecurityScorecardApi implements ICredentialType {
|
|
|
|
name = 'securityScorecardApi';
|
|
|
|
displayName = 'SecurityScorecard API';
|
2021-02-03 23:21:06 -08:00
|
|
|
documentationUrl = 'securityScorecard';
|
2021-06-12 09:39:55 -07:00
|
|
|
properties: INodeProperties[] = [
|
2021-01-28 09:31:37 -08:00
|
|
|
{
|
|
|
|
displayName: 'API Key',
|
|
|
|
name: 'apiKey',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'string',
|
2022-11-01 09:41:45 -07:00
|
|
|
typeOptions: { password: true },
|
2021-01-28 09:31:37 -08:00
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|