-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update application parameter name and make users models more easily a…
…ccessible
- Loading branch information
Showing
6 changed files
with
42 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = '1.0.3' | ||
__version__ = '2.0.0' |
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,11 +1,35 @@ | ||
from .common import User | ||
from .common import ( | ||
Channels, | ||
MessengerChannel, | ||
MmsChannel, | ||
Properties, | ||
PstnChannel, | ||
SipChannel, | ||
SmsChannel, | ||
User, | ||
VbcChannel, | ||
ViberChannel, | ||
WebsocketChannel, | ||
WhatsappChannel, | ||
) | ||
from .requests import ListUsersFilter | ||
from .responses import UserSummary | ||
from .users import Users | ||
|
||
__all__ = [ | ||
'Users', | ||
'User', | ||
'PstnChannel', | ||
'SipChannel', | ||
'WebsocketChannel', | ||
'VbcChannel', | ||
'SmsChannel', | ||
'MmsChannel', | ||
'WhatsappChannel', | ||
'ViberChannel', | ||
'MessengerChannel', | ||
'Channels', | ||
'Properties', | ||
'ListUsersFilter', | ||
'UserSummary', | ||
'Users', | ||
] |
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.4' | ||
__version__ = '1.2.0' |