Handle crew & fix some themoviedb bugs

This commit is contained in:
2025-05-20 12:18:23 +02:00
parent af566150f5
commit a22edc11ce
11 changed files with 1930 additions and 35 deletions
+1
View File
@@ -0,0 +1 @@
ALTER TYPE "kyoo"."role_kind" ADD VALUE 'crew' BEFORE 'other';
File diff suppressed because it is too large Load Diff
+7
View File
@@ -148,6 +148,13 @@
"when": 1746198322219,
"tag": "0020_video_unique",
"breakpoints": true
},
{
"idx": 21,
"version": "7",
"when": 1747727831649,
"tag": "0021_crew",
"breakpoints": true
}
]
}
+1
View File
@@ -19,6 +19,7 @@ export const roleKind = schema.enum("role_kind", [
"writter",
"producer",
"music",
"crew",
"other",
]);
+1
View File
@@ -16,6 +16,7 @@ export const Role = t.Object({
"writter",
"producer",
"music",
"crew",
"other",
]),
character: t.Nullable(Character),