tencentcloud-sdk-nodejs-ams 4.1.138 → 4.1.158
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/package.json
CHANGED
|
@@ -296,6 +296,39 @@ export interface CreateAudioModerationTaskRequest {
|
|
|
296
296
|
*/
|
|
297
297
|
User?: User;
|
|
298
298
|
}
|
|
299
|
+
/**
|
|
300
|
+
* 出行结果
|
|
301
|
+
*/
|
|
302
|
+
export interface TravelResults {
|
|
303
|
+
/**
|
|
304
|
+
* 一级标签
|
|
305
|
+
*/
|
|
306
|
+
Label?: string;
|
|
307
|
+
/**
|
|
308
|
+
* 二级标签
|
|
309
|
+
*/
|
|
310
|
+
SubLabel?: string;
|
|
311
|
+
/**
|
|
312
|
+
* 风险等级
|
|
313
|
+
*/
|
|
314
|
+
RiskLevel?: string;
|
|
315
|
+
/**
|
|
316
|
+
* 出行音频角色
|
|
317
|
+
*/
|
|
318
|
+
AudioRole?: string;
|
|
319
|
+
/**
|
|
320
|
+
* 出行语音文本
|
|
321
|
+
*/
|
|
322
|
+
AudioText?: string;
|
|
323
|
+
/**
|
|
324
|
+
* 开始时间
|
|
325
|
+
*/
|
|
326
|
+
StartTime?: number;
|
|
327
|
+
/**
|
|
328
|
+
* 结束时间
|
|
329
|
+
*/
|
|
330
|
+
EndTime?: number;
|
|
331
|
+
}
|
|
299
332
|
/**
|
|
300
333
|
* 音视频任务数据结构
|
|
301
334
|
*/
|
|
@@ -777,37 +810,21 @@ export interface SpeakerResults {
|
|
|
777
810
|
EndTime?: string;
|
|
778
811
|
}
|
|
779
812
|
/**
|
|
780
|
-
*
|
|
813
|
+
* ASR识别结果在音频中的起止时间
|
|
781
814
|
*/
|
|
782
|
-
export interface
|
|
783
|
-
/**
|
|
784
|
-
* 一级标签
|
|
785
|
-
*/
|
|
786
|
-
Label?: string;
|
|
787
|
-
/**
|
|
788
|
-
* 二级标签
|
|
789
|
-
*/
|
|
790
|
-
SubLabel?: string;
|
|
791
|
-
/**
|
|
792
|
-
* 风险等级
|
|
793
|
-
*/
|
|
794
|
-
RiskLevel?: string;
|
|
795
|
-
/**
|
|
796
|
-
* 出行音频角色
|
|
797
|
-
*/
|
|
798
|
-
AudioRole?: string;
|
|
815
|
+
export interface Sentence {
|
|
799
816
|
/**
|
|
800
|
-
*
|
|
817
|
+
* ASR句子
|
|
801
818
|
*/
|
|
802
|
-
|
|
819
|
+
Text?: string;
|
|
803
820
|
/**
|
|
804
|
-
*
|
|
821
|
+
* 起始时间
|
|
805
822
|
*/
|
|
806
|
-
StartTime?:
|
|
823
|
+
StartTime?: string;
|
|
807
824
|
/**
|
|
808
825
|
* 结束时间
|
|
809
826
|
*/
|
|
810
|
-
EndTime?:
|
|
827
|
+
EndTime?: string;
|
|
811
828
|
}
|
|
812
829
|
/**
|
|
813
830
|
* 音频审核输出参数
|
|
@@ -890,6 +907,14 @@ export interface AudioResult {
|
|
|
890
907
|
* 审核检测类型
|
|
891
908
|
*/
|
|
892
909
|
HitType?: string;
|
|
910
|
+
/**
|
|
911
|
+
* ASR句子的起止时间
|
|
912
|
+
*/
|
|
913
|
+
Sentences?: Array<Sentence>;
|
|
914
|
+
/**
|
|
915
|
+
* 切片请求ID
|
|
916
|
+
*/
|
|
917
|
+
RequestId?: string;
|
|
893
918
|
}
|
|
894
919
|
/**
|
|
895
920
|
* 音频呻吟审核结果
|