1-
21/* !!! This is code generated by Prisma. Do not edit directly. !!! */
32/* eslint-disable */
43// biome-ignore-all lint: generated file
5- // @ts -nocheck
4+ // @ts -nocheck
65/*
76 * This file should be your main import to use Prisma. Through it you get access to all the models, enums, and input types.
87 * If you're looking for something you can import in the client-side of your application, please refer to the `browser.ts` file instead.
98 *
109 * 🟢 You can import this file directly.
1110 */
1211
13- import * as process from 'node:process'
14- import * as path from 'node:path'
15- import { fileURLToPath } from 'node:url'
16- globalThis [ '__dirname' ] = path . dirname ( fileURLToPath ( import . meta. url ) )
12+ import * as process from 'node:process' ;
13+ import * as path from 'node:path' ;
14+ import { fileURLToPath } from 'node:url' ;
15+ globalThis [ '__dirname' ] = path . dirname ( fileURLToPath ( import . meta. url ) ) ;
1716
18- import * as runtime from " @prisma/client/runtime/client"
19- import * as $Enums from " ./enums.js"
20- import * as $Class from " ./internal/class.js"
21- import * as Prisma from " ./internal/prismaNamespace.js"
17+ import * as runtime from ' @prisma/client/runtime/client' ;
18+ import * as $Enums from ' ./enums.js' ;
19+ import * as $Class from ' ./internal/class.js' ;
20+ import * as Prisma from ' ./internal/prismaNamespace.js' ;
2221
23- export * as $Enums from './enums.js'
24- export * from " ./enums.js"
22+ export * as $Enums from './enums.js' ;
23+ export * from ' ./enums.js' ;
2524/**
2625 * ## Prisma Client
27- *
26+ *
2827 * Type-safe database client for TypeScript
2928 * @example
3029 * ```
@@ -34,45 +33,49 @@ export * from "./enums.js"
3433 * // Fetch zero or more Locations
3534 * const locations = await prisma.location.findMany()
3635 * ```
37- *
36+ *
3837 * Read more in our [docs](https://pris.ly/d/client).
3938 */
40- export const PrismaClient = $Class . getPrismaClientClass ( )
41- export type PrismaClient < LogOpts extends Prisma . LogLevel = never , OmitOpts extends Prisma . PrismaClientOptions [ "omit" ] = Prisma . PrismaClientOptions [ "omit" ] , ExtArgs extends runtime . Types . Extensions . InternalArgs = runtime . Types . Extensions . DefaultArgs > = $Class . PrismaClient < LogOpts , OmitOpts , ExtArgs >
42- export { Prisma }
39+ export const PrismaClient = $Class . getPrismaClientClass ( ) ;
40+ export type PrismaClient <
41+ LogOpts extends Prisma . LogLevel = never ,
42+ OmitOpts extends Prisma . PrismaClientOptions [ 'omit' ] = Prisma . PrismaClientOptions [ 'omit' ] ,
43+ ExtArgs extends runtime . Types . Extensions . InternalArgs = runtime . Types . Extensions . DefaultArgs
44+ > = $Class . PrismaClient < LogOpts , OmitOpts , ExtArgs > ;
45+ export { Prisma } ;
4346
4447/**
4548 * Model Location
4649 * A named pickup or drop-off point used in rides
4750 */
48- export type Location = Prisma . LocationModel
51+ export type Location = Prisma . LocationModel ;
4952/**
5053 * Model Employee
5154 * A platform employee who may be an admin, a driver, or both
5255 */
53- export type Employee = Prisma . EmployeeModel
56+ export type Employee = Prisma . EmployeeModel ;
5457/**
5558 * Model Rider
5659 * A rider who requests and takes rides
5760 */
58- export type Rider = Prisma . RiderModel
61+ export type Rider = Prisma . RiderModel ;
5962/**
6063 * Model Ride
6164 * A scheduled trip from a start location to an end location
6265 */
63- export type Ride = Prisma . RideModel
66+ export type Ride = Prisma . RideModel ;
6467/**
6568 * Model Favorite
6669 * Tracks which riders have favorited which rides
6770 */
68- export type Favorite = Prisma . FavoriteModel
71+ export type Favorite = Prisma . FavoriteModel ;
6972/**
7073 * Model Stats
7174 * Aggregated daily ride statistics -- year and day of year
7275 */
73- export type Stats = Prisma . StatsModel
76+ export type Stats = Prisma . StatsModel ;
7477/**
7578 * Model Notification
7679 * A push notification sent to a user about a ride status change
7780 */
78- export type Notification = Prisma . NotificationModel
81+ export type Notification = Prisma . NotificationModel ;
0 commit comments