Increment the amount of money a user has made.
The user's ID.
The amount of money to add.
The updated user record.
Create a new user.
The user's first name.
The user's last name.
The user's email address.
The user's password.
The new user record.
Delete a user.
The user's ID.
Delete a user's image.
The user's ID.
The updated user record.
Get the books currently listed by a user.
The user's ID.
All books currently listed by the user.
Get a user.
The user's ID.
The user record.
Get a user given an email address.
The user's email address.
The user record.
Hash a password.
The password.
The hashed password.
Increment the number of books a user has listed.
The user's ID.
The number to increment by.
The updated user record.
Increment the number of books a user has sold.
The user's ID.
The number to increment by.
The updated user record.
Log a user in and return the new session.
The user's email address.
The user's password.
The new user session.
Check if passwords match.
The password.
The hashed password.
Whether or not the password and hash match.
Prune all old unverified accounts.
Get a list of books recommended to the user.
The user's ID.
The list of recommended books.
Set a user's password.
The user's ID.
The new password.
The updated user record.
Set a user's image.
The user's ID.
The image data.
The updated user record.
Set a user's verified status.
The user's ID.
The new verified status.
The updated user record.
Determine whether or not a user exists.
The ID of the user.
Whether or not the user exists.
Determine whether or not a user with a given email address exists.
The user's email.
Whether or not a user with the given email address exists.
Generated using TypeDoc
User table service.