-
Notifications
You must be signed in to change notification settings - Fork 165
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
Added credit utilization for credit cards (isracard-amex for now) #795
Conversation
@matan-elgabsi thanks for your contribution. sorry it took me time to respond. I"m ok with the change. I have two thoughts to raise: Thought 1the export interface TransactionsAccount {
accountNumber: string;
+ credit: {
creditUtilization?: number;
creditTotal?: number;
+ }
balance?: number;
txns: Transaction[];
} Thought 2Do we want to always run the additional async call which if failed will fail the request and might impact response time? I'm ok with both changes, just want to hear your thoughts. |
Nice, why not. Of course, @esakal said the right thoughts. Regarding 1: please set |
Hi guys, FIY - I accidentally created the PR from a wrong account - After this discussion, I will create a new one instead.. sorry about that |
@matan-elgabsi sorry for the late response, my availability and access to the computer is small during Jule/Aug. Regarding the second point, I understand it is only one call, I think the question is whether it is considered as mandatory date of that scraper or additional one. if additional then the flag fit to that purpose |
@matan-elgabsi hi, this is very old PR. What did you do on your end with it? is it still on your fork? @eshaham once approved we will need your help merging due to the stuck statuses tests |
The two thoughts from the first review still need to be done to finish this PR. |
Closed in favor of #857 |
Not sure if this is on the roadmap, but needed to get my credit card utilization. added this quickly for isracard-amex.
Would love to hear your thoughts and correct as needed.
Thanks!