chore: build

This commit is contained in:
2026-06-12 11:13:47 +02:00
parent cc278ecef5
commit 20da2a560f
8 changed files with 174 additions and 16 deletions
+6
View File
@@ -1050,11 +1050,17 @@ export interface AppSettings {
telegram_bot_username: string;
telegram_notifications_enabled: boolean;
telegram_2fa_enabled: boolean;
telegram_notif_bots: TelegramBotConfig[];
delivery_mode: DeliveryModeConfig;
shop_name: string;
contact_telegram: string;
}
export type TelegramBotConfig = {
token: string;
username: string;
};
export const getSettings = async (): Promise<{
success: boolean;
settings?: AppSettings;