mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-21 03:42:16 +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
@@ -9,10 +9,6 @@ import type {
|
||||
} from 'n8n-workflow';
|
||||
import { NodeApiError } from 'n8n-workflow';
|
||||
|
||||
import type { TDtableMetadataColumns, TDtableViewColumns, TEndpointVariableName } from './types';
|
||||
|
||||
import { schema } from './Schema';
|
||||
|
||||
import type {
|
||||
ICredential,
|
||||
ICtx,
|
||||
@@ -22,6 +18,8 @@ import type {
|
||||
IRow,
|
||||
IRowObject,
|
||||
} from './Interfaces';
|
||||
import { schema } from './Schema';
|
||||
import type { TDtableMetadataColumns, TDtableViewColumns, TEndpointVariableName } from './types';
|
||||
|
||||
const userBaseUri = (uri?: string) => {
|
||||
if (uri === undefined) {
|
||||
|
||||
@@ -20,12 +20,9 @@ import {
|
||||
split,
|
||||
updateAble,
|
||||
} from './GenericFunctions';
|
||||
|
||||
import { rowFields, rowOperations } from './RowDescription';
|
||||
|
||||
import type { TColumnsUiValues, TColumnValue } from './types';
|
||||
|
||||
import type { ICtx, IRow, IRowObject } from './Interfaces';
|
||||
import { rowFields, rowOperations } from './RowDescription';
|
||||
import type { TColumnsUiValues, TColumnValue } from './types';
|
||||
|
||||
export class SeaTable implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
import moment from 'moment-timezone';
|
||||
import {
|
||||
type IPollFunctions,
|
||||
type ILoadOptionsFunctions,
|
||||
@@ -8,9 +9,7 @@ import {
|
||||
NodeConnectionType,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
import moment from 'moment-timezone';
|
||||
import { getColumns, rowFormatColumns, seaTableApiRequest, simplify } from './GenericFunctions';
|
||||
|
||||
import type { ICtx, IRow, IRowResponse } from './Interfaces';
|
||||
|
||||
export class SeaTableTrigger implements INodeType {
|
||||
|
||||
@@ -10,6 +10,7 @@ export type TSeaTableServerEdition = 'enterprise edition';
|
||||
// ----------------------------------
|
||||
|
||||
import type { ICredentialDataDecryptedObject } from 'n8n-workflow';
|
||||
|
||||
import type { IDtableMetadataColumn, IDtableMetadataTable, TDtableViewColumn } from './Interfaces';
|
||||
|
||||
export type TInheritColumnTypeTime = 'ctime' | 'mtime';
|
||||
|
||||
Reference in New Issue
Block a user