2
0

Add ReleaseStatus to docs/types.md

This commit is contained in:
Glax 2024-10-18 19:31:09 +02:00
parent 1a631362c9
commit 70993a692a

View File

@ -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
```
{