Feature/twake node (#815)

* ️ ADD Twake node

* Convert space in tab

*  Twake-Node

*  Improvements

*  Small improvements

Co-authored-by: Benoit <benoit.tallandier@gmail.com>
This commit is contained in:
Ricardo Espinoza
2020-08-04 11:23:06 -04:00
committed by GitHub
parent 26f3f949aa
commit b77bdfbcfe
6 changed files with 363 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class TwakeServerApi implements ICredentialType {
name = 'twakeServerApi';
displayName = 'Twake API';
properties = [
{
displayName: 'Host URL',
name: 'hostUrl',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'Public ID',
name: 'publicId',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'Private API Key',
name: 'privateApiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}