| /** | |
| * ID Generation Utility | |
| */ | |
| export function generateJobId(): string { | |
| const timestamp = Date.now().toString(36); | |
| const random = Math.random().toString(36).slice(2, 8); | |
| return `wf_${timestamp}_${random}`; | |
| } | |
| export function generateNodeId(prefix = 'node'): string { | |
| return `${prefix}_${Math.random().toString(36).slice(2, 10)}`; | |
| } | |