Files
n8n-enterprise-unlocked/packages/nodes-base/credentials/QuickBaseApi.credentials.ts
Ricardo Espinoza 4eed7bb9fb Add Quick Base Node (#1161)
* introduce quick base node

* fix quick base api request headers

* refine quick base configuration pages

* fix race condition detection

*  improvements

Co-authored-by: Tristian Flanagan <tristian@tristianflanagan.com>
2020-11-25 13:08:59 +01:00

26 lines
508 B
TypeScript

import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class QuickBaseApi implements ICredentialType {
name = 'quickbaseApi';
displayName = 'Quick Base API';
documentationUrl = 'quickbase';
properties = [
{
displayName: 'Hostname',
name: 'hostname',
type: 'string' as NodePropertyTypes,
default: '',
placeholder: 'demo.quickbase.com',
},
{
displayName: 'User Token',
name: 'userToken',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}