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

* feat(about): show config directory * feat(about): run yarn i18n:extract * refactor(about): use existing appdata path method * feat(about): suggested changes * refactor(logs): rename variable to be more consistent * feat: suggested changes
60 lines
1.2 KiB
TypeScript
60 lines
1.2 KiB
TypeScript
import type { PaginatedResponse } from './common';
|
|
|
|
export type LogMessage = {
|
|
timestamp: string;
|
|
level: string;
|
|
label?: string;
|
|
message: string;
|
|
data?: Record<string, unknown>;
|
|
};
|
|
|
|
export interface LogsResultsResponse extends PaginatedResponse {
|
|
results: LogMessage[];
|
|
}
|
|
|
|
export interface SettingsAboutResponse {
|
|
version: string;
|
|
totalRequests: number;
|
|
totalMediaItems: number;
|
|
tz?: string;
|
|
appDataPath: string;
|
|
}
|
|
|
|
export interface PublicSettingsResponse {
|
|
initialized: boolean;
|
|
applicationTitle: string;
|
|
applicationUrl: string;
|
|
hideAvailable: boolean;
|
|
localLogin: boolean;
|
|
movie4kEnabled: boolean;
|
|
series4kEnabled: boolean;
|
|
region: string;
|
|
originalLanguage: string;
|
|
partialRequestsEnabled: boolean;
|
|
cacheImages: boolean;
|
|
vapidPublic: string;
|
|
enablePushRegistration: boolean;
|
|
locale: string;
|
|
emailEnabled: boolean;
|
|
newPlexLogin: boolean;
|
|
}
|
|
|
|
export interface CacheItem {
|
|
id: string;
|
|
name: string;
|
|
stats: {
|
|
hits: number;
|
|
misses: number;
|
|
keys: number;
|
|
ksize: number;
|
|
vsize: number;
|
|
};
|
|
}
|
|
|
|
export interface StatusResponse {
|
|
version: string;
|
|
commitTag: string;
|
|
updateAvailable: boolean;
|
|
commitsBehind: number;
|
|
}
|