supertokens-node
    Preparing search index...

    Type Alias APIInterface

    type APIInterface = {
        resyncSessionAndFetchMFAInfoPUT:
            | undefined
            | (
                (
                    input: {
                        options: APIOptions;
                        session: SessionContainer;
                        userContext: UserContext;
                    },
                ) => Promise<
                    | {
                        emails: Record<string, string[] | undefined>;
                        factors: {
                            allowedToSetup: string[];
                            alreadySetup: string[];
                            next: string[];
                        };
                        phoneNumbers: Record<string, string[] | undefined>;
                        status: "OK";
                    }
                    | GeneralErrorResponse,
                >
            );
    }
    Index

    Properties

    resyncSessionAndFetchMFAInfoPUT:
        | undefined
        | (
            (
                input: {
                    options: APIOptions;
                    session: SessionContainer;
                    userContext: UserContext;
                },
            ) => Promise<
                | {
                    emails: Record<string, string[] | undefined>;
                    factors: {
                        allowedToSetup: string[];
                        alreadySetup: string[];
                        next: string[];
                    };
                    phoneNumbers: Record<string, string[] | undefined>;
                    status: "OK";
                }
                | GeneralErrorResponse,
            >
        )