/** * Lead Scraping Service API * Vector Lead Scraping Service API - Manages Lead Scraping Jobs * * The version of the OpenAPI document: 1.0 * Contact: yoanyomba@vector.ai * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * - AUTH_FAILED_INVALID_BEARER_TOKEN: Authentication errors - SESSION_EXPIRED: Session errors - UNAUTHENTICATED: Other authentication errors - ACCOUNT_LOCKED: New authentication error codes Account is locked due to too many failed login attempts - ACCOUNT_DISABLED: Account has been disabled by admin - PASSWORD_EXPIRED: Password has expired and must be changed - PASSWORD_RESET_REQUIRED: Password reset is required - UNRECOGNIZED_DEVICE: Login attempt from an unrecognized device */ export declare enum AuthErrorCode { NoAuthError, AuthFailedInvalidBearerToken, AuthFailedInvalidSubject, AuthFailedInvalidAudience, AuthFailedInvalidIssuer, BearerTokenMissing, TokenExpired, TokenNotActive, TokenRevoked, InvalidClaims, MissingRequiredClaims, InvalidScope, InvalidPermissions, SessionExpired, SessionInvalid, SessionRevoked, Unauthenticated, MultiFactorRequired, MultiFactorFailed, AccountLocked, AccountDisabled, PasswordExpired, PasswordResetRequired, UnrecognizedDevice }