Files
Agent-n8n/n8n-n8n-1.109.2/packages/@n8n/db/src/entities/index.ts
2025-09-08 04:48:28 +08:00

103 lines
2.6 KiB
TypeScript
Executable File

import { AnnotationTagEntity } from './annotation-tag-entity.ee';
import { AnnotationTagMapping } from './annotation-tag-mapping.ee';
import { ApiKey } from './api-key';
import { AuthIdentity } from './auth-identity';
import { AuthProviderSyncHistory } from './auth-provider-sync-history';
import { CredentialsEntity } from './credentials-entity';
import { EventDestinations } from './event-destinations';
import { ExecutionAnnotation } from './execution-annotation.ee';
import { ExecutionData } from './execution-data';
import { ExecutionEntity } from './execution-entity';
import { ExecutionMetadata } from './execution-metadata';
import { Folder } from './folder';
import { FolderTagMapping } from './folder-tag-mapping';
import { InvalidAuthToken } from './invalid-auth-token';
import { ProcessedData } from './processed-data';
import { Project } from './project';
import { ProjectRelation } from './project-relation';
import { Role } from './role';
import { Scope } from './scope';
import { Settings } from './settings';
import { SharedCredentials } from './shared-credentials';
import { SharedWorkflow } from './shared-workflow';
import { TagEntity } from './tag-entity';
import { TestCaseExecution } from './test-case-execution.ee';
import { TestRun } from './test-run.ee';
import { User } from './user';
import { Variables } from './variables';
import { WebhookEntity } from './webhook-entity';
import { WorkflowEntity } from './workflow-entity';
import { WorkflowHistory } from './workflow-history';
import { WorkflowStatistics } from './workflow-statistics';
import { WorkflowTagMapping } from './workflow-tag-mapping';
export {
EventDestinations,
InvalidAuthToken,
ProcessedData,
Settings,
Variables,
ApiKey,
WebhookEntity,
AuthIdentity,
CredentialsEntity,
Folder,
Project,
ProjectRelation,
Role,
Scope,
SharedCredentials,
SharedWorkflow,
TagEntity,
User,
WorkflowEntity,
WorkflowStatistics,
WorkflowTagMapping,
FolderTagMapping,
AuthProviderSyncHistory,
WorkflowHistory,
ExecutionData,
ExecutionMetadata,
AnnotationTagEntity,
ExecutionAnnotation,
AnnotationTagMapping,
TestRun,
TestCaseExecution,
ExecutionEntity,
};
export const entities = {
EventDestinations,
InvalidAuthToken,
ProcessedData,
Settings,
Variables,
ApiKey,
WebhookEntity,
AuthIdentity,
CredentialsEntity,
Folder,
Project,
ProjectRelation,
Scope,
SharedCredentials,
SharedWorkflow,
TagEntity,
User,
WorkflowEntity,
WorkflowStatistics,
WorkflowTagMapping,
FolderTagMapping,
AuthProviderSyncHistory,
WorkflowHistory,
ExecutionData,
ExecutionMetadata,
AnnotationTagEntity,
ExecutionAnnotation,
AnnotationTagMapping,
TestRun,
TestCaseExecution,
ExecutionEntity,
Role,
};