@tilde-nlp/ngx-services 8.0.55 → 8.0.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +6 -12
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -668,11 +668,10 @@ declare class TextToSpeechService extends BaseService<TextToSpeechApiConfigurati
|
|
|
668
668
|
}
|
|
669
669
|
|
|
670
670
|
interface JobHistory {
|
|
671
|
-
id: string;
|
|
672
671
|
userId: string;
|
|
673
|
-
jobId: number;
|
|
674
672
|
type: string;
|
|
675
|
-
|
|
673
|
+
date: Date;
|
|
674
|
+
userRoles: string[];
|
|
676
675
|
}
|
|
677
676
|
|
|
678
677
|
declare enum JobFragmentStatus {
|
|
@@ -684,24 +683,19 @@ declare enum JobFragmentStatus {
|
|
|
684
683
|
}
|
|
685
684
|
|
|
686
685
|
interface JobFragment {
|
|
687
|
-
id: string;
|
|
688
686
|
index: number;
|
|
689
|
-
eventTitle: string;
|
|
690
|
-
startTime: Date;
|
|
691
|
-
endTime: Date;
|
|
692
|
-
status: JobFragmentStatus;
|
|
693
687
|
nextSegmentId: string;
|
|
694
688
|
previousSegmentId: string;
|
|
695
|
-
dateCreated:
|
|
689
|
+
dateCreated: Date;
|
|
696
690
|
dateModified: string;
|
|
697
691
|
duration: string;
|
|
698
692
|
eventId: string;
|
|
699
|
-
filename: string | null;
|
|
700
|
-
filesize: number;
|
|
701
693
|
jobId: string;
|
|
702
|
-
|
|
694
|
+
userId: string;
|
|
703
695
|
system: string;
|
|
704
696
|
timestamp: Date;
|
|
697
|
+
mergeStatus: string;
|
|
698
|
+
transcriptionStatus: JobFragmentStatus;
|
|
705
699
|
}
|
|
706
700
|
|
|
707
701
|
interface JobFragmentReadOnlyResponse {
|