mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 09:36:44 +00:00
23 lines
639 B
TypeScript
23 lines
639 B
TypeScript
import { StatisticsNames, type WorkflowStatistics } from '@n8n/db';
|
|
import { WorkflowStatisticsRepository } from '@n8n/db';
|
|
import { Container } from '@n8n/di';
|
|
import type { Workflow } from 'n8n-workflow';
|
|
|
|
export async function createWorkflowStatisticsItem(
|
|
workflowId: Workflow['id'],
|
|
data?: Partial<WorkflowStatistics>,
|
|
) {
|
|
const entity = Container.get(WorkflowStatisticsRepository).create({
|
|
count: 0,
|
|
latestEvent: new Date().toISOString(),
|
|
name: StatisticsNames.manualSuccess,
|
|
...(data ?? {}),
|
|
workflowId,
|
|
});
|
|
|
|
// @ts-ignore CAT-957
|
|
await Container.get(WorkflowStatisticsRepository).insert(entity);
|
|
|
|
return entity;
|
|
}
|