tencentcloud-sdk-ccc 3.0.1174 → 3.0.1178

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: ba6e0cf95171d098c1ff9dbbdb62fda14ab06fb3
4
- data.tar.gz: 1f63a5a6d695cea6878e6ec56e8b122c45d8562d
3
+ metadata.gz: 06a4e1d9fb0f1db4e3da85e80df9f56333d43e90
4
+ data.tar.gz: 7fecd5cbc5cbeda8337ff3099a037fb5fcb87db0
5
5
  SHA512:
6
- metadata.gz: 571863b18e3afced0e44c809b580f19adfba4d7b62785bac9f05d7c1d164ae9b4733b57461645ac0b0c8e03e39ae0020e695af5a2f8e1458984dd3200a95ea7c
7
- data.tar.gz: 42de6474f627ada7a41eb77bd64932eabba4d85db4ddfdf719bf0a28b335fa878cbd5ad8daf327f8aff817a1c3edfbb55ebda9a2740bea86dcc34d27d184dc9f
6
+ metadata.gz: 5f4fd6c47d6c6830d8541be82bba0889c56f3c041406af9ad6c4144556d2ffef65d61e3adef489e95fd4b8b4b1b06b87405b23590cba83f031d56bac03d83729
7
+ data.tar.gz: be0bf9caff0dac054d95fe94e91b24b51109f5869c3efb963bf96409f4e66783201032549f6c68dbdb5c900d44588c7d85438d9ba807327678bdb78a0ca8232e
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1174
1
+ 3.0.1178
@@ -173,7 +173,9 @@ module TencentCloud
173
173
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
174
174
  end
175
175
 
176
- # 用于调用AI模型发起外呼通话,仅限自有电话号码使用,目前开通高级版座席**限时**免费体验。
176
+ # 用于创建**一次性的智能体外呼任务**。与直接调用原始AI模型的模型通话不同,此接口基于您在实例中预配置的、具备完整业务流程的智能体来发起通话,仅限自有电话号码使用,目前开通高级版座席**限时**免费体验。
177
+
178
+ # 若需创建批量智能体外呼任务,请参考文档 [创建自动外呼任务](https://cloud.tencent.com/document/product/679/69194)。
177
179
 
178
180
  # 发起通话前,请先确认您的AI模型是否兼容 OpenAI、Azure 或 Minimax 协议,并前往模型服务商网站获取相关鉴权信息。 具体功能说明请参考文档 [腾讯云联络中心AI通话平台](https://cloud.tencent.com/document/product/679/112100)。
179
181
 
@@ -397,8 +397,8 @@ module TencentCloud
397
397
 
398
398
  attr_accessor :User, :Message, :Timestamp, :Start, :End
399
399
  extend Gem::Deprecate
400
- deprecate :Timestamp, :none, 2025, 11
401
- deprecate :Timestamp=, :none, 2025, 11
400
+ deprecate :Timestamp, :none, 2025, 12
401
+ deprecate :Timestamp=, :none, 2025, 12
402
402
 
403
403
  def initialize(user=nil, message=nil, timestamp=nil, start=nil, _end=nil)
404
404
  @User = user
@@ -612,27 +612,26 @@ module TencentCloud
612
612
  # @type SdkAppId: Integer
613
613
  # @param StaffEmail: 座席邮箱
614
614
  # @type StaffEmail: String
615
- # @param SkillGroupList: 绑定技能组列表
616
- # @type SkillGroupList: Array
617
615
  # @param StaffSkillGroupList: 绑定技能组列表(必填)
618
616
  # @type StaffSkillGroupList: Array
617
+ # @param SkillGroupList: 绑定技能组列表
618
+ # @type SkillGroupList: Array
619
619
 
620
- attr_accessor :SdkAppId, :StaffEmail, :SkillGroupList, :StaffSkillGroupList
620
+ attr_accessor :SdkAppId, :StaffEmail, :StaffSkillGroupList, :SkillGroupList
621
621
  extend Gem::Deprecate
