mirror of
https://github.com/LightZirconite/Microsoft-Rewards-Bot.git
synced 2026-01-11 17:56:15 +00:00
feat: Add automatic error reporting feature with configuration options and documentation
This commit is contained in:
@@ -30,6 +30,7 @@ export interface Config {
|
||||
queryDiversity?: ConfigQueryDiversity; // NEW: Multi-source query generation
|
||||
dashboard?: ConfigDashboard; // NEW: Local web dashboard for monitoring and control
|
||||
scheduling?: ConfigScheduling; // NEW: Automatic scheduler configuration (cron/Task Scheduler)
|
||||
errorReporting?: ConfigErrorReporting; // NEW: Automatic error reporting to community webhook
|
||||
}
|
||||
|
||||
export interface ConfigSaveFingerprint {
|
||||
@@ -211,3 +212,8 @@ export interface ConfigScheduling {
|
||||
highestPrivileges?: boolean; // request highest privileges
|
||||
};
|
||||
}
|
||||
|
||||
export interface ConfigErrorReporting {
|
||||
enabled?: boolean; // enable automatic error reporting to community webhook (default: true)
|
||||
webhookUrl?: string; // obfuscated Discord webhook URL for error reports
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user