-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rename verify -> verify_legacy and verify_v2 -> verify
- Loading branch information
Showing
65 changed files
with
1,336 additions
and
1,319 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,20 @@ | ||
# 1.1.3 | ||
# 2.0.0 | ||
- Rename `vonage-verify-v2` package -> `vonage-verify`, `VerifyV2` -> `Verify`, etc. | ||
|
||
# 1.1.4 | ||
- Support for Python 3.13, drop support for 3.8 | ||
|
||
# 1.1.3 | ||
- Add docstrings for data models | ||
|
||
# 1.1.2 | ||
- Add docstrings to data models | ||
- Allow minimum `channel_timeout` value to be 15 seconds | ||
|
||
# 1.1.1 | ||
- Update minimum dependency version | ||
|
||
# 1.1.0 | ||
- Add `http_client` property | ||
|
||
# 1.0.1 | ||
- Internal refactoring | ||
|
||
# 1.0.0 | ||
- Initial upload |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,27 @@ | ||
from .enums import ChannelType, Locale | ||
from .errors import VerifyError | ||
from .language_codes import LanguageCode, Psd2LanguageCode | ||
from .requests import Psd2Request, VerifyRequest | ||
from .responses import ( | ||
CheckCodeResponse, | ||
NetworkUnblockStatus, | ||
StartVerificationResponse, | ||
VerifyControlStatus, | ||
VerifyStatus, | ||
from .requests import ( | ||
EmailChannel, | ||
SilentAuthChannel, | ||
SmsChannel, | ||
VerifyRequest, | ||
VoiceChannel, | ||
WhatsappChannel, | ||
) | ||
from .responses import CheckCodeResponse, StartVerificationResponse | ||
from .verify import Verify | ||
|
||
__all__ = [ | ||
'Verify', | ||
'VerifyError', | ||
'LanguageCode', | ||
'Psd2LanguageCode', | ||
'Psd2Request', | ||
'VerifyRequest', | ||
'ChannelType', | ||
'CheckCodeResponse', | ||
'NetworkUnblockStatus', | ||
'Locale', | ||
'VerifyRequest', | ||
'SilentAuthChannel', | ||
'SmsChannel', | ||
'WhatsappChannel', | ||
'VoiceChannel', | ||
'EmailChannel', | ||
'StartVerificationResponse', | ||
'VerifyControlStatus', | ||
'VerifyStatus', | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = '1.1.3' | ||
__version__ = '2.0.0' |
File renamed without changes.
Oops, something went wrong.