622
- deprecate :SkillGroupList, :none, 2025, 11
623
- deprecate :SkillGroupList=, :none, 2025, 11
622
+ deprecate :SkillGroupList, :none, 2025, 12
623
+ deprecate :SkillGroupList=, :none, 2025, 12
624
624
 
625
- def initialize(sdkappid=nil, staffemail=nil, skillgrouplist=nil, staffskillgrouplist=nil)
625
+ def initialize(sdkappid=nil, staffemail=nil, staffskillgrouplist=nil, skillgrouplist=nil)
626
626
  @SdkAppId = sdkappid
627
627
  @StaffEmail = staffemail
628
- @SkillGroupList = skillgrouplist
629
628
  @StaffSkillGroupList = staffskillgrouplist
629
+ @SkillGroupList = skillgrouplist
630
630
  end
631
631
 
632
632
  def deserialize(params)
633
633
  @SdkAppId = params['SdkAppId']
634
634
  @StaffEmail = params['StaffEmail']
635
- @SkillGroupList = params['SkillGroupList']
636
635
  unless params['StaffSkillGroupList'].nil?
637
636
  @StaffSkillGroupList = []
638
637
  params['StaffSkillGroupList'].each do |i|
@@ -641,6 +640,7 @@ module TencentCloud
641
640
  @StaffSkillGroupList << staffskillgrouplist_tmp
642
641
  end
643
642
  end
643
+ @SkillGroupList = params['SkillGroupList']
644
644
  end
645
645
  end
646
646
 
@@ -1102,8 +1102,8 @@ module TencentCloud
1102
1102
 
1103
1103
  attr_accessor :SdkAppId, :AIAgentId, :Callee, :Callers, :PromptVariables, :Variables
1104
1104
  extend Gem::Deprecate
1105
- deprecate :PromptVariables, :none, 2025, 11
1106
- deprecate :PromptVariables=, :none, 2025, 11
1105
+ deprecate :PromptVariables, :none, 2025, 12
1106
+ deprecate :PromptVariables=, :none, 2025, 12
1107
1107
 
1108
1108
  def initialize(sdkappid=nil, aiagentid=nil, callee=nil, callers=nil, promptvariables=nil, variables=nil)
1109
1109
  @SdkAppId = sdkappid
@@ -1404,8 +1404,8 @@ module TencentCloud
1404
1404
 
1405
1405
  attr_accessor :SdkAppId, :Callee, :LLMType, :APIKey, :APIUrl, :SystemPrompt, :Model, :VoiceType, :Callers, :WelcomeMessage, :WelcomeType, :WelcomeMessagePriority, :MaxDuration, :Languages, :InterruptMode, :InterruptSpeechDuration, :EndFunctionEnable, :EndFunctionDesc, :TransferFunctionEnable, :TransferItems, :NotifyDuration, :NotifyMessage, :NotifyMaxCount, :CustomTTSConfig, :PromptVariables, :VadSilenceTime, :ExtractConfig, :Temperature, :Variables, :TopP, :VadLevel, :ToneWord, :EnableComplianceAudio, :EnableVoicemailDetection, :VoicemailAction, :LLMExtraBody
1406
1406
  extend Gem::Deprecate
1407
- deprecate :PromptVariables, :none, 2025, 11
1408
- deprecate :PromptVariables=, :none, 2025, 11
1407
+ deprecate :PromptVariables, :none, 2025, 12
1408
+ deprecate :PromptVariables=, :none, 2025, 12
1409
1409
 
1410
1410
  def initialize(sdkappid=nil, callee=nil, llmtype=nil, apikey=nil, apiurl=nil, systemprompt=nil, model=nil, voicetype=nil, callers=nil, welcomemessage=nil, welcometype=nil, welcomemessagepriority=nil, maxduration=nil, languages=nil, interruptmode=nil, interruptspeechduration=nil, endfunctionenable=nil, endfunctiondesc=nil, transferfunctionenable=nil, transferitems=nil, notifyduration=nil, notifymessage=nil, notifymaxcount=nil, customttsconfig=nil, promptvariables=nil, vadsilencetime=nil, extractconfig=nil, temperature=nil, variables=nil, topp=nil, vadlevel=nil, toneword=nil, enablecomplianceaudio=nil, enablevoicemaildetection=nil, voicemailaction=nil, llmextrabody=nil)
