This commit is contained in:
2026-04-22 21:55:40 +03:30
parent 1a3a450960
commit f9e1ad69dc
85 changed files with 15644 additions and 4057 deletions
+13 -6
View File
@@ -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
*