n8n/packages/nodes-base/credentials/UProcApi.credentials.ts
2021-06-18 23:46:21 +02:00

25 lines
415 B
TypeScript

import {
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class UProcApi implements ICredentialType {
name = 'uprocApi';
displayName = 'uProc API';
documentationUrl = 'uProc';
properties: INodeProperties[] = [
{
displayName: 'Email',
name: 'email',
type: 'string',
default: '',
},
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
default: '',
},
];
}