init the start of a record

This commit is contained in:
Julien Calixte
2023-04-10 16:16:08 +02:00
parent 531a05be26
commit a934c51a2e
7 changed files with 100 additions and 1 deletions

View File

@@ -4,7 +4,15 @@ import type { StepRecordable } from './step-recordable'
export interface Recordable {
id: string
taskId: string
/**
* @deprecated
* TODO: Compute this data from step records
*/
start: ISODate
/**
* @deprecated
* TODO: Compute this data from step records
*/
end?: ISODate
stepRecords: Record<string, StepRecordable>
}