You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
990 B
35 lines
990 B
import { NotificationAgentKey } from '../../lib/settings';
|
|
|
|
export interface UserSettingsGeneralResponse {
|
|
username?: string;
|
|
locale?: string;
|
|
region?: string;
|
|
originalLanguage?: string;
|
|
movieQuotaLimit?: number;
|
|
movieQuotaDays?: number;
|
|
tvQuotaLimit?: number;
|
|
tvQuotaDays?: number;
|
|
globalMovieQuotaDays?: number;
|
|
globalMovieQuotaLimit?: number;
|
|
globalTvQuotaLimit?: number;
|
|
globalTvQuotaDays?: number;
|
|
}
|
|
|
|
export type NotificationAgentTypes = Record<NotificationAgentKey, number>;
|
|
export interface UserSettingsNotificationsResponse {
|
|
emailEnabled?: boolean;
|
|
pgpKey?: string;
|
|
discordEnabled?: boolean;
|
|
discordEnabledTypes?: number;
|
|
discordId?: string;
|
|
pushbulletAccessToken?: string;
|
|
pushoverApplicationToken?: string;
|
|
pushoverUserKey?: string;
|
|
telegramEnabled?: boolean;
|
|
telegramBotUsername?: string;
|
|
telegramChatId?: string;
|
|
telegramSendSilently?: boolean;
|
|
webPushEnabled?: boolean;
|
|
notificationTypes: Partial<NotificationAgentTypes>;
|
|
}
|