mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
52 lines
1.6 KiB
TypeScript
52 lines
1.6 KiB
TypeScript
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 { ExecutionEntity } from './execution-entity';
|
|
import { InstalledNodes } from './installed-nodes';
|
|
import { InstalledPackages } from './installed-packages';
|
|
import { Settings } from './settings';
|
|
import { SharedCredentials } from './shared-credentials';
|
|
import { SharedWorkflow } from './shared-workflow';
|
|
import { TagEntity } from './tag-entity';
|
|
import { User } from './user';
|
|
import { Variables } from './variables';
|
|
import { WebhookEntity } from './webhook-entity';
|
|
import { WorkflowEntity } from './workflow-entity';
|
|
import { WorkflowTagMapping } from './workflow-tag-mapping';
|
|
import { WorkflowStatistics } from './workflow-statistics';
|
|
import { ExecutionMetadata } from './execution-metadata';
|
|
import { ExecutionData } from './execution-data';
|
|
import { WorkflowHistory } from './workflow-history';
|
|
import { Project } from './project';
|
|
import { ProjectRelation } from './project-relation';
|
|
import { InvalidAuthToken } from './invalid-auth-token';
|
|
|
|
export const entities = {
|
|
AuthIdentity,
|
|
AuthProviderSyncHistory,
|
|
AuthUser,
|
|
CredentialsEntity,
|
|
EventDestinations,
|
|
ExecutionEntity,
|
|
InstalledNodes,
|
|
InstalledPackages,
|
|
InvalidAuthToken,
|
|
Settings,
|
|
SharedCredentials,
|
|
SharedWorkflow,
|
|
TagEntity,
|
|
User,
|
|
Variables,
|
|
WebhookEntity,
|
|
WorkflowEntity,
|
|
WorkflowTagMapping,
|
|
WorkflowStatistics,
|
|
ExecutionMetadata,
|
|
ExecutionData,
|
|
WorkflowHistory,
|
|
Project,
|
|
ProjectRelation,
|
|
};
|