From 70993a692a1d1446cab6574ac99806063b2ecb8c Mon Sep 17 00:00:00 2001 From: Glax Date: Fri, 18 Oct 2024 19:31:09 +0200 Subject: [PATCH] Add ReleaseStatus to docs/types.md --- docs/Types.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/docs/Types.md b/docs/Types.md index 8ae0c0c..c04bb43 100644 --- a/docs/Types.md +++ b/docs/Types.md @@ -21,7 +21,7 @@ "links": string[][], "year": int, "originalLanguage": string, - "releaseStatus": int, + "releaseStatus": ReleaseStatus, "folderName": string, "publicationId": string, "internalId": string, @@ -39,6 +39,17 @@ } ``` +## ReleaseStatus +``` +{ + Continuing = 0, + Completed = 1, + OnHiatus = 2, + Cancelled = 3, + Unreleased = 4 +} +``` + ## Job ``` {