tencentcloud-sdk-faceid 3.0.787 → 3.0.789
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180301/models.rb +10 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7b9e70dafa1b933c92c7ae5fec12ed1e351e0226
|
4
|
+
data.tar.gz: 2e75b2822cfb0bddc24920d01ee6b62ab1b10326
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e408f49f554055bde3d89eb377af5825d37add0c8372807696b60aed7743a623b5e40fa2da7dff0c105b00f4c35021c98b04ced05d2639976552dcb5b7849745
|
7
|
+
data.tar.gz: b48ba03876d0eb4ade43795c26b52f11da535e57b5cb6421ca70d3dedd3b79b9af13402a32e3bd2d8bb019015f7979f388e763365bbcb18300fb1340248a5d46
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.789
|
data/lib/v20180301/models.rb
CHANGED
@@ -769,10 +769,11 @@ module TencentCloud
|
|
769
769
|
# @type RuleId: String
|
770
770
|
# @param TerminalType: 本接口不需要传递此参数。
|
771
771
|
# @type TerminalType: String
|
772
|
-
# @param IdCard:
|
772
|
+
# @param IdCard: 身份标识(是否必传基于[控制台](https://console.cloud.tencent.com/faceid/access)申请业务流程时配置的提示)。
|
773
773
|
# 规则:a-z,A-Z,0-9组合。最长长度32位。
|
774
774
|
# @type IdCard: String
|
775
|
-
# @param Name:
|
775
|
+
# @param Name: 姓名。(是否必传基于[控制台](https://console.cloud.tencent.com/faceid/access)申请业务流程时配置的提示)。
|
776
|
+
# 最长长度32位。中文请使用UTF-8编码。
|
776
777
|
# @type Name: String
|
777
778
|
# @param RedirectUrl: 认证结束后重定向的回调链接地址。最长长度1024位。
|
778
779
|
# @type RedirectUrl: String
|
@@ -1797,10 +1798,12 @@ module TencentCloud
|
|
1797
1798
|
# @type IntentionRecognition: Boolean
|
1798
1799
|
# @param IsSupportHMTResidentPermitOCR: 是否支持港澳台居住证识别
|
1799
1800
|
# @type IsSupportHMTResidentPermitOCR: Boolean
|
1801
|
+
# @param MouthOpenRecognition: 用户语音回答过程中是否开启张嘴识别检测,默认不开启,仅在意愿核身问答模式中使用。
|
1802
|
+
# @type MouthOpenRecognition: Boolean
|
1800
1803
|
|
1801
|
-
attr_accessor :InputType, :UseIntentionVerify, :IntentionMode, :IntentionVerifyText, :IntentionQuestions, :IntentionActions, :IntentionRecognition, :IsSupportHMTResidentPermitOCR
|
1804
|
+
attr_accessor :InputType, :UseIntentionVerify, :IntentionMode, :IntentionVerifyText, :IntentionQuestions, :IntentionActions, :IntentionRecognition, :IsSupportHMTResidentPermitOCR, :MouthOpenRecognition
|
1802
1805
|
|
1803
|
-
def initialize(inputtype=nil, useintentionverify=nil, intentionmode=nil, intentionverifytext=nil, intentionquestions=nil, intentionactions=nil, intentionrecognition=nil, issupporthmtresidentpermitocr=nil)
|
1806
|
+
def initialize(inputtype=nil, useintentionverify=nil, intentionmode=nil, intentionverifytext=nil, intentionquestions=nil, intentionactions=nil, intentionrecognition=nil, issupporthmtresidentpermitocr=nil, mouthopenrecognition=nil)
|
1804
1807
|
@InputType = inputtype
|
1805
1808
|
@UseIntentionVerify = useintentionverify
|
1806
1809
|
@IntentionMode = intentionmode
|
@@ -1809,6 +1812,7 @@ module TencentCloud
|
|
1809
1812
|
@IntentionActions = intentionactions
|
1810
1813
|
@IntentionRecognition = intentionrecognition
|
1811
1814
|
@IsSupportHMTResidentPermitOCR = issupporthmtresidentpermitocr
|
1815
|
+
@MouthOpenRecognition = mouthopenrecognition
|
1812
1816
|
end
|
1813
1817
|
|
1814
1818
|
def deserialize(params)
|
@@ -1834,6 +1838,7 @@ module TencentCloud
|
|
1834
1838
|
end
|
1835
1839
|
@IntentionRecognition = params['IntentionRecognition']
|
1836
1840
|
@IsSupportHMTResidentPermitOCR = params['IsSupportHMTResidentPermitOCR']
|
1841
|
+
@MouthOpenRecognition = params['MouthOpenRecognition']
|
1837
1842
|
end
|
1838
1843
|
end
|
1839
1844
|
|
@@ -2583,6 +2588,7 @@ module TencentCloud
|
|
2583
2588
|
# -201: "人脸比对相似度低"
|
2584
2589
|
# -202: "人脸比对失败"
|
2585
2590
|
# -301: "意愿核验不通过"
|
2591
|
+
# -302: "用户回答阶段未检测到张嘴动作"
|
2586
2592
|
# -800: "前端不兼容错误"
|
2587
2593
|
# -801: "用户未授权摄像头和麦克风权限"
|
2588
2594
|
# -802: "核验流程异常中断,请勿切屏或进行其他操作"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-faceid
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.789
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-03-
|
11
|
+
date: 2024-03-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|