mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
✨ 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>
This commit is contained in:
25
packages/nodes-base/credentials/QuickBaseApi.credentials.ts
Normal file
25
packages/nodes-base/credentials/QuickBaseApi.credentials.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
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: '',
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user