1411
1411
  @SdkAppId = sdkappid
@@ -1836,8 +1836,8 @@ module TencentCloud
1836
1836
 
1837
1837
  attr_accessor :SdkAppId, :UserId, :Callee, :Caller, :Callers, :IsForceUseMobile, :Uui, :UUI
1838
1838
  extend Gem::Deprecate
1839
- deprecate :Uui, :none, 2025, 11
1840
- deprecate :Uui=, :none, 2025, 11
1839
+ deprecate :Uui, :none, 2025, 12
1840
+ deprecate :Uui=, :none, 2025, 12
1841
1841
 
1842
1842
  def initialize(sdkappid=nil, userid=nil, callee=nil, caller=nil, callers=nil, isforceusemobile=nil, uui=nil)
1843
1843
  @SdkAppId = sdkappid
@@ -2382,25 +2382,25 @@ module TencentCloud
2382
2382
  # @type SdkAppId: Integer
2383
2383
  # @param Uid: 用户 ID,该值必须与 ClientData 字段中 Uid 的值一致
2384
2384
  # @type Uid: String
2385
- # @param ExpiredTime: 有效期,单位秒,不超过 1 小时
2386
- # @type ExpiredTime: Integer
2387
2385
  # @param ClientData: 用户签名数据,必填字段,为标准 JSON 格式
2388
2386
  # @type ClientData: String
2387
+ # @param ExpiredTime: 有效期,单位秒,不超过 1 小时
2388
+ # @type ExpiredTime: Integer
2389
2389
 
2390
- attr_accessor :SdkAppId, :Uid, :ExpiredTime, :ClientData
2390
+ attr_accessor :SdkAppId, :Uid, :ClientData, :ExpiredTime
2391
2391
 
2392
- def initialize(sdkappid=nil, uid=nil, expiredtime=nil, clientdata=nil)
2392
+ def initialize(sdkappid=nil, uid=nil, clientdata=nil, expiredtime=nil)
2393
2393
  @SdkAppId = sdkappid
2394
2394
  @Uid = uid
2395
- @ExpiredTime = expiredtime
2396
2395
  @ClientData = clientdata
2396
+ @ExpiredTime = expiredtime
2397
2397
  end
2398
2398
 
2399
2399
  def deserialize(params)
2400
2400
  @SdkAppId = params['SdkAppId']
2401
2401
  @Uid = params['Uid']
2402
- @ExpiredTime = params['ExpiredTime']
2403
2402
  @ClientData = params['ClientData']
2403
+ @ExpiredTime = params['ExpiredTime']
2404
2404
  end
2405
2405
  end
2406
2406
 
@@ -3298,10 +3298,10 @@ module TencentCloud
3298
3298
 
3299
3299
  attr_accessor :SdkAppId, :InstanceId, :CdrId, :Limit, :Offset, :Order, :SessionId
3300
3300
  extend Gem::Deprecate
3301
- deprecate :InstanceId, :none, 2025, 11
3302
- deprecate :InstanceId=, :none, 2025, 11
3303
- deprecate :CdrId, :none, 2025, 11
3304
- deprecate :CdrId=, :none, 2025, 11
3301
+ deprecate :InstanceId, :none, 2025, 12
3302
+ deprecate :InstanceId=, :none, 2025, 12
3303
+ deprecate :CdrId, :none, 2025, 12
3304
+ deprecate :CdrId=, :none, 2025, 12
3305
3305
 
3306
3306
  def initialize(sdkappid=nil, instanceid=nil, cdrid=nil, limit=nil, offset=nil, order=nil, sessionid=nil)
3307
3307
  @SdkAppId = sdkappid
@@ -3627,8 +3627,8 @@ module TencentCloud
3627
3627
 
