n8n/packages/nodes-base/credentials/TwakeServerApi.credentials.ts
2021-06-12 18:39:55 +02:00

31 lines
541 B
TypeScript

import {
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class TwakeServerApi implements ICredentialType {
name = 'twakeServerApi';
displayName = 'Twake API';
documentationUrl = 'twake';
properties: INodeProperties[] = [
{
displayName: 'Host URL',
name: 'hostUrl',
type: 'string',
default: '',
},
{
displayName: 'Public ID',
name: 'publicId',
type: 'string',
default: '',
},
{
displayName: 'Private API Key',
name: 'privateApiKey',
type: 'string',
default: '',
},
];
}