zibri
    Preparing search index...

    The data used by the cookie auth strategy to request a password reset.

    type CookieAuthRequestPasswordResetData<
        RoleType extends string,
        UserType extends BaseUser<RoleType>,
    > = {
        emailData?: Partial<
            QueueEmailData & { confirmPasswordResetUrl: string },
        >;
        transaction: Transaction;
        user: UserType;
    }

    Type Parameters

    Index

    Properties

    emailData?: Partial<QueueEmailData & { confirmPasswordResetUrl: string }>

    Additional data for the password reset email.

    transaction: Transaction

    The transaction that this should run in.

    user: UserType

    The user which password should be reset.