2020-02-11 23:52:36 -08:00
|
|
|
import {
|
|
|
|
ICredentialType,
|
|
|
|
NodePropertyTypes,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
|
|
|
|
export class MoceanApi implements ICredentialType {
|
|
|
|
name = 'moceanApi';
|
|
|
|
displayName = 'Mocean Api';
|
2020-08-17 05:42:09 -07:00
|
|
|
documentationUrl = 'mocean';
|
2020-02-11 23:52:36 -08:00
|
|
|
properties = [
|
|
|
|
// The credentials to get from user and save encrypted.
|
|
|
|
// Properties can be defined exactly in the same way
|
|
|
|
// as node properties.
|
|
|
|
{
|
|
|
|
displayName: 'API Key',
|
|
|
|
name: 'mocean-api-key',
|
|
|
|
type: 'string' as NodePropertyTypes,
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'API Secret',
|
|
|
|
name: 'mocean-api-secret',
|
|
|
|
type: 'string' as NodePropertyTypes,
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|