/**
     * Create an account with the given ([email], [password]) tuple and log-in
     * @return a [Flow] of [ApiResponse] with the last one being true iff sign-up completed successfully
     */
    suspend fun signUpWithEmailAndPassword(email: String, password: String): Flow<ApiResponse<Boolean>>