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,5 +1,4 @@
|
||||
import type { Readable } from 'stream';
|
||||
|
||||
import moment from 'moment-timezone';
|
||||
import type {
|
||||
IDataObject,
|
||||
IExecuteFunctions,
|
||||
@@ -14,7 +13,6 @@ import type {
|
||||
INodeTypeDescription,
|
||||
JsonObject,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
import {
|
||||
BINARY_ENCODING,
|
||||
NodeConnectionType,
|
||||
@@ -22,21 +20,10 @@ import {
|
||||
SEND_AND_WAIT_OPERATION,
|
||||
WAIT_INDEFINITELY,
|
||||
} from 'n8n-workflow';
|
||||
import type { Readable } from 'stream';
|
||||
|
||||
import moment from 'moment-timezone';
|
||||
import { channelFields, channelOperations } from './ChannelDescription';
|
||||
import {
|
||||
channelRLC,
|
||||
messageFields,
|
||||
messageOperations,
|
||||
sendToSelector,
|
||||
userRLC,
|
||||
} from './MessageDescription';
|
||||
import { starFields, starOperations } from './StarDescription';
|
||||
import { fileFields, fileOperations } from './FileDescription';
|
||||
import { reactionFields, reactionOperations } from './ReactionDescription';
|
||||
import { userGroupFields, userGroupOperations } from './UserGroupDescription';
|
||||
import { userFields, userOperations } from './UserDescription';
|
||||
import {
|
||||
slackApiRequest,
|
||||
slackApiRequestAllItems,
|
||||
@@ -44,6 +31,17 @@ import {
|
||||
getTarget,
|
||||
createSendAndWaitMessageBody,
|
||||
} from './GenericFunctions';
|
||||
import {
|
||||
channelRLC,
|
||||
messageFields,
|
||||
messageOperations,
|
||||
sendToSelector,
|
||||
userRLC,
|
||||
} from './MessageDescription';
|
||||
import { reactionFields, reactionOperations } from './ReactionDescription';
|
||||
import { starFields, starOperations } from './StarDescription';
|
||||
import { userFields, userOperations } from './UserDescription';
|
||||
import { userGroupFields, userGroupOperations } from './UserGroupDescription';
|
||||
import { getSendAndWaitProperties, sendAndWaitWebhook } from '../../../utils/sendAndWait/utils';
|
||||
|
||||
export class SlackV2 implements INodeType {
|
||||
|
||||
Reference in New Issue
Block a user