Skip to content

Commit e3a959e

Browse files
committed
Update API reports
1 parent da04e35 commit e3a959e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

common/api-review/auth.api.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -568,19 +568,19 @@ export interface PasswordPolicy {
568568
readonly customStrengthOptions: {
569569
readonly minPasswordLength?: number;
570570
readonly maxPasswordLength?: number;
571-
readonly containsLowercaseLetter?: boolean;
572-
readonly containsUppercaseLetter?: boolean;
571+
readonly containsLowercaseCharacter?: boolean;
572+
readonly containsUppercaseCharacter?: boolean;
573573
readonly containsNumericCharacter?: boolean;
574574
readonly containsNonAlphanumericCharacter?: boolean;
575575
};
576576
}
577577

578578
// @public
579579
export interface PasswordValidationStatus {
580-
readonly containsLowercaseLetter?: boolean;
580+
readonly containsLowercaseCharacter?: boolean;
581581
readonly containsNonAlphanumericCharacter?: boolean;
582582
readonly containsNumericCharacter?: boolean;
583-
readonly containsUppercaseLetter?: boolean;
583+
readonly containsUppercaseCharacter?: boolean;
584584
readonly isValid: boolean;
585585
readonly meetsMaxPasswordLength?: boolean;
586586
readonly meetsMinPasswordLength?: boolean;

0 commit comments

Comments
 (0)