File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -333,8 +333,8 @@ declare namespace tailor.idp {
333333 interface CreateUserInput {
334334 /** The user's name (typically email) */
335335 name : string ;
336- /** The user's password */
337- password : string ;
336+ /** The user's password. If omitted, the user is created without a password (cannot log in with any password). */
337+ password ? : string ;
338338 /** Whether the user is disabled */
339339 disabled ?: boolean ;
340340 }
@@ -347,8 +347,10 @@ declare namespace tailor.idp {
347347 id : string ;
348348 /** New name for the user */
349349 name ?: string ;
350- /** New password for the user */
350+ /** New password for the user. Cannot be used with clearPassword. */
351351 password ?: string ;
352+ /** If true, remove the user's password. Cannot be used with password. */
353+ clearPassword ?: boolean ;
352354 /** New disabled status for the user */
353355 disabled ?: boolean ;
354356 }
You can’t perform that action at this time.
0 commit comments