(email: string)
| 188 | // bindings remain — a deactivated user no longer occupies a seat. Best-effort |
| 189 | // so teardown of seat-limit fixtures can't fail the suite (BYT-9633). |
| 190 | async deleteUser(email: string): Promise<void> { |
| 191 | try { await this.request<unknown>("DELETE", `/v1/users/${email}`); } catch { /* ignore */ } |
| 192 | } |
| 193 | |
| 194 | // Reactivate a soft-deleted user. NOT best-effort: the seat-limit spec asserts |
| 195 | // this REJECTS (ResourceExhausted) when reactivating would exceed the limit, so |
no outgoing calls
no test coverage detected