/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Password Policy Serializer * @export * @interface PasswordPolicyRequest */ export interface PasswordPolicyRequest { /** * * @type {string} * @memberof PasswordPolicyRequest */ name: string; /** * When this option is enabled, all executions of this policy will be logged. By default, only execution errors are logged. * @type {boolean} * @memberof PasswordPolicyRequest */ executionLogging?: boolean; /** * Field key to check, field keys defined in Prompt stages are available. * @type {string} * @memberof PasswordPolicyRequest */ passwordField?: string; /** * * @type {number} * @memberof PasswordPolicyRequest */ amountDigits?: number; /** * * @type {number} * @memberof PasswordPolicyRequest */ amountUppercase?: number; /** * * @type {number} * @memberof PasswordPolicyRequest */ amountLowercase?: number; /** * * @type {number} * @memberof PasswordPolicyRequest */ amountSymbols?: number; /** * * @type {number} * @memberof PasswordPolicyRequest */ lengthMin?: number; /** * * @type {string} * @memberof PasswordPolicyRequest */ symbolCharset?: string; /** * * @type {string} * @memberof PasswordPolicyRequest */ errorMessage?: string; /** * * @type {boolean} * @memberof PasswordPolicyRequest */ checkStaticRules?: boolean; /** * * @type {boolean} * @memberof PasswordPolicyRequest */ checkHaveIBeenPwned?: boolean; /** * * @type {boolean} * @memberof PasswordPolicyRequest */ checkZxcvbn?: boolean; /** * How many times the password hash is allowed to be on haveibeenpwned * @type {number} * @memberof PasswordPolicyRequest */ hibpAllowedCount?: number; /** * If the zxcvbn score is equal or less than this value, the policy will fail. * @type {number} * @memberof PasswordPolicyRequest */ zxcvbnScoreThreshold?: number; } /** * Check if a given object implements the PasswordPolicyRequest interface. */ export declare function instanceOfPasswordPolicyRequest(value: object): value is PasswordPolicyRequest; export declare function PasswordPolicyRequestFromJSON(json: any): PasswordPolicyRequest; export declare function PasswordPolicyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PasswordPolicyRequest; export declare function PasswordPolicyRequestToJSON(json: any): PasswordPolicyRequest; export declare function PasswordPolicyRequestToJSONTyped(value?: PasswordPolicyRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PasswordPolicyRequest.d.ts.map