Skip to content

Commit 5875331

Browse files
committed
merge commits
1 parent 1b7861f commit 5875331

13 files changed

Lines changed: 10533 additions & 7333 deletions

File tree

server/generated/prisma/browser.ts

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,53 @@
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
/*
7-
* This file should be your main import to use Prisma-related types and utilities in a browser.
6+
* This file should be your main import to use Prisma-related types and utilities in a browser.
87
* Use it to get access to models, enums, and input types.
9-
*
8+
*
109
* This file does not contain a `PrismaClient` class, nor several other helpers that are intended as server-side only.
1110
* See `client.ts` for the standard, server-side entry point.
1211
*
1312
* 🟢 You can import this file directly.
1413
*/
1514

16-
import * as Prisma from './internal/prismaNamespaceBrowser.js'
17-
export { Prisma }
18-
export * as $Enums from './enums.js'
15+
import * as Prisma from './internal/prismaNamespaceBrowser.js';
16+
export { Prisma };
17+
export * as $Enums from './enums.js';
1918
export * from './enums.js';
2019
/**
2120
* Model Location
2221
* A named pickup or drop-off point used in rides
2322
*/
24-
export type Location = Prisma.LocationModel
23+
export type Location = Prisma.LocationModel;
2524
/**
2625
* Model Employee
2726
* A platform employee who may be an admin, a driver, or both
2827
*/
29-
export type Employee = Prisma.EmployeeModel
28+
export type Employee = Prisma.EmployeeModel;
3029
/**
3130
* Model Rider
3231
* A rider who requests and takes rides
3332
*/
34-
export type Rider = Prisma.RiderModel
33+
export type Rider = Prisma.RiderModel;
3534
/**
3635
* Model Ride
3736
* A scheduled trip from a start location to an end location
3837
*/
39-
export type Ride = Prisma.RideModel
38+
export type Ride = Prisma.RideModel;
4039
/**
4140
* Model Favorite
4241
* Tracks which riders have favorited which rides
4342
*/
44-
export type Favorite = Prisma.FavoriteModel
43+
export type Favorite = Prisma.FavoriteModel;
4544
/**
4645
* Model Stats
4746
* Aggregated daily ride statistics -- year and day of year
4847
*/
49-
export type Stats = Prisma.StatsModel
48+
export type Stats = Prisma.StatsModel;
5049
/**
5150
* Model Notification
5251
* A push notification sent to a user about a ride status change
5352
*/
54-
export type Notification = Prisma.NotificationModel
53+
export type Notification = Prisma.NotificationModel;

server/generated/prisma/client.ts

Lines changed: 27 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,29 @@
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;

server/generated/prisma/internal/class.ts

Lines changed: 158 additions & 103 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)