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

25 lines
415 B
TypeScript
Raw Normal View History

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