Skip to content

Commit c34f1f7

Browse files
committed
Update cuenca-validations to version 2.1.19 and increment internal version to 2.1.13; add RFC field to User class.
1 parent 53ec184 commit c34f1f7

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

cuenca/resources/users.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
State,
2626
)
2727
from cuenca_validations.types.general import SerializableHttpUrl
28-
from cuenca_validations.types.identities import AddressRequest, Curp
28+
from cuenca_validations.types.identities import AddressRequest, Curp, Rfc
2929
from pydantic import ConfigDict, EmailStr, Field
3030

3131
from ..http import Session, session as global_session
@@ -160,6 +160,7 @@ def update(
160160
email_verification_id: Optional[str] = None,
161161
phone_verification_id: Optional[str] = None,
162162
curp_document_uri: Optional[SerializableHttpUrl] = None,
163+
rfc: Optional[Rfc] = None,
163164
fiscal_regime_code: Optional[SATRegimeCode] = None,
164165
fiscal_address: Optional[AddressRequest] = None,
165166
account_use_type: Optional[AccountUseType] = None,
@@ -181,6 +182,7 @@ def update(
181182
email_verification_id=email_verification_id,
182183
phone_verification_id=phone_verification_id,
183184
curp_document_uri=curp_document_uri,
185+
rfc=rfc,
184186
fiscal_regime_code=fiscal_regime_code,
185187
fiscal_address=fiscal_address,
186188
account_use_type=account_use_type,

cuenca/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = '2.1.12'
1+
__version__ = '2.1.13'
22
CLIENT_VERSION = __version__
33
API_VERSION = '2020-03-19'

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
requests==2.32.3
2-
cuenca-validations==2.1.18
2+
cuenca-validations==2.1.19
33
pydantic-extra-types==2.10.2

0 commit comments

Comments
 (0)