File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -568,19 +568,19 @@ export interface PasswordPolicy {
568
568
readonly customStrengthOptions: {
569
569
readonly minPasswordLength? : number ;
570
570
readonly maxPasswordLength? : number ;
571
- readonly containsLowercaseLetter ? : boolean ;
572
- readonly containsUppercaseLetter ? : boolean ;
571
+ readonly containsLowercaseCharacter ? : boolean ;
572
+ readonly containsUppercaseCharacter ? : boolean ;
573
573
readonly containsNumericCharacter? : boolean ;
574
574
readonly containsNonAlphanumericCharacter? : boolean ;
575
575
};
576
576
}
577
577
578
578
// @public
579
579
export interface PasswordValidationStatus {
580
- readonly containsLowercaseLetter ? : boolean ;
580
+ readonly containsLowercaseCharacter ? : boolean ;
581
581
readonly containsNonAlphanumericCharacter? : boolean ;
582
582
readonly containsNumericCharacter? : boolean ;
583
- readonly containsUppercaseLetter ? : boolean ;
583
+ readonly containsUppercaseCharacter ? : boolean ;
584
584
readonly isValid: boolean ;
585
585
readonly meetsMaxPasswordLength? : boolean ;
586
586
readonly meetsMinPasswordLength? : boolean ;
You can’t perform that action at this time.
0 commit comments