-
Notifications
You must be signed in to change notification settings - Fork 14
Adding dynamic cvv to card #302
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Codecov Report
@@ Coverage Diff @@
## main #302 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 43 43
Lines 990 994 +4
=========================================
+ Hits 990 994 +4
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
485a589 to
ab79ebc
Compare
e670b87 to
91e1211
Compare
21245cc to
2b55768
Compare
cuenca/resources/cards.py
Outdated
| funding_type: CardFundingType, | ||
| user_id: str = 'me', | ||
| card_holder_user_id: Optional[str] = None, | ||
| is_dynamic_cvv: Optional[bool] = False, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Optional solo si el default es None
cuenca/resources/cards.py
Outdated
| card_id: str, | ||
| status: Optional[CardStatus] = None, | ||
| pin_block: Optional[str] = None, | ||
| is_dynamic_cvv: Optional[bool] = False, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
igual al comentario anterior
cuenca/resources/cards.py
Outdated
| issuer: CardIssuer | ||
| funding_type: CardFundingType | ||
| dcvv: Optional[str] = None | ||
| dcvv_expires_at: Optional[str] = None |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No te falló? debe ser datetime no?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no falla, paarece que pydantic convierte lafecha a str
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lo cmbio a dt
requirements.txt
Outdated
| @@ -1,3 +1,3 @@ | |||
| requests==2.27.1 | |||
| cuenca-validations==0.11.4 | |||
| cuenca-validations==0.11.6.dev0 | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
puedes mezclar cuenca validations y ya poner las versiones correctas
pachCode
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
También falta regrabar cassette
cuenca/version.py
Outdated
| @@ -1,3 +1,3 @@ | |||
| __version__ = '0.14.6' | |||
| __version__ = '0.14.8.dev0' | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
creo que la versión correcta debe sr 0.15.0. No es un bug fix, sino un nuevo feature.
No description provided.