Luca Sacchi Ricciardi
|
0df1638da8
|
feat(schemas): T30 add Pydantic statistics schemas
Add comprehensive Pydantic schemas for statistics management:
- UsageStatsCreate: input validation for creating usage stats
- UsageStatsResponse: orm_mode response schema
- StatsSummary: aggregated statistics with totals and averages
- StatsByModel: per-model breakdown with percentages
- StatsByDate: daily usage aggregation
- DashboardResponse: complete dashboard data structure
All schemas use Decimal for cost precision and proper validation.
Test: 16 unit tests, 100% coverage on stats.py
|
2026-04-07 15:04:49 +02:00 |
|
Luca Sacchi Ricciardi
|
02473bc39e
|
feat(schemas): T17 add Pydantic auth schemas
Add authentication schemas for user registration and login:
- UserRegister: email, password (with strength validation), password_confirm
- UserLogin: email, password
- UserResponse: id, email, created_at, is_active (orm_mode=True)
- TokenResponse: access_token, token_type, expires_in
- TokenData: user_id, exp
Includes field validators for password strength and password confirmation matching.
Test coverage: 19 tests for all schemas
|
2026-04-07 13:52:33 +02:00 |
|