Fix QuotaResponse to include music/book quota types

This commit is contained in:
root
2026-04-03 22:21:08 -05:00
parent 2acb4fc4a4
commit 246e40a508

View File

@@ -22,6 +22,8 @@ export interface QuotaStatus {
export interface QuotaResponse { export interface QuotaResponse {
movie: QuotaStatus; movie: QuotaStatus;
tv: QuotaStatus; tv: QuotaStatus;
music?: QuotaStatus;
book?: QuotaStatus;
} }
export interface UserWatchDataResponse { export interface UserWatchDataResponse {