mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
35 lines
613 B
TypeScript
35 lines
613 B
TypeScript
|
import {
|
||
|
ICredentialType,
|
||
|
INodeProperties,
|
||
|
} from 'n8n-workflow';
|
||
|
|
||
|
// https://api.baserow.io/api/redoc/#section/Authentication
|
||
|
|
||
|
export class BaserowApi implements ICredentialType {
|
||
|
name = 'baserowApi';
|
||
|
displayName = 'Baserow API';
|
||
|
properties: INodeProperties[] = [
|
||
|
{
|
||
|
displayName: 'Host',
|
||
|
name: 'host',
|
||
|
type: 'string',
|
||
|
default: 'https://api.baserow.io',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Username',
|
||
|
name: 'username',
|
||
|
type: 'string',
|
||
|
default: '',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Password',
|
||
|
name: 'password',
|
||
|
type: 'string',
|
||
|
default: '',
|
||
|
typeOptions: {
|
||
|
password: true,
|
||
|
},
|
||
|
},
|
||
|
];
|
||
|
}
|