tencentcloud-sdk-python-faceid 3.0.1111__tar.gz → 3.0.1115__tar.gz
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.
- {tencentcloud-sdk-python-faceid-3.0.1111 → tencentcloud-sdk-python-faceid-3.0.1115}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-faceid-3.0.1111 → tencentcloud-sdk-python-faceid-3.0.1115}/setup.py +1 -1
- {tencentcloud-sdk-python-faceid-3.0.1111 → tencentcloud-sdk-python-faceid-3.0.1115}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-faceid-3.0.1111 → tencentcloud-sdk-python-faceid-3.0.1115}/tencentcloud/faceid/v20180301/models.py +17 -3
- {tencentcloud-sdk-python-faceid-3.0.1111 → tencentcloud-sdk-python-faceid-3.0.1115}/tencentcloud_sdk_python_faceid.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-faceid-3.0.1115/tencentcloud_sdk_python_faceid.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-faceid-3.0.1111/tencentcloud_sdk_python_faceid.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-faceid-3.0.1111 → tencentcloud-sdk-python-faceid-3.0.1115}/README.rst +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1111 → tencentcloud-sdk-python-faceid-3.0.1115}/setup.cfg +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1111 → tencentcloud-sdk-python-faceid-3.0.1115}/tencentcloud/faceid/__init__.py +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1111 → tencentcloud-sdk-python-faceid-3.0.1115}/tencentcloud/faceid/v20180301/__init__.py +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1111 → tencentcloud-sdk-python-faceid-3.0.1115}/tencentcloud/faceid/v20180301/errorcodes.py +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1111 → tencentcloud-sdk-python-faceid-3.0.1115}/tencentcloud/faceid/v20180301/faceid_client.py +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1111 → tencentcloud-sdk-python-faceid-3.0.1115}/tencentcloud_sdk_python_faceid.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1111 → tencentcloud-sdk-python-faceid-3.0.1115}/tencentcloud_sdk_python_faceid.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1111 → tencentcloud-sdk-python-faceid-3.0.1115}/tencentcloud_sdk_python_faceid.egg-info/top_level.txt +0 -0
{tencentcloud-sdk-python-faceid-3.0.1111 → tencentcloud-sdk-python-faceid-3.0.1115}/setup.py
RENAMED
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-faceid',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1115"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Faceid SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -1533,10 +1533,11 @@ class DetectAuthRequest(AbstractModel):
|
|
|
1533
1533
|
:type RuleId: str
|
|
1534
1534
|
:param _TerminalType: 本接口不需要传递此参数。
|
|
1535
1535
|
:type TerminalType: str
|
|
1536
|
-
:param _IdCard:
|
|
1536
|
+
:param _IdCard: 身份标识(是否必传基于[控制台](https://console.cloud.tencent.com/faceid/access)申请业务流程时配置的提示)。
|
|
1537
1537
|
规则:a-z,A-Z,0-9组合。最长长度32位。
|
|
1538
1538
|
:type IdCard: str
|
|
1539
|
-
:param _Name:
|
|
1539
|
+
:param _Name: 姓名。(是否必传基于[控制台](https://console.cloud.tencent.com/faceid/access)申请业务流程时配置的提示)。
|
|
1540
|
+
最长长度32位。中文请使用UTF-8编码。
|
|
1540
1541
|
:type Name: str
|
|
1541
1542
|
:param _RedirectUrl: 认证结束后重定向的回调链接地址。最长长度1024位。
|
|
1542
1543
|
:type RedirectUrl: str
|
|
@@ -3675,6 +3676,8 @@ class GetEidTokenConfig(AbstractModel):
|
|
|
3675
3676
|
:type IntentionRecognition: bool
|
|
3676
3677
|
:param _IsSupportHMTResidentPermitOCR: 是否支持港澳台居住证识别
|
|
3677
3678
|
:type IsSupportHMTResidentPermitOCR: bool
|
|
3679
|
+
:param _MouthOpenRecognition: 用户语音回答过程中是否开启张嘴识别检测,默认不开启,仅在意愿核身问答模式中使用。
|
|
3680
|
+
:type MouthOpenRecognition: bool
|
|
3678
3681
|
"""
|
|
3679
3682
|
self._InputType = None
|
|
3680
3683
|
self._UseIntentionVerify = None
|
|
@@ -3684,6 +3687,7 @@ class GetEidTokenConfig(AbstractModel):
|
|
|
3684
3687
|
self._IntentionActions = None
|
|
3685
3688
|
self._IntentionRecognition = None
|
|
3686
3689
|
self._IsSupportHMTResidentPermitOCR = None
|
|
3690
|
+
self._MouthOpenRecognition = None
|
|
3687
3691
|
|
|
3688
3692
|
@property
|
|
3689
3693
|
def InputType(self):
|
|
@@ -3749,6 +3753,14 @@ class GetEidTokenConfig(AbstractModel):
|
|
|
3749
3753
|
def IsSupportHMTResidentPermitOCR(self, IsSupportHMTResidentPermitOCR):
|
|
3750
3754
|
self._IsSupportHMTResidentPermitOCR = IsSupportHMTResidentPermitOCR
|
|
3751
3755
|
|
|
3756
|
+
@property
|
|
3757
|
+
def MouthOpenRecognition(self):
|
|
3758
|
+
return self._MouthOpenRecognition
|
|
3759
|
+
|
|
3760
|
+
@MouthOpenRecognition.setter
|
|
3761
|
+
def MouthOpenRecognition(self, MouthOpenRecognition):
|
|
3762
|
+
self._MouthOpenRecognition = MouthOpenRecognition
|
|
3763
|
+
|
|
3752
3764
|
|
|
3753
3765
|
def _deserialize(self, params):
|
|
3754
3766
|
self._InputType = params.get("InputType")
|
|
@@ -3769,6 +3781,7 @@ class GetEidTokenConfig(AbstractModel):
|
|
|
3769
3781
|
self._IntentionActions.append(obj)
|
|
3770
3782
|
self._IntentionRecognition = params.get("IntentionRecognition")
|
|
3771
3783
|
self._IsSupportHMTResidentPermitOCR = params.get("IsSupportHMTResidentPermitOCR")
|
|
3784
|
+
self._MouthOpenRecognition = params.get("MouthOpenRecognition")
|
|
3772
3785
|
memeber_set = set(params.keys())
|
|
3773
3786
|
for name, value in vars(self).items():
|
|
3774
3787
|
property_name = name[1:]
|
|
@@ -5342,7 +5355,8 @@ class IntentionQuestionResult(AbstractModel):
|
|
|
5342
5355
|
-107: "请勿遮挡鼻子"
|
|
5343
5356
|
-201: "人脸比对相似度低"
|
|
5344
5357
|
-202: "人脸比对失败"
|
|
5345
|
-
-301: "意愿核验不通过"
|
|
5358
|
+
-301: "意愿核验不通过"
|
|
5359
|
+
-302: "用户回答阶段未检测到张嘴动作"
|
|
5346
5360
|
-800: "前端不兼容错误"
|
|
5347
5361
|
-801: "用户未授权摄像头和麦克风权限"
|
|
5348
5362
|
-802: "核验流程异常中断,请勿切屏或进行其他操作"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1115
|
tencentcloud-sdk-python-faceid-3.0.1111/tencentcloud_sdk_python_faceid.egg-info/requires.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1111
|
{tencentcloud-sdk-python-faceid-3.0.1111 → tencentcloud-sdk-python-faceid-3.0.1115}/README.rst
RENAMED
|
File without changes
|
{tencentcloud-sdk-python-faceid-3.0.1111 → tencentcloud-sdk-python-faceid-3.0.1115}/setup.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|