Add genres and actors

This commit is contained in:
2024-07-06 20:09:02 +04:00
parent ea723b88b0
commit 05cfd9c955
34 changed files with 671 additions and 324 deletions

View File

@@ -17,6 +17,7 @@ type RequestOptions = GetRequestOptions & {
export abstract class HTTPService {
private static deepUndefinedToNull(o?: object): object | undefined {
if (Array.isArray(o)) return o;
if (o)
return Object.fromEntries(
Object.entries(o).map(([k, v]) => {