mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-28 07:17:04 +02:00
fix(core): Fix direct import of DTOs (no-changelog) (#18472)
This commit is contained in:
parent
f8f54f896b
commit
adaa1180eb
|
|
@ -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';
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user