Skip to content

Commit 2a44d04

Browse files
Pull request #16: feature/EOA-3971-Remove-AppVerifyClient-dependency
Merge in SDK/python_telesign_enterprise from feature/EOA-3971-fs-sdk to developer Squashed commit of the following: commit 49a75e9aec3a1b0257dfb1a526703a522adcf78e Author: MousumiMohanty <@telesign.com> Date: Thu Sep 4 14:59:46 2025 +0530 updated the release note comments commit 7c9f0df3f008ce5623eb2eb3ec307caef7846526 Author: MousumiMohanty <@telesign.com> Date: Wed Sep 3 13:18:03 2025 +0530 rectified the version details commit 4b5f3d1f3f0f29417421681bed8a406d51615407 Author: MousumiMohanty <@telesign.com> Date: Wed Sep 3 13:13:09 2025 +0530 Removed dependency on SS AppVerifyClient commit 2a3e5ac Merge: 9142f6f 1b0d40a Author: Mousumi Mohanty <[email protected]> Date: Tue Jun 17 12:46:43 2025 +0000 Pull request #15: Developer Merge in SDK/python_telesign_enterprise from developer to master * commit '1b0d40a7970b7ef9f6dcd73fe34a7e238c3ac2a5': set basic_auth param consolidate both retrieve and update functionality update comments validate conflict update the release updated comments renamed the telesignenterprise.test to tests folder updated the comments addedupdate functionlity updated the comments created OmniVerify class and added retrieve functionality
1 parent 1b0d40a commit 2a44d04

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

RELEASE

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2.3.1
2+
- Removed dependency on AppVerifyClient from Self Service SDK
3+
14
2.3.0
25
- Created OmniVerify class for adding retrieve and update verification process functionality
36

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup, find_packages
22

3-
version = "2.3.0"
3+
version = "2.3.1"
44

55
try:
66
with open("README") as f:
@@ -32,6 +32,6 @@
3232
author='TeleSign Corp.',
3333
author_email='[email protected]',
3434
url="https://github.com/telesign/python_telesign",
35-
install_requires=['telesign >=2.2.1, <=2.3'],
35+
install_requires=['telesign >=2.2.1, <=2.3.1'],
3636
packages=find_packages(exclude=['test', 'test.*', 'examples', 'examples.*']),
3737
)

telesignenterprise/appverify.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import unicode_literals
22

3-
from telesign.appverify import AppVerifyClient as _AppVerifyClient
3+
from telesign.rest import RestClient
44
from telesignenterprise.constants import SOURCE_SDK
55
import telesignenterprise
66
import telesign
@@ -11,7 +11,7 @@
1111
APP_VERIFY_STATUS_RESOURCE = "/v1/verify/auto/voice/{}"
1212

1313

14-
class AppVerifyClient(_AppVerifyClient):
14+
class AppVerifyClient(RestClient):
1515
"""
1616
The TeleSign App Verify web service enables customers to verify devices
1717
through a voice call by a verification code provided in the caller ID.

0 commit comments

Comments
 (0)