172 lines
4.5 KiB
TypeScript
172 lines
4.5 KiB
TypeScript
|
|
|
||
|
|
/* !!! This is code generated by Prisma. Do not edit directly. !!! */
|
||
|
|
/* eslint-disable */
|
||
|
|
// biome-ignore-all lint: generated file
|
||
|
|
// @ts-nocheck
|
||
|
|
/*
|
||
|
|
* WARNING: This is an internal file that is subject to change!
|
||
|
|
*
|
||
|
|
* 🛑 Under no circumstances should you import this file directly! 🛑
|
||
|
|
*
|
||
|
|
* All exports from this file are wrapped under a `Prisma` namespace object in the browser.ts file.
|
||
|
|
* While this enables partial backward compatibility, it is not part of the stable public API.
|
||
|
|
*
|
||
|
|
* If you are looking for your Models, Enums, and Input Types, please import them from the respective
|
||
|
|
* model files in the `model` directory!
|
||
|
|
*/
|
||
|
|
|
||
|
|
import * as runtime from "@prisma/client/runtime/index-browser"
|
||
|
|
|
||
|
|
export type * from '../models.js'
|
||
|
|
export type * from './prismaNamespace.js'
|
||
|
|
|
||
|
|
export const Decimal = runtime.Decimal
|
||
|
|
|
||
|
|
|
||
|
|
export const NullTypes = {
|
||
|
|
DbNull: runtime.NullTypes.DbNull as (new (secret: never) => typeof runtime.DbNull),
|
||
|
|
JsonNull: runtime.NullTypes.JsonNull as (new (secret: never) => typeof runtime.JsonNull),
|
||
|
|
AnyNull: runtime.NullTypes.AnyNull as (new (secret: never) => typeof runtime.AnyNull),
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* Helper for filtering JSON entries that have `null` on the database (empty on the db)
|
||
|
|
*
|
||
|
|
* @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
|
||
|
|
*/
|
||
|
|
export const DbNull = runtime.DbNull
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Helper for filtering JSON entries that have JSON `null` values (not empty on the db)
|
||
|
|
*
|
||
|
|
* @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
|
||
|
|
*/
|
||
|
|
export const JsonNull = runtime.JsonNull
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Helper for filtering JSON entries that are `Prisma.DbNull` or `Prisma.JsonNull`
|
||
|
|
*
|
||
|
|
* @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
|
||
|
|
*/
|
||
|
|
export const AnyNull = runtime.AnyNull
|
||
|
|
|
||
|
|
|
||
|
|
export const ModelName = {
|
||
|
|
User: 'User',
|
||
|
|
Chat: 'Chat',
|
||
|
|
Message: 'Message',
|
||
|
|
LlmCall: 'LlmCall'
|
||
|
|
} as const
|
||
|
|
|
||
|
|
export type ModelName = (typeof ModelName)[keyof typeof ModelName]
|
||
|
|
|
||
|
|
/*
|
||
|
|
* Enums
|
||
|
|
*/
|
||
|
|
|
||
|
|
export const TransactionIsolationLevel = runtime.makeStrictEnum({
|
||
|
|
Serializable: 'Serializable'
|
||
|
|
} as const)
|
||
|
|
|
||
|
|
export type TransactionIsolationLevel = (typeof TransactionIsolationLevel)[keyof typeof TransactionIsolationLevel]
|
||
|
|
|
||
|
|
|
||
|
|
export const UserScalarFieldEnum = {
|
||
|
|
id: 'id',
|
||
|
|
createdAt: 'createdAt',
|
||
|
|
updatedAt: 'updatedAt',
|
||
|
|
handle: 'handle'
|
||
|
|
} as const
|
||
|
|
|
||
|
|
export type UserScalarFieldEnum = (typeof UserScalarFieldEnum)[keyof typeof UserScalarFieldEnum]
|
||
|
|
|
||
|
|
|
||
|
|
export const ChatScalarFieldEnum = {
|
||
|
|
id: 'id',
|
||
|
|
createdAt: 'createdAt',
|
||
|
|
updatedAt: 'updatedAt',
|
||
|
|
title: 'title',
|
||
|
|
userId: 'userId'
|
||
|
|
} as const
|
||
|
|
|
||
|
|
export type ChatScalarFieldEnum = (typeof ChatScalarFieldEnum)[keyof typeof ChatScalarFieldEnum]
|
||
|
|
|
||
|
|
|
||
|
|
export const MessageScalarFieldEnum = {
|
||
|
|
id: 'id',
|
||
|
|
createdAt: 'createdAt',
|
||
|
|
chatId: 'chatId',
|
||
|
|
role: 'role',
|
||
|
|
content: 'content',
|
||
|
|
name: 'name',
|
||
|
|
metadata: 'metadata'
|
||
|
|
} as const
|
||
|
|
|
||
|
|
export type MessageScalarFieldEnum = (typeof MessageScalarFieldEnum)[keyof typeof MessageScalarFieldEnum]
|
||
|
|
|
||
|
|
|
||
|
|
export const LlmCallScalarFieldEnum = {
|
||
|
|
id: 'id',
|
||
|
|
createdAt: 'createdAt',
|
||
|
|
chatId: 'chatId',
|
||
|
|
provider: 'provider',
|
||
|
|
model: 'model',
|
||
|
|
request: 'request',
|
||
|
|
response: 'response',
|
||
|
|
inputTokens: 'inputTokens',
|
||
|
|
outputTokens: 'outputTokens',
|
||
|
|
totalTokens: 'totalTokens',
|
||
|
|
latencyMs: 'latencyMs',
|
||
|
|
error: 'error'
|
||
|
|
} as const
|
||
|
|
|
||
|
|
export type LlmCallScalarFieldEnum = (typeof LlmCallScalarFieldEnum)[keyof typeof LlmCallScalarFieldEnum]
|
||
|
|
|
||
|
|
|
||
|
|
export const SortOrder = {
|
||
|
|
asc: 'asc',
|
||
|
|
desc: 'desc'
|
||
|
|
} as const
|
||
|
|
|
||
|
|
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder]
|
||
|
|
|
||
|
|
|
||
|
|
export const NullableJsonNullValueInput = {
|
||
|
|
DbNull: DbNull,
|
||
|
|
JsonNull: JsonNull
|
||
|
|
} as const
|
||
|
|
|
||
|
|
export type NullableJsonNullValueInput = (typeof NullableJsonNullValueInput)[keyof typeof NullableJsonNullValueInput]
|
||
|
|
|
||
|
|
|
||
|
|
export const JsonNullValueInput = {
|
||
|
|
JsonNull: JsonNull
|
||
|
|
} as const
|
||
|
|
|
||
|
|
export type JsonNullValueInput = (typeof JsonNullValueInput)[keyof typeof JsonNullValueInput]
|
||
|
|
|
||
|
|
|
||
|
|
export const NullsOrder = {
|
||
|
|
first: 'first',
|
||
|
|
last: 'last'
|
||
|
|
} as const
|
||
|
|
|
||
|
|
export type NullsOrder = (typeof NullsOrder)[keyof typeof NullsOrder]
|
||
|
|
|
||
|
|
|
||
|
|
export const JsonNullValueFilter = {
|
||
|
|
DbNull: DbNull,
|
||
|
|
JsonNull: JsonNull,
|
||
|
|
AnyNull: AnyNull
|
||
|
|
} as const
|
||
|
|
|
||
|
|
export type JsonNullValueFilter = (typeof JsonNullValueFilter)[keyof typeof JsonNullValueFilter]
|
||
|
|
|
||
|
|
|
||
|
|
export const QueryMode = {
|
||
|
|
default: 'default',
|
||
|
|
insensitive: 'insensitive'
|
||
|
|
} as const
|
||
|
|
|
||
|
|
export type QueryMode = (typeof QueryMode)[keyof typeof QueryMode]
|
||
|
|
|