better-auth
Version:
The most comprehensive authentication framework for TypeScript.
13 lines (11 loc) • 523 B
JavaScript
import { defineErrorCodes } from "@better-auth/core/utils";
//#region src/plugins/anonymous/error-codes.ts
const ANONYMOUS_ERROR_CODES = defineErrorCodes({
INVALID_EMAIL_FORMAT: "Email was not generated in a valid format",
FAILED_TO_CREATE_USER: "Failed to create user",
COULD_NOT_CREATE_SESSION: "Could not create session",
ANONYMOUS_USERS_CANNOT_SIGN_IN_AGAIN_ANONYMOUSLY: "Anonymous users cannot sign in again anonymously"
});
//#endregion
export { ANONYMOUS_ERROR_CODES };
//# sourceMappingURL=error-codes.mjs.map