2022-07-24 08:36:17 -07:00
|
|
|
import { ICredentialType, INodeProperties } from 'n8n-workflow';
|
2021-02-13 08:46:35 -08:00
|
|
|
|
|
|
|
export class DemioApi implements ICredentialType {
|
|
|
|
name = 'demioApi';
|
|
|
|
displayName = 'Demio API';
|
|
|
|
documentationUrl = 'demio';
|
2021-06-12 09:39:55 -07:00
|
|
|
properties: INodeProperties[] = [
|
2021-02-13 08:46:35 -08:00
|
|
|
{
|
|
|
|
displayName: 'API Key',
|
|
|
|
name: 'apiKey',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'string',
|
2021-02-13 08:46:35 -08:00
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'API Secret',
|
|
|
|
name: 'apiSecret',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'string',
|
2021-02-13 08:46:35 -08:00
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|