feat(certmanagers/integration): Add optional wipe methods to certificate managers and update integration tests, plus bump tapbundle dependency

This commit is contained in:
2025-04-30 18:18:45 +00:00
parent 758c6c6b5d
commit 9dc8c1d8a3
8 changed files with 51 additions and 14 deletions

View File

@ -34,4 +34,8 @@ export interface ICertManager {
* Close the store (e.g., disconnect database).
*/
close(): Promise<void>;
/**
* Optional: wipe all stored certificates (e.g., for integration testing)
*/
wipe?(): Promise<void>;
}