mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +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,3 +1,4 @@
|
||||
import get from 'lodash/get';
|
||||
import type {
|
||||
IDataObject,
|
||||
IExecuteFunctions,
|
||||
@@ -9,8 +10,6 @@ import type {
|
||||
} from 'n8n-workflow';
|
||||
import { NodeApiError } from 'n8n-workflow';
|
||||
|
||||
import get from 'lodash/get';
|
||||
|
||||
export async function helpscoutApiRequest(
|
||||
this: IExecuteFunctions | ILoadOptionsFunctions | IHookFunctions,
|
||||
method: IHttpRequestMethods,
|
||||
|
||||
@@ -10,23 +10,17 @@ import type {
|
||||
} from 'n8n-workflow';
|
||||
import { NodeConnectionType, NodeOperationError } from 'n8n-workflow';
|
||||
|
||||
import { conversationFields, conversationOperations } from './ConversationDescription';
|
||||
|
||||
import { customerFields, customerOperations } from './CustomerDescription';
|
||||
|
||||
import type { ICustomer } from './CustomerInterface';
|
||||
|
||||
import type { IConversation } from './ConversationInterface';
|
||||
|
||||
import { helpscoutApiRequest, helpscoutApiRequestAllItems } from './GenericFunctions';
|
||||
|
||||
import { mailboxFields, mailboxOperations } from './MailboxDescription';
|
||||
|
||||
import { threadFields, threadOperations } from './ThreadDescription';
|
||||
|
||||
import type { IAttachment, IThread } from './ThreadInterface';
|
||||
import { isoCountryCodes } from '@utils/ISOCountryCodes';
|
||||
|
||||
import { conversationFields, conversationOperations } from './ConversationDescription';
|
||||
import type { IConversation } from './ConversationInterface';
|
||||
import { customerFields, customerOperations } from './CustomerDescription';
|
||||
import type { ICustomer } from './CustomerInterface';
|
||||
import { helpscoutApiRequest, helpscoutApiRequestAllItems } from './GenericFunctions';
|
||||
import { mailboxFields, mailboxOperations } from './MailboxDescription';
|
||||
import { threadFields, threadOperations } from './ThreadDescription';
|
||||
import type { IAttachment, IThread } from './ThreadInterface';
|
||||
|
||||
export class HelpScout implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'HelpScout',
|
||||
|
||||
Reference in New Issue
Block a user