n8n/packages/nodes-base/credentials/PushcutApi.credentials.ts
Ricardo Espinoza 23b61475d9
Add Pushcut Node & Trigger (#1075)
*  Pushcut Node & Trigger

*  Small improvements

Co-authored-by: Jan <janober@users.noreply.github.com>
2020-12-12 08:58:58 +01:00

18 lines
309 B
TypeScript

import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class PushcutApi implements ICredentialType {
name = 'pushcutApi';
displayName = 'Pushcut API';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}