mirror of
https://github.com/sct/overseerr.git
synced 2025-09-17 17:24:35 +02:00

* fix: better ordering of RequestButton options & properly handle failed requests * fix: appease prettier
20 lines
248 B
TypeScript
20 lines
248 B
TypeScript
export enum MediaRequestStatus {
|
|
PENDING = 1,
|
|
APPROVED,
|
|
DECLINED,
|
|
FAILED,
|
|
}
|
|
|
|
export enum MediaType {
|
|
MOVIE = 'movie',
|
|
TV = 'tv',
|
|
}
|
|
|
|
export enum MediaStatus {
|
|
UNKNOWN = 1,
|
|
PENDING,
|
|
PROCESSING,
|
|
PARTIALLY_AVAILABLE,
|
|
AVAILABLE,
|
|
}
|