@tilde-nlp/ngx-services 8.0.25 → 8.0.27
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 +7 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -373,6 +373,8 @@ interface PostOfflineEventRequest {
|
|
|
373
373
|
fragmentLength?: number;
|
|
374
374
|
/** Speaker count configuration */
|
|
375
375
|
speakerCount?: number;
|
|
376
|
+
/** Time in seconds after which the event should be deleted */
|
|
377
|
+
deleteAfterSeconds?: number;
|
|
376
378
|
/** Email where link to transcript should be sent */
|
|
377
379
|
email?: string;
|
|
378
380
|
emailLanguage?: string;
|
|
@@ -473,10 +475,11 @@ interface OfflineEventDownloadConfig {
|
|
|
473
475
|
extension: FILE_EXTENSION;
|
|
474
476
|
edited?: boolean;
|
|
475
477
|
diarization?: boolean;
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
478
|
+
showAuthor?: boolean;
|
|
479
|
+
showFileName?: boolean;
|
|
480
|
+
showChecksum?: boolean;
|
|
481
|
+
showDuration?: boolean;
|
|
482
|
+
showUploadTime?: boolean;
|
|
480
483
|
}
|
|
481
484
|
|
|
482
485
|
declare class OfflineEventsService extends BaseService<SpeechApiConfiguration> {
|