()
| 124 | |
| 125 | /** Reset the store — tests only. Safe to call when no store has been created. */ |
| 126 | export async function clearIdempotencyCache(): Promise<void> { |
| 127 | const current = storeInstance; |
| 128 | storeInstance = null; |
| 129 | if (current) await current.close(); |
| 130 | } |
| 131 | |
| 132 | export type { IdempotencyCheckResult }; |
no outgoing calls
no test coverage detected