3628
3628
  attr_accessor :StartTimestamp, :EndTimestamp, :InstanceId, :SdkAppId, :Limit, :Offset, :Type
3629
3629
  extend Gem::Deprecate
3630
- deprecate :InstanceId, :none, 2025, 11
3631
- deprecate :InstanceId=, :none, 2025, 11
3630
+ deprecate :InstanceId, :none, 2025, 12
3631
+ deprecate :InstanceId=, :none, 2025, 12
3632
3632
 
3633
3633
  def initialize(starttimestamp=nil, endtimestamp=nil, instanceid=nil, sdkappid=nil, limit=nil, offset=nil, type=nil)
3634
3634
  @StartTimestamp = starttimestamp
@@ -3665,8 +3665,8 @@ module TencentCloud
3665
3665
 
3666
3666
  attr_accessor :TotalCount, :IMCdrs, :IMCdrList, :RequestId
3667
3667
  extend Gem::Deprecate
3668
- deprecate :IMCdrs, :none, 2025, 11
3669
- deprecate :IMCdrs=, :none, 2025, 11
3668
+ deprecate :IMCdrs, :none, 2025, 12
3669
+ deprecate :IMCdrs=, :none, 2025, 12
3670
3670
 
3671
3671
  def initialize(totalcount=nil, imcdrs=nil, imcdrlist=nil, requestid=nil)
3672
3672
  @TotalCount = totalcount
@@ -4158,8 +4158,8 @@ module TencentCloud
4158
4158
 
4159
4159
  attr_accessor :TotalCount, :TelCdrs, :TelCdrList, :RequestId
4160
4160
  extend Gem::Deprecate
4161
- deprecate :TelCdrs, :none, 2025, 11
4162
- deprecate :TelCdrs=, :none, 2025, 11
4161
+ deprecate :TelCdrs, :none, 2025, 12
4162
+ deprecate :TelCdrs=, :none, 2025, 12
4163
4163
 
4164
4164
  def initialize(totalcount=nil, telcdrs=nil, telcdrlist=nil, requestid=nil)
4165
4165
  @TotalCount = totalcount
@@ -4651,8 +4651,8 @@ module TencentCloud
4651
4651
 
4652
4652
  attr_accessor :TelCallOutCount, :TelCallInCount, :SeatUsedCount, :VoipCallInCount, :VOIPCallInCount, :AsrOfflineCount, :AsrRealtimeCount, :RequestId
4653
4653
  extend Gem::Deprecate
4654
- deprecate :VoipCallInCount, :none, 2025, 11
4655
- deprecate :VoipCallInCount=, :none, 2025, 11
4654
+ deprecate :VoipCallInCount, :none, 2025, 12
4655
+ deprecate :VoipCallInCount=, :none, 2025, 12
4656
4656
 
4657
4657
  def initialize(telcalloutcount=nil, telcallincount=nil, seatusedcount=nil, voipcallincount=nil, asrofflinecount=nil, asrrealtimecount=nil, requestid=nil)
4658
4658
  @TelCallOutCount = telcalloutcount
@@ -4681,37 +4681,37 @@ module TencentCloud
4681
4681
  # @type StartTimeStamp: Integer
4682
4682
  # @param EndTimeStamp: 结束时间戳,Unix 秒级时间戳,结束时间与开始时间的区间范围小于90天。
4683
4683
  # @type EndTimeStamp: Integer
4684
- # @param InstanceId: 实例 ID(废弃)
4685
- # @type InstanceId: Integer
4686
- # @param Limit: 返回数据条数,上限(废弃)
4687
- # @type Limit: Integer
4688
- # @param Offset: 偏移(废弃)
4689
- # @type Offset: Integer
4690
4684
  # @param SdkAppId: 应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
4691
4685
  # @type SdkAppId: Integer
4692
4686
  # @param PageSize: 分页尺寸(必填),上限 100
4693
4687
  # @type PageSize: Integer
4694
4688
  # @param PageNumber: 分页页码(必填),从 0 开始
