/opt/canhelp/node_modules/better-auth/dist/plugins/admin
Edit: /opt/canhelp/node_modules/better-auth/dist/plugins/admin/schema.mjs (549B)
//#region src/plugins/admin/schema.ts
const schema = {
user: { fields: {
role: {
type: "string",
required: false,
input: false
},
banned: {
type: "boolean",
defaultValue: false,
required: false,
input: false
},
banReason: {
type: "string",
required: false,
input: false
},
banExpires: {
type: "date",
required: false,
input: false
}
} },
session: { fields: { impersonatedBy: {
type: "string",
required: false
} } }
};
//#endregion
export { schema };
//# sourceMappingURL=schema.mjs.map