2020-08-04 08:23:06 -07:00
|
|
|
import {
|
|
|
|
ICredentialType,
|
2021-06-12 09:39:55 -07:00
|
|
|
INodeProperties,
|
2020-08-04 08:23:06 -07:00
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
export class TwakeCloudApi implements ICredentialType {
|
|
|
|
name = 'twakeCloudApi';
|
2021-08-21 05:22:42 -07:00
|
|
|
displayName = 'Twake Cloud API';
|
2020-08-17 05:42:09 -07:00
|
|
|
documentationUrl = 'twake';
|
2021-06-12 09:39:55 -07:00
|
|
|
properties: INodeProperties[] = [
|
2020-08-04 08:23:06 -07:00
|
|
|
{
|
|
|
|
displayName: 'Workspace Key',
|
|
|
|
name: 'workspaceKey',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'string',
|
2020-08-04 08:23:06 -07:00
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|