TaskUpdated

Triggers when task fields was updated

{
    event: 'TaskUpdated',
    data: {
        userId: uuid,
        updated: [{
            taskId: uuid,
            updatedFields: {
                name: string,
                startDate: date,
                endDate: date,
                description: string,
                status: int,
                priority: int,
                parent: int,
                type: string,
                progress: float,
                duration: int,
                estimation: int,
                deadline: date,
                color: int
            }
        }]
    },
    teamId: uuid
}