2023-01-27 03:22:44 -08:00
|
|
|
import type { 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';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2021-07-12 04:26:21 -07:00
|
|
|
displayName = 'Baserow API';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2022-12-22 08:01:29 -08:00
|
|
|
documentationUrl = 'baserow';
|
|
|
|
|
2021-07-12 04:26:21 -07:00
|
|
|
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,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|