mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
9a1e7b52f7
* WIP: Merge TriggerHelperPanel with MainPanel * WIP: Implement switching between views * Remove logging * WIP: Rework search * Fix category toggling and search results display * Fix node item description * Sort actions based on the root view * Adjust personalisation modal, make trigger canvas node round * Linting fixes * Fix filtering of API options * Fix types and no result state * Cleanup * Linting fixes * Adjust mode prop for node creator tracking * Fix merging of core nodes and filtering of single placeholder actions * Lint fixes * Implement actions override, fix node creator view item spacing and increase click radius of trigger node icon * Fix keyboard view navigation * WIP: E2E Tests * Address product review * Minor fixes & cleanup * Fix tests * Some more test fixes * Add specs to check actions and panels * Update personalisation survey snapshot
89 lines
2 KiB
TypeScript
89 lines
2 KiB
TypeScript
import type { INodeType, INodeTypeDescription } from 'n8n-workflow';
|
|
import { auditFields, auditOperations } from './AuditDescription';
|
|
import { credentialFields, credentialOperations } from './CredentialDescription';
|
|
import { executionFields, executionOperations } from './ExecutionDescription';
|
|
import { workflowFields, workflowOperations } from './WorkflowDescription';
|
|
import { searchWorkflows } from './WorkflowLocator';
|
|
|
|
/**
|
|
* The n8n node provides access to the n8n API.
|
|
*
|
|
* See: https://docs.n8n.io/api/api-reference/
|
|
*/
|
|
export class N8n implements INodeType {
|
|
description: INodeTypeDescription = {
|
|
displayName: 'n8n',
|
|
name: 'n8n',
|
|
icon: 'file:n8n.svg',
|
|
group: ['transform'],
|
|
version: 1,
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
description: 'Handle events and perform actions on your n8n instance',
|
|
defaults: {
|
|
name: 'n8n',
|
|
},
|
|
inputs: ['main'],
|
|
outputs: ['main'],
|
|
credentials: [
|
|
{
|
|
name: 'n8nApi',
|
|
required: true,
|
|
},
|
|
],
|
|
requestDefaults: {
|
|
returnFullResponse: true,
|
|
baseURL: '={{ $credentials.baseUrl.replace(new RegExp("/$"), "") }}',
|
|
headers: {
|
|
Accept: 'application/json',
|
|
'Content-Type': 'application/json',
|
|
},
|
|
},
|
|
properties: [
|
|
{
|
|
displayName: 'Resource',
|
|
name: 'resource',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
options: [
|
|
{
|
|
name: 'Audit',
|
|
value: 'audit',
|
|
},
|
|
{
|
|
name: 'Credential',
|
|
value: 'credential',
|
|
},
|
|
{
|
|
name: 'Execution',
|
|
value: 'execution',
|
|
},
|
|
{
|
|
name: 'Workflow',
|
|
value: 'workflow',
|
|
},
|
|
],
|
|
default: 'workflow',
|
|
},
|
|
|
|
...auditOperations,
|
|
...auditFields,
|
|
|
|
...credentialOperations,
|
|
...credentialFields,
|
|
|
|
...executionOperations,
|
|
...executionFields,
|
|
|
|
...workflowOperations,
|
|
...workflowFields,
|
|
],
|
|
};
|
|
|
|
methods = {
|
|
listSearch: {
|
|
// Provide workflows search capability for the workflow resourceLocator
|
|
searchWorkflows,
|
|
},
|
|
};
|
|
}
|