149 lines
4.3 KiB
JavaScript
149 lines
4.3 KiB
JavaScript
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
|
const {
|
|
Decimal,
|
|
objectEnumValues,
|
|
makeStrictEnum
|
|
} = require('@prisma/client/runtime/index-browser')
|
|
|
|
|
|
const Prisma = {}
|
|
|
|
exports.Prisma = Prisma
|
|
|
|
/**
|
|
* Prisma Client JS version: 4.9.0
|
|
* Query Engine version: ceb5c99003b99c9ee2c1d2e618e359c14aef2ea5
|
|
*/
|
|
Prisma.prismaVersion = {
|
|
client: "4.9.0",
|
|
engine: "ceb5c99003b99c9ee2c1d2e618e359c14aef2ea5"
|
|
}
|
|
|
|
Prisma.PrismaClientKnownRequestError = () => {
|
|
throw new Error(`PrismaClientKnownRequestError is unable to be run in the browser.
|
|
In case this error is unexpected for you, please report it in https://github.com/prisma/prisma/issues`,
|
|
)};
|
|
Prisma.PrismaClientUnknownRequestError = () => {
|
|
throw new Error(`PrismaClientUnknownRequestError is unable to be run in the browser.
|
|
In case this error is unexpected for you, please report it in https://github.com/prisma/prisma/issues`,
|
|
)}
|
|
Prisma.PrismaClientRustPanicError = () => {
|
|
throw new Error(`PrismaClientRustPanicError is unable to be run in the browser.
|
|
In case this error is unexpected for you, please report it in https://github.com/prisma/prisma/issues`,
|
|
)}
|
|
Prisma.PrismaClientInitializationError = () => {
|
|
throw new Error(`PrismaClientInitializationError is unable to be run in the browser.
|
|
In case this error is unexpected for you, please report it in https://github.com/prisma/prisma/issues`,
|
|
)}
|
|
Prisma.PrismaClientValidationError = () => {
|
|
throw new Error(`PrismaClientValidationError is unable to be run in the browser.
|
|
In case this error is unexpected for you, please report it in https://github.com/prisma/prisma/issues`,
|
|
)}
|
|
Prisma.NotFoundError = () => {
|
|
throw new Error(`NotFoundError is unable to be run in the browser.
|
|
In case this error is unexpected for you, please report it in https://github.com/prisma/prisma/issues`,
|
|
)}
|
|
Prisma.Decimal = Decimal
|
|
|
|
/**
|
|
* Re-export of sql-template-tag
|
|
*/
|
|
Prisma.sql = () => {
|
|
throw new Error(`sqltag is unable to be run in the browser.
|
|
In case this error is unexpected for you, please report it in https://github.com/prisma/prisma/issues`,
|
|
)}
|
|
Prisma.empty = () => {
|
|
throw new Error(`empty is unable to be run in the browser.
|
|
In case this error is unexpected for you, please report it in https://github.com/prisma/prisma/issues`,
|
|
)}
|
|
Prisma.join = () => {
|
|
throw new Error(`join is unable to be run in the browser.
|
|
In case this error is unexpected for you, please report it in https://github.com/prisma/prisma/issues`,
|
|
)}
|
|
Prisma.raw = () => {
|
|
throw new Error(`raw is unable to be run in the browser.
|
|
In case this error is unexpected for you, please report it in https://github.com/prisma/prisma/issues`,
|
|
)}
|
|
Prisma.validator = () => (val) => val
|
|
|
|
|
|
/**
|
|
* Shorthand utilities for JSON filtering
|
|
*/
|
|
Prisma.DbNull = objectEnumValues.instances.DbNull
|
|
Prisma.JsonNull = objectEnumValues.instances.JsonNull
|
|
Prisma.AnyNull = objectEnumValues.instances.AnyNull
|
|
|
|
Prisma.NullTypes = {
|
|
DbNull: objectEnumValues.classes.DbNull,
|
|
JsonNull: objectEnumValues.classes.JsonNull,
|
|
AnyNull: objectEnumValues.classes.AnyNull
|
|
}
|
|
|
|
/**
|
|
* Enums
|
|
*/
|
|
// Based on
|
|
// https://github.com/microsoft/TypeScript/issues/3192#issuecomment-261720275
|
|
function makeEnum(x) { return x; }
|
|
|
|
exports.Prisma.MetricScalarFieldEnum = makeEnum({
|
|
id: 'id',
|
|
path: 'path',
|
|
uuid: 'uuid',
|
|
remote_address: 'remote_address',
|
|
date_requested: 'date_requested',
|
|
projectId: 'projectId',
|
|
createdAt: 'createdAt',
|
|
updatedAt: 'updatedAt'
|
|
});
|
|
|
|
exports.Prisma.ProjectScalarFieldEnum = makeEnum({
|
|
id: 'id',
|
|
title: 'title',
|
|
uuid: 'uuid',
|
|
createdAt: 'createdAt',
|
|
updatedAt: 'updatedAt',
|
|
network: 'network'
|
|
});
|
|
|
|
exports.Prisma.QueryMode = makeEnum({
|
|
default: 'default',
|
|
insensitive: 'insensitive'
|
|
});
|
|
|
|
exports.Prisma.SortOrder = makeEnum({
|
|
asc: 'asc',
|
|
desc: 'desc'
|
|
});
|
|
|
|
exports.Prisma.TransactionIsolationLevel = makeStrictEnum({
|
|
ReadUncommitted: 'ReadUncommitted',
|
|
ReadCommitted: 'ReadCommitted',
|
|
RepeatableRead: 'RepeatableRead',
|
|
Serializable: 'Serializable'
|
|
});
|
|
|
|
|
|
exports.Prisma.ModelName = makeEnum({
|
|
Project: 'Project',
|
|
Metric: 'Metric'
|
|
});
|
|
|
|
/**
|
|
* Create the Client
|
|
*/
|
|
class PrismaClient {
|
|
constructor() {
|
|
throw new Error(
|
|
`PrismaClient is unable to be run in the browser.
|
|
In case this error is unexpected for you, please report it in https://github.com/prisma/prisma/issues`,
|
|
)
|
|
}
|
|
}
|
|
exports.PrismaClient = PrismaClient
|
|
|
|
Object.assign(exports, Prisma)
|