Skip to content

Commit

Permalink
add status to UserUpdateRequest
Browse files Browse the repository at this point in the history
  • Loading branch information
agarrido19 committed Jun 21, 2022
1 parent 9b35427 commit 268a5aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions cuenca/resources/users.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ def update(
proof_of_life: Optional[KYCFileUpdateRequest] = None,
terms_of_service: Optional[TOSUpdateRequest] = None,
verification_id: Optional[str] = None,
status: Optional[UserStatus] = None,
*,
session: Session = global_session,
):
Expand All @@ -153,6 +154,7 @@ def update(
proof_of_life=proof_of_life,
terms_of_service=terms_of_service,
verification_id=verification_id,
status=status,
)
return cast(
'User',
Expand Down
2 changes: 1 addition & 1 deletion cuenca/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = '0.13.2'
__version__ = '0.13.3.dev0'
CLIENT_VERSION = __version__
API_VERSION = '2020-03-19'

0 comments on commit 268a5aa

Please sign in to comment.