mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
2dbde92fd5
* Added first trial for a spontit integration * Added spontit packages * Changed option types from collection to string * ⚡ Improvements to Spontit Node Improvements to #1163 Co-authored-by: Tobias Schulz-Hess <tobias.schulz-hess@xing.com>
25 lines
454 B
TypeScript
25 lines
454 B
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
export class SpontitApi implements ICredentialType {
|
|
name = 'spontitApi';
|
|
displayName = 'Spontit API';
|
|
documentationUrl = 'spontit';
|
|
properties = [
|
|
{
|
|
displayName: 'API Key',
|
|
name: 'apiKey',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Username',
|
|
name: 'username',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
];
|
|
}
|