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

19 lines
340 B
TypeScript
Raw Normal View History

2020-02-25 11:50:42 -08:00
import {
ICredentialType,
INodeProperties,
2020-02-25 11:50:42 -08:00
} from 'n8n-workflow';
export class AffinityApi implements ICredentialType {
name = 'affinityApi';
displayName = 'Affinity API';
documentationUrl = 'affinity';
properties: INodeProperties[] = [
2020-02-25 11:50:42 -08:00
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
2020-02-25 11:50:42 -08:00
default: '',
},
];
}