()
| 77 | } |
| 78 | |
| 79 | async deleteAllData(): Promise<void> { |
| 80 | // Clear local storage |
| 81 | localStorage.removeItem(ANALYTICS_STORAGE_KEY); |
| 82 | |
| 83 | // Reset settings with new anonymous ID |
| 84 | this.settings = { |
| 85 | enabled: true, |
| 86 | hasConsented: true, |
| 87 | userId: this.generateAnonymousId(), |
| 88 | sessionId: this.generateSessionId(), |
| 89 | }; |
| 90 | |
| 91 | await this.saveSettings(); |
| 92 | } |
| 93 | |
| 94 | getSettings(): AnalyticsSettings | null { |
| 95 | return this.settings; |
nothing calls this directly
no test coverage detected