mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
fix(core): Fix direct import of DTOs (no-changelog) (#18472)
This commit is contained in:
@@ -7,8 +7,8 @@ import type {
|
||||
DataStoreListOptions,
|
||||
DataStoreRows,
|
||||
UpsertDataStoreRowsDto,
|
||||
UpdateDataStoreDto,
|
||||
} from '@n8n/api-types';
|
||||
import { UpdateDataStoreDto } from '@n8n/api-types/src/dto/data-store/update-data-store.dto';
|
||||
import { Logger } from '@n8n/backend-common';
|
||||
import { Service } from '@n8n/di';
|
||||
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
import type { UnixTimestamp, UpdateApiKeyRequestDto } from '@n8n/api-types';
|
||||
import type { CreateApiKeyRequestDto } from '@n8n/api-types/src/dto/api-keys/create-api-key-request.dto';
|
||||
import type { CreateApiKeyRequestDto, UnixTimestamp, UpdateApiKeyRequestDto } from '@n8n/api-types';
|
||||
import type { AuthenticatedRequest, User } from '@n8n/db';
|
||||
import { ApiKey, ApiKeyRepository, UserRepository } from '@n8n/db';
|
||||
import { Service } from '@n8n/di';
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import type { ImportWorkflowFromUrlDto } from '@n8n/api-types/src/dto/workflows/import-workflow-from-url.dto';
|
||||
import type { ImportWorkflowFromUrlDto } from '@n8n/api-types';
|
||||
import type { AuthenticatedRequest } from '@n8n/db';
|
||||
import axios from 'axios';
|
||||
import type { Response } from 'express';
|
||||
|
||||
Reference in New Issue
Block a user