tencentcloud-sdk-trtc 3.0.1123 → 3.0.1128

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4bd190712763744dfa0a90d9cde36e574c0f9703
4
- data.tar.gz: 4306bc9b602c2ac3edcc06f4525b6278702dc225
3
+ metadata.gz: 050c8dc18c78ab126c16364cc957a7cc2c759540
4
+ data.tar.gz: 18b7a4aab1abf1e43db552f9ff8764c9fdd28a6b
5
5
  SHA512:
6
- metadata.gz: 8d9f0cca3c16aa53e8bdf28e34e527ae80dc58bdda8b34228dffa5a30901673af2188e883a355ec568febb532b18fee3698c4c7f76bdc19587d3673cdadebdb4
7
- data.tar.gz: 66b66c117736e412d2d8df1b48069513e467b2cd847c208b447a9ed8f6c1d6e107769de3d2c1140915f797ea10d60d173b629783254dcb3ec4c25461bcb07ab6
6
+ metadata.gz: 05639abfa007ea2b43add1010c0b4834114af98d69e906d425d5738ff645c8b7745b855f540412ed3207bfa9eadcb693daafcf8bad5d3f1688c3bcc4cde945f4
7
+ data.tar.gz: cdc4c71d186d2b555b22d3d3597444d7434ca7fd5ea8ae032e20c472c5aaf58cd6fd19c831aa5015f205a321353d0d90493fa5b6ccf856204e1b0ba5fab11071
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1123
1
+ 3.0.1128
@@ -738,6 +738,8 @@ module TencentCloud
738
738
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
739
739
  end
740
740
 
741
+ # 云监控monitor接口已下线,trtc同步下线接口
742
+
741
743
  # 查询TRTC监控仪表盘-数据大盘质量指标(包括下列指标)
742
744
  # joinSuccessRate:加入频道成功率。
743
745
  # joinSuccessIn5sRate:5s内加入频道成功率。
@@ -801,6 +803,8 @@ module TencentCloud
801
803
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
802
804
  end
803
805
 
806
+ # 云监控monitor接口已下线,trtc同步下线接口
807
+
804
808
  # 查询TRTC监控仪表盘-数据大盘规模指标(会返回通话人数,通话房间数,峰值同时在线人数,峰值同时在线频道数)
805
809
  # userCount:通话人数,
806
810
  # roomCount:通话房间数,从有用户加入频道到所有用户离开频道计为一个通话频道。
@@ -861,6 +865,8 @@ module TencentCloud
861
865
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
862
866
  end
863
867
 
868
+ # 云监控monitor接口已下线,trtc同步下线接口
869
+
864
870
  # 查询TRTC监控仪表盘-实时监控质量指标(会返回下列指标)
865
871
  # -视频卡顿率
866
872
  # -音频卡顿率
@@ -118,10 +118,13 @@ module TencentCloud
118
118
  # - 0表示尽快显示,不会和音频播放进行同步。此时字幕全量下发,后面的字幕会包含前面的字幕。
119
119
  # - 1表示句子级别的实时显示,会和音频播放进行同步,只有当前句子对应的音频播放完后,下一条字幕才会下发。此时字幕增量下发,端上需要把前后的字幕进行拼接才是完整字幕。
120
120
  # @type SubtitleMode: Integer
121
+ # @param InterruptWordList: 打断词列表,在AI说话期间,只有说出列表中的打断词才会打断AI说话。
122
+ # 注意:打断词不会触发AI回复。
123
+ # @type InterruptWordList: Array
121
124
 
122
- attr_accessor :UserId, :UserSig, :TargetUserId, :MaxIdleTime, :WelcomeMessage, :InterruptMode, :InterruptSpeechDuration, :TurnDetectionMode, :FilterOneWord, :WelcomeMessagePriority, :FilterBracketsContent, :AmbientSound, :VoicePrint, :TurnDetection, :SubtitleMode
125
+ attr_accessor :UserId, :UserSig, :TargetUserId, :MaxIdleTime, :WelcomeMessage, :InterruptMode, :InterruptSpeechDuration, :TurnDetectionMode, :FilterOneWord, :WelcomeMessagePriority, :FilterBracketsContent, :AmbientSound, :VoicePrint, :TurnDetection, :SubtitleMode, :InterruptWordList
123
126
 
124
- def initialize(userid=nil, usersig=nil, targetuserid=nil, maxidletime=nil, welcomemessage=nil, interruptmode=nil, interruptspeechduration=nil, turndetectionmode=nil, filteroneword=nil, welcomemessagepriority=nil, filterbracketscontent=nil, ambientsound=nil, voiceprint=nil, turndetection=nil, subtitlemode=nil)
127
+ def initialize(userid=nil, usersig=nil, targetuserid=nil, maxidletime=nil, welcomemessage=nil, interruptmode=nil, interruptspeechduration=nil, turndetectionmode=nil, filteroneword=nil, welcomemessagepriority=nil, filterbracketscontent=nil, ambientsound=nil, voiceprint=nil, turndetection=nil, subtitlemode=nil, interruptwordlist=nil)
125
128
  @UserId = userid
126
129
  @UserSig = usersig
127
130
  @TargetUserId = targetuserid
@@ -137,6 +140,7 @@ module TencentCloud
137
140
  @VoicePrint = voiceprint
138
141
  @TurnDetection = turndetection
139
142
  @SubtitleMode = subtitlemode
143
+ @InterruptWordList = interruptwordlist
140
144
  end
141
145
 
142
146
  def deserialize(params)
@@ -164,6 +168,7 @@ module TencentCloud
164
168
  @TurnDetection.deserialize(params['TurnDetection'])
165
169
  end
166
170
  @SubtitleMode = params['SubtitleMode']
171
+ @InterruptWordList = params['InterruptWordList']
167
172
  end
168
173
  end
169
174
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-trtc
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1123
4
+ version: 3.0.1128
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-08-14 00:00:00.000000000 Z
11
+ date: 2025-08-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common