mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
0638f9624d
* add Beeminder node * clean up unused def * add crud ops * update additional properties * support options in methods * ⚡ Improvements to ##1320 * ⚡ Minor improvements to Beeminder Co-authored-by: mutdmour <mutdmour@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
24 lines
427 B
TypeScript
24 lines
427 B
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
export class BeeminderApi implements ICredentialType {
|
|
name = 'beeminderApi';
|
|
displayName = 'Beeminder API';
|
|
properties = [
|
|
{
|
|
displayName: 'User',
|
|
name: 'user',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Auth Token',
|
|
name: 'authToken',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
];
|
|
}
|