Problem
All repository implementations in packages/providers/src/repository/ use the prefix SQlite (lowercase 'l'):
SQliteServerRepository.ts
SQliteUserCreditsRepository.ts
SQliteGuildParametersRepository.ts
SQliteServerActivityRepository.ts
SQliteServerStatusMetricsRepository.ts
SQliteUserRepository.ts
SQliteCreditOrdersRepository.ts
SQlitePlayerConnectionHistoryRepository.ts
But one file uses the correct SQLite casing:
SQLiteReportRepository.ts ← correct
The correct product name is SQLite (capital L). This inconsistency makes grepping and navigation confusing.
Fix
- Rename all
SQlite* files to SQLite*
- Rename all class names from
SQlite* to SQLite*
- Update all import references throughout the codebase (barrel
index.ts and all consumers)
Problem
All repository implementations in
packages/providers/src/repository/use the prefixSQlite(lowercase 'l'):But one file uses the correct
SQLitecasing:The correct product name is SQLite (capital L). This inconsistency makes grepping and navigation confusing.
Fix
SQlite*files toSQLite*SQlite*toSQLite*index.tsand all consumers)