Defined in: src/auth/db.ts:18 Database collection for storing user accounts with authentication methods and profile information. This is where signupWithPassword automatically creates new users.constdbUsers:Store<{authMethods:ZodObject<{github:ZodOptional<ZodObject<{id:ZodString; },"strip",ZodTypeAny, {id:string; }, {id:string; }>>;ZodOptional<ZodObject<{id:ZodString; },"strip",ZodTypeAny, {id:string; }, {id:string; }>>;password:ZodOptional<ZodObject<{hash:ZodString; },"strip",ZodTypeAny, {hash:string; }, {hash:string; }>>; },"strip",ZodTypeAny, {github?: {id:string; };google?: {id:string; };password?: {hash:string; }; }, {github?: {id:string; };google?: {id:string; };password?: {hash:string; }; }>;createdAt:ZodDate;deletedAt:ZodOptional<ZodDate>;disabledAt:ZodOptional<ZodDate>;emails:ZodOptional<ZodArray<ZodObject<{address:ZodString;verified:ZodBoolean; },"strip",ZodTypeAny, {address:string;verified:boolean; }, {address:string;verified:boolean; }>,"many">>;handle:ZodString;roles:ZodOptional<ZodArray<ZodString,"many">>;status:ZodOptional<ZodEnum<["active","disabled","deleted"]>>; },Record<string, (this, …args) =>any>>