(email: string, password: string, title: string)
| 181 | // Creates an end-user with the given email/password/title in the caller's |
| 182 | // workspace. Caller must be a workspace admin. |
| 183 | async createUser(email: string, password: string, title: string): Promise<void> { |
| 184 | await this.request<unknown>("POST", "/v1/users", { email, password, title }); |
| 185 | } |
| 186 | |
| 187 | // Soft-delete (deactivate) a user. The principal is marked deleted but its IAM |
| 188 | // bindings remain — a deactivated user no longer occupies a seat. Best-effort |
no outgoing calls
no test coverage detected