Initial commit to public repo
This commit is contained in:
parent
47b4fc9edc
commit
8dbfbb1b8d
17 changed files with 14953 additions and 1 deletions
32
credentials/PlutioApi.credentials.ts
Normal file
32
credentials/PlutioApi.credentials.ts
Normal 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: '',
|
||||
},
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue