n8n
Version:
n8n Workflow Automation Tool
79 lines (78 loc) • 3.74 kB
TypeScript
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 { AuthUser } from './auth-user';
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 { InstalledNodes } from './installed-nodes';
import { InstalledPackages } from './installed-packages';
import { InvalidAuthToken } from './invalid-auth-token';
import { ProcessedData } from './processed-data';
import { Project } from './project';
import { ProjectRelation } from './project-relation';
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 { TestDefinition } from './test-definition.ee';
import { TestMetric } from './test-metric.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';
import { InsightsByPeriod } from '../../modules/insights/database/entities/insights-by-period';
import { InsightsMetadata } from '../../modules/insights/database/entities/insights-metadata';
import { InsightsRaw } from '../../modules/insights/database/entities/insights-raw';
export declare const entities: {
AnnotationTagEntity: typeof AnnotationTagEntity;
AnnotationTagMapping: typeof AnnotationTagMapping;
AuthIdentity: typeof AuthIdentity;
AuthProviderSyncHistory: typeof AuthProviderSyncHistory;
AuthUser: typeof AuthUser;
CredentialsEntity: typeof CredentialsEntity;
EventDestinations: typeof EventDestinations;
ExecutionAnnotation: typeof ExecutionAnnotation;
ExecutionEntity: typeof ExecutionEntity;
InstalledNodes: typeof InstalledNodes;
InstalledPackages: typeof InstalledPackages;
InvalidAuthToken: typeof InvalidAuthToken;
Settings: typeof Settings;
SharedCredentials: typeof SharedCredentials;
SharedWorkflow: typeof SharedWorkflow;
TagEntity: typeof TagEntity;
User: typeof User;
Variables: typeof Variables;
WebhookEntity: typeof WebhookEntity;
WorkflowEntity: typeof WorkflowEntity;
WorkflowTagMapping: typeof WorkflowTagMapping;
WorkflowStatistics: typeof WorkflowStatistics;
ExecutionMetadata: typeof ExecutionMetadata;
ExecutionData: typeof ExecutionData;
WorkflowHistory: typeof WorkflowHistory;
Project: typeof Project;
ProjectRelation: typeof ProjectRelation;
ApiKey: typeof ApiKey;
ProcessedData: typeof ProcessedData;
TestDefinition: typeof TestDefinition;
TestMetric: typeof TestMetric;
TestRun: typeof TestRun;
TestCaseExecution: typeof TestCaseExecution;
Folder: typeof Folder;
FolderTagMapping: typeof FolderTagMapping;
InsightsRaw: typeof InsightsRaw;
InsightsMetadata: typeof InsightsMetadata;
InsightsByPeriod: typeof InsightsByPeriod;
};