sync upstream master

This commit is contained in:
Ricardo Espinoza
2019-12-21 21:48:00 -05:00
29 changed files with 1588 additions and 237 deletions

View File

@@ -0,0 +1,18 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class VeroApi implements ICredentialType {
name = 'veroApi';
displayName = 'Vero API';
properties = [
{
displayName: 'Auth Token',
name: 'authToken',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}