From 246e40a508f90d83ae0fb0c2933090490f0137ec Mon Sep 17 00:00:00 2001 From: root Date: Fri, 3 Apr 2026 22:21:08 -0500 Subject: [PATCH] Fix QuotaResponse to include music/book quota types --- server/interfaces/api/userInterfaces.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/interfaces/api/userInterfaces.ts b/server/interfaces/api/userInterfaces.ts index 2ac75c5e..95472d8b 100644 --- a/server/interfaces/api/userInterfaces.ts +++ b/server/interfaces/api/userInterfaces.ts @@ -22,6 +22,8 @@ export interface QuotaStatus { export interface QuotaResponse { movie: QuotaStatus; tv: QuotaStatus; + music?: QuotaStatus; + book?: QuotaStatus; } export interface UserWatchDataResponse {