@tilde-nlp/ngx-services 8.0.27 → 8.0.29
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 -6
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -472,14 +472,14 @@ declare enum FILE_EXTENSION {
|
|
|
472
472
|
}
|
|
473
473
|
|
|
474
474
|
interface OfflineEventDownloadConfig {
|
|
475
|
-
extension
|
|
475
|
+
extension?: FILE_EXTENSION;
|
|
476
476
|
edited?: boolean;
|
|
477
477
|
diarization?: boolean;
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
478
|
+
includeAuthor?: boolean;
|
|
479
|
+
includeFileName?: boolean;
|
|
480
|
+
includeChecksum?: boolean;
|
|
481
|
+
includeDuration?: boolean;
|
|
482
|
+
includeUploadTime?: boolean;
|
|
483
483
|
}
|
|
484
484
|
|
|
485
485
|
declare class OfflineEventsService extends BaseService<SpeechApiConfiguration> {
|