@accounts/types
Advanced tools
Comparing version 1.0.0-alpha-20231115113719-ae2b53a9 to 1.0.0-alpha-20231115205645-aa630d56
import { LoginResult } from './login-result'; | ||
export interface CreateUserResult { | ||
/** | ||
* Will be returned only if `ambiguousErrorMessages` is set to false. | ||
* Will be returned only if 'ambiguousErrorMessages' is set to false or 'requireEmailVerification' is set to false. | ||
*/ | ||
userId?: string; | ||
/** | ||
* Will be returned only if `enableAutologin` is set to true. | ||
* Will be returned only if 'enableAutologin' is set to true and 'requireEmailVerification' is set to false. | ||
*/ | ||
loginResult?: LoginResult; | ||
} |
{ | ||
"name": "@accounts/types", | ||
"version": "1.0.0-alpha-20231115113719-ae2b53a9", | ||
"version": "1.0.0-alpha-20231115205645-aa630d56", | ||
"description": "Accounts-js Types", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -5,9 +5,9 @@ import { LoginResult } from './login-result'; | ||
/** | ||
* Will be returned only if `ambiguousErrorMessages` is set to false. | ||
* Will be returned only if 'ambiguousErrorMessages' is set to false or 'requireEmailVerification' is set to false. | ||
*/ | ||
userId?: string; | ||
/** | ||
* Will be returned only if `enableAutologin` is set to true. | ||
* Will be returned only if 'enableAutologin' is set to true and 'requireEmailVerification' is set to false. | ||
*/ | ||
loginResult?: LoginResult; | ||
} |
25792