Type Alias SessionPostReturnType

SessionPostReturnType: {
    customToken: string;
    guilds: {
        banner: string | null;
        icon: string | null;
        id: string;
        isBotIn: boolean;
        name: string;
    }[];
    user: {
        database: {
            badges: string | null | undefined;
            birthday: string | null | undefined;
            bitfield: string | null | undefined;
            blacklisted: boolean;
            hasGuildSubscription: boolean;
            linkedAccounts: {
                kick: string | null | undefined;
                rumble: string | null | undefined;
                twitch: string | null | undefined;
            };
            linkedRoles: boolean;
            locale: string;
            mediaShare: User["mediaShare"] & {
                isModToSomeone: {
                    userId: string | undefined;
                    usernames: {
                        kick: string | null | undefined;
                        rumble: string | null | undefined;
                        twitch: string | null | undefined;
                    };
                }[];
            };
            premium: {
                enabled?: boolean | null;
                tier?: string | null;
            };
            votes: number | null | undefined;
        };
        discord: {
            accentColor: string;
            avatar: string | null;
            banner: string | null;
            discriminator: string;
            email: string | null | undefined;
            globalName: string | null;
            id: string;
            isBotDev: boolean;
            useNewUsername: boolean;
            username: string;
        };
    };
}