mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 11:22:15 +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,5 @@
|
||||
import { snakeCase } from 'change-case';
|
||||
import moment from 'moment-timezone';
|
||||
import type {
|
||||
IExecuteFunctions,
|
||||
IDataObject,
|
||||
@@ -9,23 +11,16 @@ import type {
|
||||
} from 'n8n-workflow';
|
||||
import { NodeConnectionType } from 'n8n-workflow';
|
||||
|
||||
import { snakeCase } from 'change-case';
|
||||
import moment from 'moment-timezone';
|
||||
import {
|
||||
keysToSnakeCase,
|
||||
pagerDutyApiRequest,
|
||||
pagerDutyApiRequestAllItems,
|
||||
} from './GenericFunctions';
|
||||
|
||||
import { incidentFields, incidentOperations } from './IncidentDescription';
|
||||
|
||||
import { incidentNoteFields, incidentNoteOperations } from './IncidentNoteDescription';
|
||||
|
||||
import { logEntryFields, logEntryOperations } from './LogEntryDescription';
|
||||
|
||||
import { userFields, userOperations } from './UserDescription';
|
||||
|
||||
import type { IIncident } from './IncidentInterface';
|
||||
import { incidentNoteFields, incidentNoteOperations } from './IncidentNoteDescription';
|
||||
import { logEntryFields, logEntryOperations } from './LogEntryDescription';
|
||||
import { userFields, userOperations } from './UserDescription';
|
||||
|
||||
export class PagerDuty implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
|
||||
Reference in New Issue
Block a user