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

20 lines
331 B
TypeScript
Raw Normal View History

2019-12-17 12:33:28 -08:00
import {
ICredentialType,
INodeProperties,
2019-12-17 12:33:28 -08:00
} from 'n8n-workflow';
export class VeroApi implements ICredentialType {
name = 'veroApi';
displayName = 'Vero API';
documentationUrl = 'vero';
properties: INodeProperties[] = [
2019-12-17 12:33:28 -08:00
{
displayName: 'Auth Token',
name: 'authToken',
type: 'string',
2019-12-17 12:33:28 -08:00
default: '',
},
];
}