Added Auth
This commit is contained in:
@@ -17,4 +17,38 @@ import * as Prisma from './internal/prismaNamespaceBrowser.ts'
|
||||
export { Prisma }
|
||||
export * as $Enums from './enums.ts'
|
||||
export * from './enums.ts';
|
||||
|
||||
/**
|
||||
* Model User
|
||||
*
|
||||
*/
|
||||
export type User = Prisma.UserModel
|
||||
/**
|
||||
* Model Session
|
||||
*
|
||||
*/
|
||||
export type Session = Prisma.SessionModel
|
||||
/**
|
||||
* Model Account
|
||||
*
|
||||
*/
|
||||
export type Account = Prisma.AccountModel
|
||||
/**
|
||||
* Model Verification
|
||||
*
|
||||
*/
|
||||
export type Verification = Prisma.VerificationModel
|
||||
/**
|
||||
* Model Organization
|
||||
*
|
||||
*/
|
||||
export type Organization = Prisma.OrganizationModel
|
||||
/**
|
||||
* Model Member
|
||||
*
|
||||
*/
|
||||
export type Member = Prisma.MemberModel
|
||||
/**
|
||||
* Model Invitation
|
||||
*
|
||||
*/
|
||||
export type Invitation = Prisma.InvitationModel
|
||||
|
||||
Reference in New Issue
Block a user