update
This commit is contained in:
@@ -26,7 +26,9 @@ export * from "./enums.js"
|
||||
* Type-safe database client for TypeScript
|
||||
* @example
|
||||
* ```
|
||||
* const prisma = new PrismaClient()
|
||||
* const prisma = new PrismaClient({
|
||||
* adapter: new PrismaPg({ connectionString: process.env.DATABASE_URL })
|
||||
* })
|
||||
* // Fetch zero or more AdminAccounts
|
||||
* const adminAccounts = await prisma.adminAccount.findMany()
|
||||
* ```
|
||||
@@ -142,16 +144,21 @@ export type ProviderAccount = Prisma.ProviderAccountModel
|
||||
*
|
||||
*/
|
||||
export type Provider = Prisma.ProviderModel
|
||||
/**
|
||||
* Model ConsumerDevices
|
||||
*
|
||||
*/
|
||||
export type ConsumerDevices = Prisma.ConsumerDevicesModel
|
||||
/**
|
||||
* Model ApplicationReleasedInfo
|
||||
*
|
||||
*/
|
||||
export type ApplicationReleasedInfo = Prisma.ApplicationReleasedInfoModel
|
||||
/**
|
||||
* Model TriggerLog
|
||||
*
|
||||
*/
|
||||
export type TriggerLog = Prisma.TriggerLogModel
|
||||
/**
|
||||
* Model UserDevices
|
||||
*
|
||||
*/
|
||||
export type UserDevices = Prisma.UserDevicesModel
|
||||
/**
|
||||
* Model Customer
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user