mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
This also gets rid of `Db.collection`, which was another source of circular dependencies.
44 lines
1022 B
TypeScript
44 lines
1022 B
TypeScript
import Container from 'typedi';
|
|
import { v4 as uuid } from 'uuid';
|
|
import type { WorkflowHistory } from '@db/entities/WorkflowHistory';
|
|
import { WorkflowHistoryRepository } from '@db/repositories/workflowHistory.repository';
|
|
|
|
export async function createWorkflowHistoryItem(
|
|
workflowId: string,
|
|
data?: Partial<WorkflowHistory>,
|
|
) {
|
|
return Container.get(WorkflowHistoryRepository).save({
|
|
authors: 'John Smith',
|
|
connections: {},
|
|
nodes: [
|
|
{
|
|
id: 'uuid-1234',
|
|
name: 'Start',
|
|
parameters: {},
|
|
position: [-20, 260],
|
|
type: 'n8n-nodes-base.start',
|
|
typeVersion: 1,
|
|
},
|
|
],
|
|
versionId: uuid(),
|
|
...(data ?? {}),
|
|
workflowId,
|
|
});
|
|
}
|
|
|
|
export async function createManyWorkflowHistoryItems(
|
|
workflowId: string,
|
|
count: number,
|
|
time?: Date,
|
|
) {
|
|
const baseTime = (time ?? new Date()).valueOf();
|
|
return Promise.all(
|
|
[...Array(count)].map(async (_, i) =>
|
|
createWorkflowHistoryItem(workflowId, {
|
|
createdAt: new Date(baseTime + i),
|
|
updatedAt: new Date(baseTime + i),
|
|
}),
|
|
),
|
|
);
|
|
}
|