Skip to content
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

Handle starting balances for bank sync #29

Open
bvanelli opened this issue Jun 21, 2024 · 1 comment
Open

Handle starting balances for bank sync #29

bvanelli opened this issue Jun 21, 2024 · 1 comment
Labels
enhancement New feature or request

Comments

@bvanelli
Copy link
Owner

Following #25 , if syncing with a bank from scratch, the final amount might not match the balances, so updating the starting balances might be required.

@sondregronas
Copy link

Adding this here since it's such a minor thing:

I noticed that the Optional reference_date is actually required:

reference_date: Optional[str] = Field(..., alias="referenceDate", description="The date of the balance")

Setting default value to None works (GoCardless bank syncs was complaining about this missing)

reference_date: Optional[str] = Field(None, alias="referenceDate", description="The date of the balance")

@bvanelli bvanelli added the enhancement New feature or request label Oct 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants