Initial commit to public repo

This commit is contained in:
Peter Krzyzek 2022-09-02 09:52:57 -05:00
parent 47b4fc9edc
commit 8dbfbb1b8d
17 changed files with 14953 additions and 1 deletions

View file

@ -0,0 +1,32 @@
import {
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class PlutioApi implements ICredentialType {
name = 'plutioApi';
displayName = 'Plutio API';
properties: INodeProperties[] = [
{
displayName: 'Client ID',
name: 'clientId',
type: 'string',
required: true,
default: '',
},
{
displayName: 'Client Secret',
name: 'clientSecret',
type: 'string',
required: true,
default: '',
},
{
displayName: 'Business',
name: 'business',
type: 'string',
required: true,
default: '',
},
];
}