Project-wide Data Input & Sync — Manual + CSV Import + Provider Abstraction #42
Labels
No Label
architecture
backend
bug
feature
frontend
priority:critical
priority:high
priority:low
priority:medium
priority:nice-to-have
ux
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: null/BillTracker#42
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Umbrella issue for the data input & sync roadmap.
Implementation is broken into 6 phases. Each phase is a separate issue:
Phases must be implemented in order. Each builds on the previous.
Original Description
Add a generalized data source layer so BillTracker supports multiple data entry paths — manual, file import, and provider sync — without forcing users into one workflow. Manual-first remains the default.
Data Modes
Provider Interface
Key Tables
data_sources— type, provider, name, status, config_json, encrypted_secret, last_sync_at, last_errorfinancial_accounts— data_source_id (FK), provider_account_id, name, org_name, balance, available_balancetransactions— data_source_id (FK), account_id (FK), provider_transaction_id, source_type, amount (cents), description, payee, matched_bill_id (FK → bills), match_status, ignoredbill_payments— bill_id (FK), transaction_id (FK nullable), payment_source, paid_at, amount, notesSecurity
Acceptance Criteria