294 lines
8.7 KiB
JavaScript
294 lines
8.7 KiB
JavaScript
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
|
const {
|
|
Decimal,
|
|
objectEnumValues,
|
|
makeStrictEnum,
|
|
Public,
|
|
getRuntime,
|
|
skip
|
|
} = require('@prisma/client/runtime/index-browser.js')
|
|
|
|
|
|
const Prisma = {}
|
|
|
|
exports.Prisma = Prisma
|
|
exports.$Enums = {}
|
|
|
|
/**
|
|
* Prisma Client JS version: 6.4.1
|
|
* Query Engine version: a9055b89e58b4b5bfb59600785423b1db3d0e75d
|
|
*/
|
|
Prisma.prismaVersion = {
|
|
client: "6.4.1",
|
|
engine: "a9055b89e58b4b5bfb59600785423b1db3d0e75d"
|
|
}
|
|
|
|
Prisma.PrismaClientKnownRequestError = () => {
|
|
const runtimeName = getRuntime().prettyName;
|
|
throw new Error(`PrismaClientKnownRequestError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
|
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
|
)};
|
|
Prisma.PrismaClientUnknownRequestError = () => {
|
|
const runtimeName = getRuntime().prettyName;
|
|
throw new Error(`PrismaClientUnknownRequestError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
|
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
|
)}
|
|
Prisma.PrismaClientRustPanicError = () => {
|
|
const runtimeName = getRuntime().prettyName;
|
|
throw new Error(`PrismaClientRustPanicError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
|
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
|
)}
|
|
Prisma.PrismaClientInitializationError = () => {
|
|
const runtimeName = getRuntime().prettyName;
|
|
throw new Error(`PrismaClientInitializationError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
|
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
|
)}
|
|
Prisma.PrismaClientValidationError = () => {
|
|
const runtimeName = getRuntime().prettyName;
|
|
throw new Error(`PrismaClientValidationError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
|
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
|
)}
|
|
Prisma.Decimal = Decimal
|
|
|
|
/**
|
|
* Re-export of sql-template-tag
|
|
*/
|
|
Prisma.sql = () => {
|
|
const runtimeName = getRuntime().prettyName;
|
|
throw new Error(`sqltag is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
|
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
|
)}
|
|
Prisma.empty = () => {
|
|
const runtimeName = getRuntime().prettyName;
|
|
throw new Error(`empty is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
|
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
|
)}
|
|
Prisma.join = () => {
|
|
const runtimeName = getRuntime().prettyName;
|
|
throw new Error(`join is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
|
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
|
)}
|
|
Prisma.raw = () => {
|
|
const runtimeName = getRuntime().prettyName;
|
|
throw new Error(`raw is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
|
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
|
)}
|
|
Prisma.validator = Public.validator
|
|
|
|
/**
|
|
* Extensions
|
|
*/
|
|
Prisma.getExtensionContext = () => {
|
|
const runtimeName = getRuntime().prettyName;
|
|
throw new Error(`Extensions.getExtensionContext is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
|
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
|
)}
|
|
Prisma.defineExtension = () => {
|
|
const runtimeName = getRuntime().prettyName;
|
|
throw new Error(`Extensions.defineExtension is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
|
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
|
)}
|
|
|
|
/**
|
|
* 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
|
|
*/
|
|
|
|
exports.Prisma.TransactionIsolationLevel = makeStrictEnum({
|
|
ReadUncommitted: 'ReadUncommitted',
|
|
ReadCommitted: 'ReadCommitted',
|
|
RepeatableRead: 'RepeatableRead',
|
|
Serializable: 'Serializable'
|
|
});
|
|
|
|
exports.Prisma.UserScalarFieldEnum = {
|
|
id: 'id',
|
|
email: 'email',
|
|
password: 'password',
|
|
createdAt: 'createdAt',
|
|
updatedAt: 'updatedAt'
|
|
};
|
|
|
|
exports.Prisma.CalendarScalarFieldEnum = {
|
|
id: 'id',
|
|
name: 'name',
|
|
color: 'color',
|
|
description: 'description',
|
|
userId: 'userId',
|
|
createdAt: 'createdAt',
|
|
updatedAt: 'updatedAt'
|
|
};
|
|
|
|
exports.Prisma.EventScalarFieldEnum = {
|
|
id: 'id',
|
|
title: 'title',
|
|
description: 'description',
|
|
start: 'start',
|
|
end: 'end',
|
|
location: 'location',
|
|
isAllDay: 'isAllDay',
|
|
calendarId: 'calendarId',
|
|
userId: 'userId',
|
|
createdAt: 'createdAt',
|
|
updatedAt: 'updatedAt'
|
|
};
|
|
|
|
exports.Prisma.MailCredentialsScalarFieldEnum = {
|
|
id: 'id',
|
|
userId: 'userId',
|
|
email: 'email',
|
|
password: 'password',
|
|
host: 'host',
|
|
port: 'port',
|
|
secure: 'secure',
|
|
use_oauth: 'use_oauth',
|
|
refresh_token: 'refresh_token',
|
|
access_token: 'access_token',
|
|
token_expiry: 'token_expiry',
|
|
smtp_host: 'smtp_host',
|
|
smtp_port: 'smtp_port',
|
|
smtp_secure: 'smtp_secure',
|
|
display_name: 'display_name',
|
|
color: 'color',
|
|
createdAt: 'createdAt',
|
|
updatedAt: 'updatedAt'
|
|
};
|
|
|
|
exports.Prisma.WebDAVCredentialsScalarFieldEnum = {
|
|
id: 'id',
|
|
userId: 'userId',
|
|
username: 'username',
|
|
password: 'password',
|
|
createdAt: 'createdAt',
|
|
updatedAt: 'updatedAt'
|
|
};
|
|
|
|
exports.Prisma.AnnouncementScalarFieldEnum = {
|
|
id: 'id',
|
|
title: 'title',
|
|
content: 'content',
|
|
createdAt: 'createdAt',
|
|
updatedAt: 'updatedAt',
|
|
authorId: 'authorId',
|
|
targetRoles: 'targetRoles'
|
|
};
|
|
|
|
exports.Prisma.MissionScalarFieldEnum = {
|
|
id: 'id',
|
|
name: 'name',
|
|
logo: 'logo',
|
|
oddScope: 'oddScope',
|
|
niveau: 'niveau',
|
|
intention: 'intention',
|
|
missionType: 'missionType',
|
|
donneurDOrdre: 'donneurDOrdre',
|
|
projection: 'projection',
|
|
services: 'services',
|
|
participation: 'participation',
|
|
profils: 'profils',
|
|
createdAt: 'createdAt',
|
|
updatedAt: 'updatedAt',
|
|
creatorId: 'creatorId',
|
|
leantimeProjectId: 'leantimeProjectId',
|
|
outlineCollectionId: 'outlineCollectionId',
|
|
rocketChatChannelId: 'rocketChatChannelId',
|
|
giteaRepositoryUrl: 'giteaRepositoryUrl',
|
|
penpotProjectId: 'penpotProjectId'
|
|
};
|
|
|
|
exports.Prisma.AttachmentScalarFieldEnum = {
|
|
id: 'id',
|
|
filename: 'filename',
|
|
filePath: 'filePath',
|
|
fileType: 'fileType',
|
|
fileSize: 'fileSize',
|
|
createdAt: 'createdAt',
|
|
updatedAt: 'updatedAt',
|
|
missionId: 'missionId',
|
|
uploaderId: 'uploaderId'
|
|
};
|
|
|
|
exports.Prisma.MissionUserScalarFieldEnum = {
|
|
id: 'id',
|
|
role: 'role',
|
|
createdAt: 'createdAt',
|
|
updatedAt: 'updatedAt',
|
|
missionId: 'missionId',
|
|
userId: 'userId'
|
|
};
|
|
|
|
exports.Prisma.SortOrder = {
|
|
asc: 'asc',
|
|
desc: 'desc'
|
|
};
|
|
|
|
exports.Prisma.QueryMode = {
|
|
default: 'default',
|
|
insensitive: 'insensitive'
|
|
};
|
|
|
|
exports.Prisma.NullsOrder = {
|
|
first: 'first',
|
|
last: 'last'
|
|
};
|
|
|
|
|
|
exports.Prisma.ModelName = {
|
|
User: 'User',
|
|
Calendar: 'Calendar',
|
|
Event: 'Event',
|
|
MailCredentials: 'MailCredentials',
|
|
WebDAVCredentials: 'WebDAVCredentials',
|
|
Announcement: 'Announcement',
|
|
Mission: 'Mission',
|
|
Attachment: 'Attachment',
|
|
MissionUser: 'MissionUser'
|
|
};
|
|
|
|
/**
|
|
* This is a stub Prisma Client that will error at runtime if called.
|
|
*/
|
|
class PrismaClient {
|
|
constructor() {
|
|
return new Proxy(this, {
|
|
get(target, prop) {
|
|
let message
|
|
const runtime = getRuntime()
|
|
if (runtime.isEdge) {
|
|
message = `PrismaClient is not configured to run in ${runtime.prettyName}. In order to run Prisma Client on edge runtime, either:
|
|
- Use Prisma Accelerate: https://pris.ly/d/accelerate
|
|
- Use Driver Adapters: https://pris.ly/d/driver-adapters
|
|
`;
|
|
} else {
|
|
message = 'PrismaClient is unable to run in this browser environment, or has been bundled for the browser (running in `' + runtime.prettyName + '`).'
|
|
}
|
|
|
|
message += `
|
|
If this is unexpected, please open an issue: https://pris.ly/prisma-prisma-bug-report`
|
|
|
|
throw new Error(message)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
exports.PrismaClient = PrismaClient
|
|
|
|
Object.assign(exports, Prisma)
|