/** * 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. */ import type { AppleLoginChallenge } from './AppleLoginChallenge'; import type { PlexAuthenticationChallenge } from './PlexAuthenticationChallenge'; import type { RedirectChallenge } from './RedirectChallenge'; /** * @type LoginChallengeTypes * * @export */ export type LoginChallengeTypes = { component: 'ak-source-oauth-apple'; } & AppleLoginChallenge | { component: 'ak-source-plex'; } & PlexAuthenticationChallenge | { component: 'xak-flow-redirect'; } & RedirectChallenge; export declare function LoginChallengeTypesFromJSON(json: any): LoginChallengeTypes; export declare function LoginChallengeTypesFromJSONTyped(json: any, ignoreDiscriminator: boolean): LoginChallengeTypes; export declare function LoginChallengeTypesToJSON(json: any): any; export declare function LoginChallengeTypesToJSONTyped(value?: LoginChallengeTypes | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=LoginChallengeTypes.d.ts.map