/** * Generated by Orval * Do not edit manually. * See `gen:api` script in package.json */ /** * Used to validate passwords obeying [Unleash password guidelines](https://docs.getunleash.io/reference/deploy/securing-unleash#password-requirements) */ export interface ValidatePasswordSchema { /** The password to validate */ password: string; }