0.1.6Updated a month ago
interface I_InfinityRequestStep {
  timestamp: number
  step_name: string
}

interface I_InfinityRequest {
  id?: number
  request_id: string
  user_key?: string
  steps: I_InfinityRequestStep[]
  timestamp_start: Date
  timestamp_end?: Date
  duration?: number
}