n8n/packages/nodes-base/credentials/TrelloApi.credentials.ts
2019-07-12 17:54:15 +02:00

31 lines
543 B
TypeScript

import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class TrelloApi implements ICredentialType {
name = 'trelloApi';
displayName = 'Trello API';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'API Token',
name: 'apiToken',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'OAuth Secret',
name: 'oauthSecret',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}