Skip to content

Commit 1ea6337

Browse files
committed
Update API reports
1 parent 35daf21 commit 1ea6337

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

common/api-review/auth.api.md

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -564,15 +564,9 @@ export interface ParsedToken {
564564

565565
// @public
566566
export interface PasswordPolicy {
567-
readonly allowedNonAlphanumericCharacters: string[];
568-
readonly customStrengthOptions: {
569-
readonly minPasswordLength?: number;
570-
readonly maxPasswordLength?: number;
571-
readonly containsLowercaseLetter?: boolean;
572-
readonly containsUppercaseLetter?: boolean;
573-
readonly containsNumericCharacter?: boolean;
574-
readonly containsNonAlphanumericCharacter?: boolean;
575-
};
567+
readonly allowedNonAlphanumericCharacters?: string[];
568+
// Warning: (ae-forgotten-export) The symbol "PasswordPolicyCustomStrengthOptions" needs to be exported by the entry point index.d.ts
569+
readonly customStrengthOptions: PasswordPolicyCustomStrengthOptions;
576570
}
577571

578572
// @public

0 commit comments

Comments
 (0)