4695
4689
  # @type PageNumber: Integer
4690
+ # @param InstanceId: 实例 ID(废弃)
4691
+ # @type InstanceId: Integer
4692
+ # @param Limit: 返回数据条数,上限(废弃)
4693
+ # @type Limit: Integer
4694
+ # @param Offset: 偏移(废弃)
4695
+ # @type Offset: Integer
4696
4696
  # @param Phones: 按手机号筛选
4697
4697
  # @type Phones: Array
4698
4698
  # @param SessionIds: 按SessionId筛选
4699
4699
  # @type SessionIds: Array
4700
4700
 
4701
- attr_accessor :StartTimeStamp, :EndTimeStamp, :InstanceId, :Limit, :Offset, :SdkAppId, :PageSize, :PageNumber, :Phones, :SessionIds
4701
+ attr_accessor :StartTimeStamp, :EndTimeStamp, :SdkAppId, :PageSize, :PageNumber, :InstanceId, :Limit, :Offset, :Phones, :SessionIds
4702
4702
  extend Gem::Deprecate
4703
- deprecate :InstanceId, :none, 2025, 11
4704
- deprecate :InstanceId=, :none, 2025, 11
4703
+ deprecate :InstanceId, :none, 2025, 12
4704
+ deprecate :InstanceId=, :none, 2025, 12
4705
4705
 
4706
- def initialize(starttimestamp=nil, endtimestamp=nil, instanceid=nil, limit=nil, offset=nil, sdkappid=nil, pagesize=nil, pagenumber=nil, phones=nil, sessionids=nil)
4706
+ def initialize(starttimestamp=nil, endtimestamp=nil, sdkappid=nil, pagesize=nil, pagenumber=nil, instanceid=nil, limit=nil, offset=nil, phones=nil, sessionids=nil)
4707
4707
  @StartTimeStamp = starttimestamp
4708
4708
  @EndTimeStamp = endtimestamp
4709
- @InstanceId = instanceid
4710
- @Limit = limit
4711
- @Offset = offset
4712
4709
  @SdkAppId = sdkappid
4713
4710
  @PageSize = pagesize
4714
4711
  @PageNumber = pagenumber
4712
+ @InstanceId = instanceid
4713
+ @Limit = limit
4714
+ @Offset = offset
4715
4715
  @Phones = phones
4716
4716
  @SessionIds = sessionids
4717
4717
  end
@@ -4719,12 +4719,12 @@ module TencentCloud
4719
4719
  def deserialize(params)
4720
4720
  @StartTimeStamp = params['StartTimeStamp']
4721
4721
  @EndTimeStamp = params['EndTimeStamp']
4722
- @InstanceId = params['InstanceId']
4723
- @Limit = params['Limit']
4724
- @Offset = params['Offset']
4725
4722
  @SdkAppId = params['SdkAppId']
4726
4723
  @PageSize = params['PageSize']
4727
4724
  @PageNumber = params['PageNumber']
4725
+ @InstanceId = params['InstanceId']
4726
+ @Limit = params['Limit']
4727
+ @Offset = params['Offset']
4728
4728
  @Phones = params['Phones']
4729
4729
  @SessionIds = params['SessionIds']
4730
4730
  end
@@ -4743,8 +4743,8 @@ module TencentCloud
4743
4743
 
4744
4744
  attr_accessor :TotalCount, :TelCdrs, :TelCdrList, :RequestId
4745
4745
  extend Gem::Deprecate
4746
- deprecate :TelCdrs, :none, 2025, 11
4747
- deprecate :TelCdrs=, :none, 2025, 11
4746
+ deprecate :TelCdrs, :none, 2025, 12
4747
+ deprecate :TelCdrs=, :none, 2025, 12
4748
4748
 
4749
4749
  def initialize(totalcount=nil, telcdrs=nil, telcdrlist=nil, requestid=nil)
4750
4750
  @TotalCount = totalcount
@@ -6661,10 +6661,10 @@ module TencentCloud
6661
6661
 
