mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
refactor: Impose import/order linting rule across nodes packages (no-changelog) (#12314)
This commit is contained in:
committed by
GitHub
parent
8c635993bd
commit
bafac73eb5
@@ -1,4 +1,5 @@
|
||||
/* eslint-disable @typescript-eslint/dot-notation */
|
||||
import set from 'lodash/set';
|
||||
import {
|
||||
NodeConnectionType,
|
||||
type IDataObject,
|
||||
@@ -12,20 +13,11 @@ import {
|
||||
type INodeTypeDescription,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
import set from 'lodash/set';
|
||||
import { alertFields, alertOperations } from './descriptions/AlertDescription';
|
||||
|
||||
import { observableFields, observableOperations } from './descriptions/ObservableDescription';
|
||||
|
||||
import { caseFields, caseOperations } from './descriptions/CaseDescription';
|
||||
|
||||
import { taskFields, taskOperations } from './descriptions/TaskDescription';
|
||||
|
||||
import { logFields, logOperations } from './descriptions/LogDescription';
|
||||
|
||||
import type { IQueryObject } from './QueryFunctions';
|
||||
import { And, Between, ContainsString, Eq, Id, In, Parent } from './QueryFunctions';
|
||||
|
||||
import { observableFields, observableOperations } from './descriptions/ObservableDescription';
|
||||
import { taskFields, taskOperations } from './descriptions/TaskDescription';
|
||||
import {
|
||||
buildCustomFieldSearch,
|
||||
mapResource,
|
||||
@@ -36,6 +28,8 @@ import {
|
||||
splitTags,
|
||||
theHiveApiRequest,
|
||||
} from './GenericFunctions';
|
||||
import type { IQueryObject } from './QueryFunctions';
|
||||
import { And, Between, ContainsString, Eq, Id, In, Parent } from './QueryFunctions';
|
||||
|
||||
export class TheHive implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
|
||||
Reference in New Issue
Block a user