n8n-nodes-base
Version:
Base nodes of n8n
34 lines • 899 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BaserowApi = void 0;
// https://api.baserow.io/api/redoc/#section/Authentication
class BaserowApi {
name = 'baserowApi';
displayName = 'Baserow API';
documentationUrl = 'baserow';
properties = [
{
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,
},
},
];
}
exports.BaserowApi = BaserowApi;
//# sourceMappingURL=BaserowApi.credentials.js.map