6662
6662
  attr_accessor :Name, :Mail, :Phone, :Nick, :StaffNumber, :RoleId, :RoleIdList, :RoleList, :SkillGroupList, :LastModifyTimestamp, :ExtensionNumber, :ForwardingConfig
6663
6663
  extend Gem::Deprecate
6664
- deprecate :RoleId, :none, 2025, 11
6665
- deprecate :RoleId=, :none, 2025, 11
6666
- deprecate :RoleIdList, :none, 2025, 11
6667
- deprecate :RoleIdList=, :none, 2025, 11
6664
+ deprecate :RoleId, :none, 2025, 12
6665
+ deprecate :RoleId=, :none, 2025, 12
6666
+ deprecate :RoleIdList, :none, 2025, 12
6667
+ deprecate :RoleIdList=, :none, 2025, 12
6668
6668
 
6669
6669
  def initialize(name=nil, mail=nil, phone=nil, nick=nil, staffnumber=nil, roleid=nil, roleidlist=nil, rolelist=nil, skillgrouplist=nil, lastmodifytimestamp=nil, extensionnumber=nil, forwardingconfig=nil)
6670
6670
  @Name = name
@@ -7001,6 +7001,8 @@ module TencentCloud
7001
7001
 
7002
7002
  # 电话呼出 221 callerCancelWithoutRing **未振铃被叫号码异常**
7003
7003
 
7004
+ # 电话呼出 222 voiceMailReached **语音信箱挂断**
7005
+
7004
7006
  # 音频呼入 501 callConflict **VoIP用户呼叫冲突终止**
7005
7007
 
7006
7008
  # 音频呼入 502 clientTimeout **VoIP用户客户端超时**
@@ -7076,8 +7078,8 @@ module TencentCloud
7076
7078
 
7077
7079
  attr_accessor :Caller, :Callee, :Time, :Direction, :CallType, :Duration, :RecordURL, :RecordId, :SeatUser, :EndStatus, :SkillGroup, :CallerLocation, :IVRDuration, :RingTimestamp, :AcceptTimestamp, :EndedTimestamp, :IVRKeyPressed, :HungUpSide, :ServeParticipants, :SkillGroupId, :EndStatusString, :StartTimestamp, :QueuedTimestamp, :PostIVRKeyPressed, :QueuedSkillGroupId, :SessionId, :ProtectedCaller, :ProtectedCallee, :Uui, :UUI, :IVRKeyPressedEx, :AsrUrl, :AsrStatus, :CustomRecordURL, :Remark, :QueuedSkillGroupName, :VoicemailRecordURL, :VoicemailAsrURL
7078
7080
  extend Gem::Deprecate
7079
- deprecate :Uui, :none, 2025, 11
7080
- deprecate :Uui=, :none, 2025, 11
7081
+ deprecate :Uui, :none, 2025, 12
7082
+ deprecate :Uui=, :none, 2025, 12
7081
7083
 
7082
7084
  def initialize(caller=nil, callee=nil, time=nil, direction=nil, calltype=nil, duration=nil, recordurl=nil, recordid=nil, seatuser=nil, endstatus=nil, skillgroup=nil, callerlocation=nil, ivrduration=nil, ringtimestamp=nil, accepttimestamp=nil, endedtimestamp=nil, ivrkeypressed=nil, hungupside=nil, serveparticipants=nil, skillgroupid=nil, endstatusstring=nil, starttimestamp=nil, queuedtimestamp=nil, postivrkeypressed=nil, queuedskillgroupid=nil, sessionid=nil, protectedcaller=nil, protectedcallee=nil, uui=nil, ivrkeypressedex=nil, asrurl=nil, asrstatus=nil, customrecordurl=nil, remark=nil, queuedskillgroupname=nil, voicemailrecordurl=nil, voicemailasrurl=nil)
7083
7085
  @Caller = caller
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-ccc
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1174
4
+ version: 3.0.1178
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-11-28 00:00:00.000000000 Z
11
+ date: 2025-12-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common