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

28 lines
545 B
TypeScript
Raw Normal View History

import { ICredentialType, INodeProperties } from 'n8n-workflow';
export class TwakeServerApi implements ICredentialType {
name = 'twakeServerApi';
2021-08-21 05:22:42 -07:00
displayName = 'Twake Server 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: '',
},
];
}