Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
feat: only iimport transcript once
Browse files Browse the repository at this point in the history
  • Loading branch information
LarsLiden committed Jun 5, 2019
1 parent 52b375c commit 811433c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/TrainDialog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,11 @@ export interface TrainDialogInput {
validity?: Validity
}

export interface TrainDialogClientData {
// List of .transcript files used to create this TrainDialog
importHashes: string[]
}

export interface TrainDialog extends TrainDialogInput {
createdDateTime: string
lastModifiedDateTime: string
Expand All @@ -74,6 +79,7 @@ export interface TrainDialog extends TrainDialogInput {
initialFilledEntities: FilledEntity[]
tags: string[]
description: string
clientData?: TrainDialogClientData
}

export interface TrainResponse {
Expand Down

0 comments on commit 811433c

Please sign in to comment.