Skip to content

Commit 564647b

Browse files
authored
Merge da04e35 into 3a7c4a3
2 parents 3a7c4a3 + da04e35 commit 564647b

File tree

8 files changed

+431
-89
lines changed

8 files changed

+431
-89
lines changed

docs-devsite/auth.passwordpolicy.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface PasswordPolicy
2323
| Property | Type | Description |
2424
| --- | --- | --- |
2525
| [allowedNonAlphanumericCharacters](./auth.passwordpolicy.md#passwordpolicyallowednonalphanumericcharacters) | string\[\] | List of characters that are considered non-alphanumeric during validation. |
26-
| [customStrengthOptions](./auth.passwordpolicy.md#passwordpolicycustomstrengthoptions) | { readonly minPasswordLength?: number; readonly maxPasswordLength?: number; readonly containsLowercaseLetter?: boolean; readonly containsUppercaseLetter?: boolean; readonly containsNumericCharacter?: boolean; readonly containsNonAlphanumericCharacter?: boolean; } | Requirements enforced by this password policy. |
26+
| [customStrengthOptions](./auth.passwordpolicy.md#passwordpolicycustomstrengthoptions) | { readonly minPasswordLength?: number; readonly maxPasswordLength?: number; readonly containsLowercaseCharacter?: boolean; readonly containsUppercaseCharacter?: boolean; readonly containsNumericCharacter?: boolean; readonly containsNonAlphanumericCharacter?: boolean; } | Requirements enforced by this password policy. |
2727

2828
## PasswordPolicy.allowedNonAlphanumericCharacters
2929

@@ -45,8 +45,8 @@ Requirements enforced by this password policy.
4545
readonly customStrengthOptions: {
4646
readonly minPasswordLength?: number;
4747
readonly maxPasswordLength?: number;
48-
readonly containsLowercaseLetter?: boolean;
49-
readonly containsUppercaseLetter?: boolean;
48+
readonly containsLowercaseCharacter?: boolean;
49+
readonly containsUppercaseCharacter?: boolean;
5050
readonly containsNumericCharacter?: boolean;
5151
readonly containsNonAlphanumericCharacter?: boolean;
5252
};

docs-devsite/auth.passwordvalidationstatus.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,23 +22,23 @@ export interface PasswordValidationStatus
2222

2323
| Property | Type | Description |
2424
| --- | --- | --- |
25-
| [containsLowercaseLetter](./auth.passwordvalidationstatus.md#passwordvalidationstatuscontainslowercaseletter) | boolean | Whether the password contains a lowercase letter, if required. |
25+
| [containsLowercaseCharacter](./auth.passwordvalidationstatus.md#passwordvalidationstatuscontainslowercasecharacter) | boolean | Whether the password contains a lowercase character, if required. |
2626
| [containsNonAlphanumericCharacter](./auth.passwordvalidationstatus.md#passwordvalidationstatuscontainsnonalphanumericcharacter) | boolean | Whether the password contains a non-alphanumeric character, if required. |
2727
| [containsNumericCharacter](./auth.passwordvalidationstatus.md#passwordvalidationstatuscontainsnumericcharacter) | boolean | Whether the password contains a numeric character, if required. |
28-
| [containsUppercaseLetter](./auth.passwordvalidationstatus.md#passwordvalidationstatuscontainsuppercaseletter) | boolean | Whether the password contains an uppercase letter, if required. |
28+
| [containsUppercaseCharacter](./auth.passwordvalidationstatus.md#passwordvalidationstatuscontainsuppercasecharacter) | boolean | Whether the password contains an uppercase character, if required. |
2929
| [isValid](./auth.passwordvalidationstatus.md#passwordvalidationstatusisvalid) | boolean | Whether the password meets all requirements. |
3030
| [meetsMaxPasswordLength](./auth.passwordvalidationstatus.md#passwordvalidationstatusmeetsmaxpasswordlength) | boolean | Whether the password meets the maximum password length. |
3131
| [meetsMinPasswordLength](./auth.passwordvalidationstatus.md#passwordvalidationstatusmeetsminpasswordlength) | boolean | Whether the password meets the minimum password length. |
3232
| [passwordPolicy](./auth.passwordvalidationstatus.md#passwordvalidationstatuspasswordpolicy) | [PasswordPolicy](./auth.passwordpolicy.md#passwordpolicy_interface) | The policy used to validate the password. |
3333

34-
## PasswordValidationStatus.containsLowercaseLetter
34+
## PasswordValidationStatus.containsLowercaseCharacter
3535

36-
Whether the password contains a lowercase letter, if required.
36+
Whether the password contains a lowercase character, if required.
3737

3838
<b>Signature:</b>
3939

4040
```typescript
41-
readonly containsLowercaseLetter?: boolean;
41+
readonly containsLowercaseCharacter?: boolean;
4242
```
4343

4444
## PasswordValidationStatus.containsNonAlphanumericCharacter
@@ -61,14 +61,14 @@ Whether the password contains a numeric character, if required.
6161
readonly containsNumericCharacter?: boolean;
6262
```
6363

64-
## PasswordValidationStatus.containsUppercaseLetter
64+
## PasswordValidationStatus.containsUppercaseCharacter
6565

66-
Whether the password contains an uppercase letter, if required.
66+
Whether the password contains an uppercase character, if required.
6767

6868
<b>Signature:</b>
6969

7070
```typescript
71-
readonly containsUppercaseLetter?: boolean;
71+
readonly containsUppercaseCharacter?: boolean;
7272
```
7373

7474
## PasswordValidationStatus.isValid

packages/auth/src/api/password_policy/get_password_policy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ export interface GetPasswordPolicyResponse {
3737
customStrengthOptions: {
3838
minPasswordLength?: number;
3939
maxPasswordLength?: number;
40-
containsLowercaseLetter?: boolean;
41-
containsUppercaseLetter?: boolean;
40+
containsLowercaseCharacter?: boolean;
41+
containsUppercaseCharacter?: boolean;
4242
containsNumericCharacter?: boolean;
4343
containsNonAlphanumericCharacter?: boolean;
4444
};

0 commit comments

Comments
 (0)