2022-07-24 08:36:17 -07:00
|
|
|
import { ICredentialType, INodeProperties } from 'n8n-workflow';
|
2021-07-12 04:26:21 -07:00
|
|
|
|
|
|
|
// 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,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|