1663 lines
52 KiB
TypeScript
1663 lines
52 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 client.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/client"
|
|
import type * as Prisma from "../models"
|
|
import { type PrismaClient } from "./class"
|
|
|
|
export type * from '../models'
|
|
|
|
export type DMMF = typeof runtime.DMMF
|
|
|
|
export type PrismaPromise<T> = runtime.Types.Public.PrismaPromise<T>
|
|
|
|
/**
|
|
* Prisma Errors
|
|
*/
|
|
|
|
export const PrismaClientKnownRequestError = runtime.PrismaClientKnownRequestError
|
|
export type PrismaClientKnownRequestError = runtime.PrismaClientKnownRequestError
|
|
|
|
export const PrismaClientUnknownRequestError = runtime.PrismaClientUnknownRequestError
|
|
export type PrismaClientUnknownRequestError = runtime.PrismaClientUnknownRequestError
|
|
|
|
export const PrismaClientRustPanicError = runtime.PrismaClientRustPanicError
|
|
export type PrismaClientRustPanicError = runtime.PrismaClientRustPanicError
|
|
|
|
export const PrismaClientInitializationError = runtime.PrismaClientInitializationError
|
|
export type PrismaClientInitializationError = runtime.PrismaClientInitializationError
|
|
|
|
export const PrismaClientValidationError = runtime.PrismaClientValidationError
|
|
export type PrismaClientValidationError = runtime.PrismaClientValidationError
|
|
|
|
/**
|
|
* Re-export of sql-template-tag
|
|
*/
|
|
export const sql = runtime.sqltag
|
|
export const empty = runtime.empty
|
|
export const join = runtime.join
|
|
export const raw = runtime.raw
|
|
export const Sql = runtime.Sql
|
|
export type Sql = runtime.Sql
|
|
|
|
|
|
|
|
/**
|
|
* Decimal.js
|
|
*/
|
|
export const Decimal = runtime.Decimal
|
|
export type Decimal = runtime.Decimal
|
|
|
|
export type DecimalJsLike = runtime.DecimalJsLike
|
|
|
|
/**
|
|
* Extensions
|
|
*/
|
|
export type Extension = runtime.Types.Extensions.UserArgs
|
|
export const getExtensionContext = runtime.Extensions.getExtensionContext
|
|
export type Args<T, F extends runtime.Operation> = runtime.Types.Public.Args<T, F>
|
|
export type Payload<T, F extends runtime.Operation = never> = runtime.Types.Public.Payload<T, F>
|
|
export type Result<T, A, F extends runtime.Operation> = runtime.Types.Public.Result<T, A, F>
|
|
export type Exact<A, W> = runtime.Types.Public.Exact<A, W>
|
|
|
|
export type PrismaVersion = {
|
|
client: string
|
|
engine: string
|
|
}
|
|
|
|
/**
|
|
* Prisma Client JS version: 7.8.0
|
|
* Query Engine version: 3c6e192761c0362d496ed980de936e2f3cebcd3a
|
|
*/
|
|
export const prismaVersion: PrismaVersion = {
|
|
client: "7.8.0",
|
|
engine: "3c6e192761c0362d496ed980de936e2f3cebcd3a"
|
|
}
|
|
|
|
/**
|
|
* Utility Types
|
|
*/
|
|
|
|
export type Bytes = runtime.Bytes
|
|
export type JsonObject = runtime.JsonObject
|
|
export type JsonArray = runtime.JsonArray
|
|
export type JsonValue = runtime.JsonValue
|
|
export type InputJsonObject = runtime.InputJsonObject
|
|
export type InputJsonArray = runtime.InputJsonArray
|
|
export type InputJsonValue = runtime.InputJsonValue
|
|
|
|
|
|
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
|
|
|
|
|
|
type SelectAndInclude = {
|
|
select: any
|
|
include: any
|
|
}
|
|
|
|
type SelectAndOmit = {
|
|
select: any
|
|
omit: any
|
|
}
|
|
|
|
/**
|
|
* From T, pick a set of properties whose keys are in the union K
|
|
*/
|
|
type Prisma__Pick<T, K extends keyof T> = {
|
|
[P in K]: T[P];
|
|
};
|
|
|
|
export type Enumerable<T> = T | Array<T>;
|
|
|
|
/**
|
|
* Subset
|
|
* @desc From `T` pick properties that exist in `U`. Simple version of Intersection
|
|
*/
|
|
export type Subset<T, U> = {
|
|
[key in keyof T]: key extends keyof U ? T[key] : never;
|
|
};
|
|
|
|
/**
|
|
* SelectSubset
|
|
* @desc From `T` pick properties that exist in `U`. Simple version of Intersection.
|
|
* Additionally, it validates, if both select and include are present. If the case, it errors.
|
|
*/
|
|
export type SelectSubset<T, U> = {
|
|
[key in keyof T]: key extends keyof U ? T[key] : never
|
|
} &
|
|
(T extends SelectAndInclude
|
|
? 'Please either choose `select` or `include`.'
|
|
: T extends SelectAndOmit
|
|
? 'Please either choose `select` or `omit`.'
|
|
: {})
|
|
|
|
/**
|
|
* Subset + Intersection
|
|
* @desc From `T` pick properties that exist in `U` and intersect `K`
|
|
*/
|
|
export type SubsetIntersection<T, U, K> = {
|
|
[key in keyof T]: key extends keyof U ? T[key] : never
|
|
} &
|
|
K
|
|
|
|
type Without<T, U> = { [P in Exclude<keyof T, keyof U>]?: never };
|
|
|
|
/**
|
|
* XOR is needed to have a real mutually exclusive union type
|
|
* https://stackoverflow.com/questions/42123407/does-typescript-support-mutually-exclusive-types
|
|
*/
|
|
export type XOR<T, U> =
|
|
T extends object ?
|
|
U extends object ?
|
|
(Without<T, U> & U) | (Without<U, T> & T)
|
|
: U : T
|
|
|
|
|
|
/**
|
|
* Is T a Record?
|
|
*/
|
|
type IsObject<T extends any> = T extends Array<any>
|
|
? False
|
|
: T extends Date
|
|
? False
|
|
: T extends Uint8Array
|
|
? False
|
|
: T extends BigInt
|
|
? False
|
|
: T extends object
|
|
? True
|
|
: False
|
|
|
|
|
|
/**
|
|
* If it's T[], return T
|
|
*/
|
|
export type UnEnumerate<T extends unknown> = T extends Array<infer U> ? U : T
|
|
|
|
/**
|
|
* From ts-toolbelt
|
|
*/
|
|
|
|
type __Either<O extends object, K extends Key> = Omit<O, K> &
|
|
{
|
|
// Merge all but K
|
|
[P in K]: Prisma__Pick<O, P & keyof O> // With K possibilities
|
|
}[K]
|
|
|
|
type EitherStrict<O extends object, K extends Key> = Strict<__Either<O, K>>
|
|
|
|
type EitherLoose<O extends object, K extends Key> = ComputeRaw<__Either<O, K>>
|
|
|
|
type _Either<
|
|
O extends object,
|
|
K extends Key,
|
|
strict extends Boolean
|
|
> = {
|
|
1: EitherStrict<O, K>
|
|
0: EitherLoose<O, K>
|
|
}[strict]
|
|
|
|
export type Either<
|
|
O extends object,
|
|
K extends Key,
|
|
strict extends Boolean = 1
|
|
> = O extends unknown ? _Either<O, K, strict> : never
|
|
|
|
export type Union = any
|
|
|
|
export type PatchUndefined<O extends object, O1 extends object> = {
|
|
[K in keyof O]: O[K] extends undefined ? At<O1, K> : O[K]
|
|
} & {}
|
|
|
|
/** Helper Types for "Merge" **/
|
|
export type IntersectOf<U extends Union> = (
|
|
U extends unknown ? (k: U) => void : never
|
|
) extends (k: infer I) => void
|
|
? I
|
|
: never
|
|
|
|
export type Overwrite<O extends object, O1 extends object> = {
|
|
[K in keyof O]: K extends keyof O1 ? O1[K] : O[K];
|
|
} & {};
|
|
|
|
type _Merge<U extends object> = IntersectOf<Overwrite<U, {
|
|
[K in keyof U]-?: At<U, K>;
|
|
}>>;
|
|
|
|
type Key = string | number | symbol;
|
|
type AtStrict<O extends object, K extends Key> = O[K & keyof O];
|
|
type AtLoose<O extends object, K extends Key> = O extends unknown ? AtStrict<O, K> : never;
|
|
export type At<O extends object, K extends Key, strict extends Boolean = 1> = {
|
|
1: AtStrict<O, K>;
|
|
0: AtLoose<O, K>;
|
|
}[strict];
|
|
|
|
export type ComputeRaw<A extends any> = A extends Function ? A : {
|
|
[K in keyof A]: A[K];
|
|
} & {};
|
|
|
|
export type OptionalFlat<O> = {
|
|
[K in keyof O]?: O[K];
|
|
} & {};
|
|
|
|
type _Record<K extends keyof any, T> = {
|
|
[P in K]: T;
|
|
};
|
|
|
|
// cause typescript not to expand types and preserve names
|
|
type NoExpand<T> = T extends unknown ? T : never;
|
|
|
|
// this type assumes the passed object is entirely optional
|
|
export type AtLeast<O extends object, K extends string> = NoExpand<
|
|
O extends unknown
|
|
? | (K extends keyof O ? { [P in K]: O[P] } & O : O)
|
|
| {[P in keyof O as P extends K ? P : never]-?: O[P]} & O
|
|
: never>;
|
|
|
|
type _Strict<U, _U = U> = U extends unknown ? U & OptionalFlat<_Record<Exclude<Keys<_U>, keyof U>, never>> : never;
|
|
|
|
export type Strict<U extends object> = ComputeRaw<_Strict<U>>;
|
|
/** End Helper Types for "Merge" **/
|
|
|
|
export type Merge<U extends object> = ComputeRaw<_Merge<Strict<U>>>;
|
|
|
|
export type Boolean = True | False
|
|
|
|
export type True = 1
|
|
|
|
export type False = 0
|
|
|
|
export type Not<B extends Boolean> = {
|
|
0: 1
|
|
1: 0
|
|
}[B]
|
|
|
|
export type Extends<A1 extends any, A2 extends any> = [A1] extends [never]
|
|
? 0 // anything `never` is false
|
|
: A1 extends A2
|
|
? 1
|
|
: 0
|
|
|
|
export type Has<U extends Union, U1 extends Union> = Not<
|
|
Extends<Exclude<U1, U>, U1>
|
|
>
|
|
|
|
export type Or<B1 extends Boolean, B2 extends Boolean> = {
|
|
0: {
|
|
0: 0
|
|
1: 1
|
|
}
|
|
1: {
|
|
0: 1
|
|
1: 1
|
|
}
|
|
}[B1][B2]
|
|
|
|
export type Keys<U extends Union> = U extends unknown ? keyof U : never
|
|
|
|
export type GetScalarType<T, O> = O extends object ? {
|
|
[P in keyof T]: P extends keyof O
|
|
? O[P]
|
|
: never
|
|
} : never
|
|
|
|
type FieldPaths<
|
|
T,
|
|
U = Omit<T, '_avg' | '_sum' | '_count' | '_min' | '_max'>
|
|
> = IsObject<T> extends True ? U : T
|
|
|
|
export type GetHavingFields<T> = {
|
|
[K in keyof T]: Or<
|
|
Or<Extends<'OR', K>, Extends<'AND', K>>,
|
|
Extends<'NOT', K>
|
|
> extends True
|
|
? // infer is only needed to not hit TS limit
|
|
// based on the brilliant idea of Pierre-Antoine Mills
|
|
// https://github.com/microsoft/TypeScript/issues/30188#issuecomment-478938437
|
|
T[K] extends infer TK
|
|
? GetHavingFields<UnEnumerate<TK> extends object ? Merge<UnEnumerate<TK>> : never>
|
|
: never
|
|
: {} extends FieldPaths<T[K]>
|
|
? never
|
|
: K
|
|
}[keyof T]
|
|
|
|
/**
|
|
* Convert tuple to union
|
|
*/
|
|
type _TupleToUnion<T> = T extends (infer E)[] ? E : never
|
|
type TupleToUnion<K extends readonly any[]> = _TupleToUnion<K>
|
|
export type MaybeTupleToUnion<T> = T extends any[] ? TupleToUnion<T> : T
|
|
|
|
/**
|
|
* Like `Pick`, but additionally can also accept an array of keys
|
|
*/
|
|
export type PickEnumerable<T, K extends Enumerable<keyof T> | keyof T> = Prisma__Pick<T, MaybeTupleToUnion<K>>
|
|
|
|
/**
|
|
* Exclude all keys with underscores
|
|
*/
|
|
export type ExcludeUnderscoreKeys<T extends string> = T extends `_${string}` ? never : T
|
|
|
|
|
|
export type FieldRef<Model, FieldType> = runtime.FieldRef<Model, FieldType>
|
|
|
|
type FieldRefInputType<Model, FieldType> = Model extends never ? never : FieldRef<Model, FieldType>
|
|
|
|
|
|
export const ModelName = {
|
|
Workspace: 'Workspace',
|
|
SendJob: 'SendJob',
|
|
JobRunLog: 'JobRunLog',
|
|
Inbox: 'Inbox',
|
|
WarmupCampaign: 'WarmupCampaign',
|
|
CampaignSatellite: 'CampaignSatellite',
|
|
DailySchedule: 'DailySchedule',
|
|
DailyStat: 'DailyStat',
|
|
WarmupLog: 'WarmupLog',
|
|
Setting: 'Setting'
|
|
} as const
|
|
|
|
export type ModelName = (typeof ModelName)[keyof typeof ModelName]
|
|
|
|
|
|
|
|
export interface TypeMapCb<GlobalOmitOptions = {}> extends runtime.Types.Utils.Fn<{extArgs: runtime.Types.Extensions.InternalArgs }, runtime.Types.Utils.Record<string, any>> {
|
|
returns: TypeMap<this['params']['extArgs'], GlobalOmitOptions>
|
|
}
|
|
|
|
export type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> = {
|
|
globalOmitOptions: {
|
|
omit: GlobalOmitOptions
|
|
}
|
|
meta: {
|
|
modelProps: "workspace" | "sendJob" | "jobRunLog" | "inbox" | "warmupCampaign" | "campaignSatellite" | "dailySchedule" | "dailyStat" | "warmupLog" | "setting"
|
|
txIsolationLevel: TransactionIsolationLevel
|
|
}
|
|
model: {
|
|
Workspace: {
|
|
payload: Prisma.$WorkspacePayload<ExtArgs>
|
|
fields: Prisma.WorkspaceFieldRefs
|
|
operations: {
|
|
findUnique: {
|
|
args: Prisma.WorkspaceFindUniqueArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkspacePayload> | null
|
|
}
|
|
findUniqueOrThrow: {
|
|
args: Prisma.WorkspaceFindUniqueOrThrowArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkspacePayload>
|
|
}
|
|
findFirst: {
|
|
args: Prisma.WorkspaceFindFirstArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkspacePayload> | null
|
|
}
|
|
findFirstOrThrow: {
|
|
args: Prisma.WorkspaceFindFirstOrThrowArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkspacePayload>
|
|
}
|
|
findMany: {
|
|
args: Prisma.WorkspaceFindManyArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkspacePayload>[]
|
|
}
|
|
create: {
|
|
args: Prisma.WorkspaceCreateArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkspacePayload>
|
|
}
|
|
createMany: {
|
|
args: Prisma.WorkspaceCreateManyArgs<ExtArgs>
|
|
result: BatchPayload
|
|
}
|
|
createManyAndReturn: {
|
|
args: Prisma.WorkspaceCreateManyAndReturnArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkspacePayload>[]
|
|
}
|
|
delete: {
|
|
args: Prisma.WorkspaceDeleteArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkspacePayload>
|
|
}
|
|
update: {
|
|
args: Prisma.WorkspaceUpdateArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkspacePayload>
|
|
}
|
|
deleteMany: {
|
|
args: Prisma.WorkspaceDeleteManyArgs<ExtArgs>
|
|
result: BatchPayload
|
|
}
|
|
updateMany: {
|
|
args: Prisma.WorkspaceUpdateManyArgs<ExtArgs>
|
|
result: BatchPayload
|
|
}
|
|
updateManyAndReturn: {
|
|
args: Prisma.WorkspaceUpdateManyAndReturnArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkspacePayload>[]
|
|
}
|
|
upsert: {
|
|
args: Prisma.WorkspaceUpsertArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkspacePayload>
|
|
}
|
|
aggregate: {
|
|
args: Prisma.WorkspaceAggregateArgs<ExtArgs>
|
|
result: runtime.Types.Utils.Optional<Prisma.AggregateWorkspace>
|
|
}
|
|
groupBy: {
|
|
args: Prisma.WorkspaceGroupByArgs<ExtArgs>
|
|
result: runtime.Types.Utils.Optional<Prisma.WorkspaceGroupByOutputType>[]
|
|
}
|
|
count: {
|
|
args: Prisma.WorkspaceCountArgs<ExtArgs>
|
|
result: runtime.Types.Utils.Optional<Prisma.WorkspaceCountAggregateOutputType> | number
|
|
}
|
|
}
|
|
}
|
|
SendJob: {
|
|
payload: Prisma.$SendJobPayload<ExtArgs>
|
|
fields: Prisma.SendJobFieldRefs
|
|
operations: {
|
|
findUnique: {
|
|
args: Prisma.SendJobFindUniqueArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$SendJobPayload> | null
|
|
}
|
|
findUniqueOrThrow: {
|
|
args: Prisma.SendJobFindUniqueOrThrowArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$SendJobPayload>
|
|
}
|
|
findFirst: {
|
|
args: Prisma.SendJobFindFirstArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$SendJobPayload> | null
|
|
}
|
|
findFirstOrThrow: {
|
|
args: Prisma.SendJobFindFirstOrThrowArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$SendJobPayload>
|
|
}
|
|
findMany: {
|
|
args: Prisma.SendJobFindManyArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$SendJobPayload>[]
|
|
}
|
|
create: {
|
|
args: Prisma.SendJobCreateArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$SendJobPayload>
|
|
}
|
|
createMany: {
|
|
args: Prisma.SendJobCreateManyArgs<ExtArgs>
|
|
result: BatchPayload
|
|
}
|
|
createManyAndReturn: {
|
|
args: Prisma.SendJobCreateManyAndReturnArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$SendJobPayload>[]
|
|
}
|
|
delete: {
|
|
args: Prisma.SendJobDeleteArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$SendJobPayload>
|
|
}
|
|
update: {
|
|
args: Prisma.SendJobUpdateArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$SendJobPayload>
|
|
}
|
|
deleteMany: {
|
|
args: Prisma.SendJobDeleteManyArgs<ExtArgs>
|
|
result: BatchPayload
|
|
}
|
|
updateMany: {
|
|
args: Prisma.SendJobUpdateManyArgs<ExtArgs>
|
|
result: BatchPayload
|
|
}
|
|
updateManyAndReturn: {
|
|
args: Prisma.SendJobUpdateManyAndReturnArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$SendJobPayload>[]
|
|
}
|
|
upsert: {
|
|
args: Prisma.SendJobUpsertArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$SendJobPayload>
|
|
}
|
|
aggregate: {
|
|
args: Prisma.SendJobAggregateArgs<ExtArgs>
|
|
result: runtime.Types.Utils.Optional<Prisma.AggregateSendJob>
|
|
}
|
|
groupBy: {
|
|
args: Prisma.SendJobGroupByArgs<ExtArgs>
|
|
result: runtime.Types.Utils.Optional<Prisma.SendJobGroupByOutputType>[]
|
|
}
|
|
count: {
|
|
args: Prisma.SendJobCountArgs<ExtArgs>
|
|
result: runtime.Types.Utils.Optional<Prisma.SendJobCountAggregateOutputType> | number
|
|
}
|
|
}
|
|
}
|
|
JobRunLog: {
|
|
payload: Prisma.$JobRunLogPayload<ExtArgs>
|
|
fields: Prisma.JobRunLogFieldRefs
|
|
operations: {
|
|
findUnique: {
|
|
args: Prisma.JobRunLogFindUniqueArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$JobRunLogPayload> | null
|
|
}
|
|
findUniqueOrThrow: {
|
|
args: Prisma.JobRunLogFindUniqueOrThrowArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$JobRunLogPayload>
|
|
}
|
|
findFirst: {
|
|
args: Prisma.JobRunLogFindFirstArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$JobRunLogPayload> | null
|
|
}
|
|
findFirstOrThrow: {
|
|
args: Prisma.JobRunLogFindFirstOrThrowArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$JobRunLogPayload>
|
|
}
|
|
findMany: {
|
|
args: Prisma.JobRunLogFindManyArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$JobRunLogPayload>[]
|
|
}
|
|
create: {
|
|
args: Prisma.JobRunLogCreateArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$JobRunLogPayload>
|
|
}
|
|
createMany: {
|
|
args: Prisma.JobRunLogCreateManyArgs<ExtArgs>
|
|
result: BatchPayload
|
|
}
|
|
createManyAndReturn: {
|
|
args: Prisma.JobRunLogCreateManyAndReturnArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$JobRunLogPayload>[]
|
|
}
|
|
delete: {
|
|
args: Prisma.JobRunLogDeleteArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$JobRunLogPayload>
|
|
}
|
|
update: {
|
|
args: Prisma.JobRunLogUpdateArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$JobRunLogPayload>
|
|
}
|
|
deleteMany: {
|
|
args: Prisma.JobRunLogDeleteManyArgs<ExtArgs>
|
|
result: BatchPayload
|
|
}
|
|
updateMany: {
|
|
args: Prisma.JobRunLogUpdateManyArgs<ExtArgs>
|
|
result: BatchPayload
|
|
}
|
|
updateManyAndReturn: {
|
|
args: Prisma.JobRunLogUpdateManyAndReturnArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$JobRunLogPayload>[]
|
|
}
|
|
upsert: {
|
|
args: Prisma.JobRunLogUpsertArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$JobRunLogPayload>
|
|
}
|
|
aggregate: {
|
|
args: Prisma.JobRunLogAggregateArgs<ExtArgs>
|
|
result: runtime.Types.Utils.Optional<Prisma.AggregateJobRunLog>
|
|
}
|
|
groupBy: {
|
|
args: Prisma.JobRunLogGroupByArgs<ExtArgs>
|
|
result: runtime.Types.Utils.Optional<Prisma.JobRunLogGroupByOutputType>[]
|
|
}
|
|
count: {
|
|
args: Prisma.JobRunLogCountArgs<ExtArgs>
|
|
result: runtime.Types.Utils.Optional<Prisma.JobRunLogCountAggregateOutputType> | number
|
|
}
|
|
}
|
|
}
|
|
Inbox: {
|
|
payload: Prisma.$InboxPayload<ExtArgs>
|
|
fields: Prisma.InboxFieldRefs
|
|
operations: {
|
|
findUnique: {
|
|
args: Prisma.InboxFindUniqueArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$InboxPayload> | null
|
|
}
|
|
findUniqueOrThrow: {
|
|
args: Prisma.InboxFindUniqueOrThrowArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$InboxPayload>
|
|
}
|
|
findFirst: {
|
|
args: Prisma.InboxFindFirstArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$InboxPayload> | null
|
|
}
|
|
findFirstOrThrow: {
|
|
args: Prisma.InboxFindFirstOrThrowArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$InboxPayload>
|
|
}
|
|
findMany: {
|
|
args: Prisma.InboxFindManyArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$InboxPayload>[]
|
|
}
|
|
create: {
|
|
args: Prisma.InboxCreateArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$InboxPayload>
|
|
}
|
|
createMany: {
|
|
args: Prisma.InboxCreateManyArgs<ExtArgs>
|
|
result: BatchPayload
|
|
}
|
|
createManyAndReturn: {
|
|
args: Prisma.InboxCreateManyAndReturnArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$InboxPayload>[]
|
|
}
|
|
delete: {
|
|
args: Prisma.InboxDeleteArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$InboxPayload>
|
|
}
|
|
update: {
|
|
args: Prisma.InboxUpdateArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$InboxPayload>
|
|
}
|
|
deleteMany: {
|
|
args: Prisma.InboxDeleteManyArgs<ExtArgs>
|
|
result: BatchPayload
|
|
}
|
|
updateMany: {
|
|
args: Prisma.InboxUpdateManyArgs<ExtArgs>
|
|
result: BatchPayload
|
|
}
|
|
updateManyAndReturn: {
|
|
args: Prisma.InboxUpdateManyAndReturnArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$InboxPayload>[]
|
|
}
|
|
upsert: {
|
|
args: Prisma.InboxUpsertArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$InboxPayload>
|
|
}
|
|
aggregate: {
|
|
args: Prisma.InboxAggregateArgs<ExtArgs>
|
|
result: runtime.Types.Utils.Optional<Prisma.AggregateInbox>
|
|
}
|
|
groupBy: {
|
|
args: Prisma.InboxGroupByArgs<ExtArgs>
|
|
result: runtime.Types.Utils.Optional<Prisma.InboxGroupByOutputType>[]
|
|
}
|
|
count: {
|
|
args: Prisma.InboxCountArgs<ExtArgs>
|
|
result: runtime.Types.Utils.Optional<Prisma.InboxCountAggregateOutputType> | number
|
|
}
|
|
}
|
|
}
|
|
WarmupCampaign: {
|
|
payload: Prisma.$WarmupCampaignPayload<ExtArgs>
|
|
fields: Prisma.WarmupCampaignFieldRefs
|
|
operations: {
|
|
findUnique: {
|
|
args: Prisma.WarmupCampaignFindUniqueArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WarmupCampaignPayload> | null
|
|
}
|
|
findUniqueOrThrow: {
|
|
args: Prisma.WarmupCampaignFindUniqueOrThrowArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WarmupCampaignPayload>
|
|
}
|
|
findFirst: {
|
|
args: Prisma.WarmupCampaignFindFirstArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WarmupCampaignPayload> | null
|
|
}
|
|
findFirstOrThrow: {
|
|
args: Prisma.WarmupCampaignFindFirstOrThrowArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WarmupCampaignPayload>
|
|
}
|
|
findMany: {
|
|
args: Prisma.WarmupCampaignFindManyArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WarmupCampaignPayload>[]
|
|
}
|
|
create: {
|
|
args: Prisma.WarmupCampaignCreateArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WarmupCampaignPayload>
|
|
}
|
|
createMany: {
|
|
args: Prisma.WarmupCampaignCreateManyArgs<ExtArgs>
|
|
result: BatchPayload
|
|
}
|
|
createManyAndReturn: {
|
|
args: Prisma.WarmupCampaignCreateManyAndReturnArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WarmupCampaignPayload>[]
|
|
}
|
|
delete: {
|
|
args: Prisma.WarmupCampaignDeleteArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WarmupCampaignPayload>
|
|
}
|
|
update: {
|
|
args: Prisma.WarmupCampaignUpdateArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WarmupCampaignPayload>
|
|
}
|
|
deleteMany: {
|
|
args: Prisma.WarmupCampaignDeleteManyArgs<ExtArgs>
|
|
result: BatchPayload
|
|
}
|
|
updateMany: {
|
|
args: Prisma.WarmupCampaignUpdateManyArgs<ExtArgs>
|
|
result: BatchPayload
|
|
}
|
|
updateManyAndReturn: {
|
|
args: Prisma.WarmupCampaignUpdateManyAndReturnArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WarmupCampaignPayload>[]
|
|
}
|
|
upsert: {
|
|
args: Prisma.WarmupCampaignUpsertArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WarmupCampaignPayload>
|
|
}
|
|
aggregate: {
|
|
args: Prisma.WarmupCampaignAggregateArgs<ExtArgs>
|
|
result: runtime.Types.Utils.Optional<Prisma.AggregateWarmupCampaign>
|
|
}
|
|
groupBy: {
|
|
args: Prisma.WarmupCampaignGroupByArgs<ExtArgs>
|
|
result: runtime.Types.Utils.Optional<Prisma.WarmupCampaignGroupByOutputType>[]
|
|
}
|
|
count: {
|
|
args: Prisma.WarmupCampaignCountArgs<ExtArgs>
|
|
result: runtime.Types.Utils.Optional<Prisma.WarmupCampaignCountAggregateOutputType> | number
|
|
}
|
|
}
|
|
}
|
|
CampaignSatellite: {
|
|
payload: Prisma.$CampaignSatellitePayload<ExtArgs>
|
|
fields: Prisma.CampaignSatelliteFieldRefs
|
|
operations: {
|
|
findUnique: {
|
|
args: Prisma.CampaignSatelliteFindUniqueArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$CampaignSatellitePayload> | null
|
|
}
|
|
findUniqueOrThrow: {
|
|
args: Prisma.CampaignSatelliteFindUniqueOrThrowArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$CampaignSatellitePayload>
|
|
}
|
|
findFirst: {
|
|
args: Prisma.CampaignSatelliteFindFirstArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$CampaignSatellitePayload> | null
|
|
}
|
|
findFirstOrThrow: {
|
|
args: Prisma.CampaignSatelliteFindFirstOrThrowArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$CampaignSatellitePayload>
|
|
}
|
|
findMany: {
|
|
args: Prisma.CampaignSatelliteFindManyArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$CampaignSatellitePayload>[]
|
|
}
|
|
create: {
|
|
args: Prisma.CampaignSatelliteCreateArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$CampaignSatellitePayload>
|
|
}
|
|
createMany: {
|
|
args: Prisma.CampaignSatelliteCreateManyArgs<ExtArgs>
|
|
result: BatchPayload
|
|
}
|
|
createManyAndReturn: {
|
|
args: Prisma.CampaignSatelliteCreateManyAndReturnArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$CampaignSatellitePayload>[]
|
|
}
|
|
delete: {
|
|
args: Prisma.CampaignSatelliteDeleteArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$CampaignSatellitePayload>
|
|
}
|
|
update: {
|
|
args: Prisma.CampaignSatelliteUpdateArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$CampaignSatellitePayload>
|
|
}
|
|
deleteMany: {
|
|
args: Prisma.CampaignSatelliteDeleteManyArgs<ExtArgs>
|
|
result: BatchPayload
|
|
}
|
|
updateMany: {
|
|
args: Prisma.CampaignSatelliteUpdateManyArgs<ExtArgs>
|
|
result: BatchPayload
|
|
}
|
|
updateManyAndReturn: {
|
|
args: Prisma.CampaignSatelliteUpdateManyAndReturnArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$CampaignSatellitePayload>[]
|
|
}
|
|
upsert: {
|
|
args: Prisma.CampaignSatelliteUpsertArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$CampaignSatellitePayload>
|
|
}
|
|
aggregate: {
|
|
args: Prisma.CampaignSatelliteAggregateArgs<ExtArgs>
|
|
result: runtime.Types.Utils.Optional<Prisma.AggregateCampaignSatellite>
|
|
}
|
|
groupBy: {
|
|
args: Prisma.CampaignSatelliteGroupByArgs<ExtArgs>
|
|
result: runtime.Types.Utils.Optional<Prisma.CampaignSatelliteGroupByOutputType>[]
|
|
}
|
|
count: {
|
|
args: Prisma.CampaignSatelliteCountArgs<ExtArgs>
|
|
result: runtime.Types.Utils.Optional<Prisma.CampaignSatelliteCountAggregateOutputType> | number
|
|
}
|
|
}
|
|
}
|
|
DailySchedule: {
|
|
payload: Prisma.$DailySchedulePayload<ExtArgs>
|
|
fields: Prisma.DailyScheduleFieldRefs
|
|
operations: {
|
|
findUnique: {
|
|
args: Prisma.DailyScheduleFindUniqueArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$DailySchedulePayload> | null
|
|
}
|
|
findUniqueOrThrow: {
|
|
args: Prisma.DailyScheduleFindUniqueOrThrowArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$DailySchedulePayload>
|
|
}
|
|
findFirst: {
|
|
args: Prisma.DailyScheduleFindFirstArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$DailySchedulePayload> | null
|
|
}
|
|
findFirstOrThrow: {
|
|
args: Prisma.DailyScheduleFindFirstOrThrowArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$DailySchedulePayload>
|
|
}
|
|
findMany: {
|
|
args: Prisma.DailyScheduleFindManyArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$DailySchedulePayload>[]
|
|
}
|
|
create: {
|
|
args: Prisma.DailyScheduleCreateArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$DailySchedulePayload>
|
|
}
|
|
createMany: {
|
|
args: Prisma.DailyScheduleCreateManyArgs<ExtArgs>
|
|
result: BatchPayload
|
|
}
|
|
createManyAndReturn: {
|
|
args: Prisma.DailyScheduleCreateManyAndReturnArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$DailySchedulePayload>[]
|
|
}
|
|
delete: {
|
|
args: Prisma.DailyScheduleDeleteArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$DailySchedulePayload>
|
|
}
|
|
update: {
|
|
args: Prisma.DailyScheduleUpdateArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$DailySchedulePayload>
|
|
}
|
|
deleteMany: {
|
|
args: Prisma.DailyScheduleDeleteManyArgs<ExtArgs>
|
|
result: BatchPayload
|
|
}
|
|
updateMany: {
|
|
args: Prisma.DailyScheduleUpdateManyArgs<ExtArgs>
|
|
result: BatchPayload
|
|
}
|
|
updateManyAndReturn: {
|
|
args: Prisma.DailyScheduleUpdateManyAndReturnArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$DailySchedulePayload>[]
|
|
}
|
|
upsert: {
|
|
args: Prisma.DailyScheduleUpsertArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$DailySchedulePayload>
|
|
}
|
|
aggregate: {
|
|
args: Prisma.DailyScheduleAggregateArgs<ExtArgs>
|
|
result: runtime.Types.Utils.Optional<Prisma.AggregateDailySchedule>
|
|
}
|
|
groupBy: {
|
|
args: Prisma.DailyScheduleGroupByArgs<ExtArgs>
|
|
result: runtime.Types.Utils.Optional<Prisma.DailyScheduleGroupByOutputType>[]
|
|
}
|
|
count: {
|
|
args: Prisma.DailyScheduleCountArgs<ExtArgs>
|
|
result: runtime.Types.Utils.Optional<Prisma.DailyScheduleCountAggregateOutputType> | number
|
|
}
|
|
}
|
|
}
|
|
DailyStat: {
|
|
payload: Prisma.$DailyStatPayload<ExtArgs>
|
|
fields: Prisma.DailyStatFieldRefs
|
|
operations: {
|
|
findUnique: {
|
|
args: Prisma.DailyStatFindUniqueArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$DailyStatPayload> | null
|
|
}
|
|
findUniqueOrThrow: {
|
|
args: Prisma.DailyStatFindUniqueOrThrowArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$DailyStatPayload>
|
|
}
|
|
findFirst: {
|
|
args: Prisma.DailyStatFindFirstArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$DailyStatPayload> | null
|
|
}
|
|
findFirstOrThrow: {
|
|
args: Prisma.DailyStatFindFirstOrThrowArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$DailyStatPayload>
|
|
}
|
|
findMany: {
|
|
args: Prisma.DailyStatFindManyArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$DailyStatPayload>[]
|
|
}
|
|
create: {
|
|
args: Prisma.DailyStatCreateArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$DailyStatPayload>
|
|
}
|
|
createMany: {
|
|
args: Prisma.DailyStatCreateManyArgs<ExtArgs>
|
|
result: BatchPayload
|
|
}
|
|
createManyAndReturn: {
|
|
args: Prisma.DailyStatCreateManyAndReturnArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$DailyStatPayload>[]
|
|
}
|
|
delete: {
|
|
args: Prisma.DailyStatDeleteArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$DailyStatPayload>
|
|
}
|
|
update: {
|
|
args: Prisma.DailyStatUpdateArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$DailyStatPayload>
|
|
}
|
|
deleteMany: {
|
|
args: Prisma.DailyStatDeleteManyArgs<ExtArgs>
|
|
result: BatchPayload
|
|
}
|
|
updateMany: {
|
|
args: Prisma.DailyStatUpdateManyArgs<ExtArgs>
|
|
result: BatchPayload
|
|
}
|
|
updateManyAndReturn: {
|
|
args: Prisma.DailyStatUpdateManyAndReturnArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$DailyStatPayload>[]
|
|
}
|
|
upsert: {
|
|
args: Prisma.DailyStatUpsertArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$DailyStatPayload>
|
|
}
|
|
aggregate: {
|
|
args: Prisma.DailyStatAggregateArgs<ExtArgs>
|
|
result: runtime.Types.Utils.Optional<Prisma.AggregateDailyStat>
|
|
}
|
|
groupBy: {
|
|
args: Prisma.DailyStatGroupByArgs<ExtArgs>
|
|
result: runtime.Types.Utils.Optional<Prisma.DailyStatGroupByOutputType>[]
|
|
}
|
|
count: {
|
|
args: Prisma.DailyStatCountArgs<ExtArgs>
|
|
result: runtime.Types.Utils.Optional<Prisma.DailyStatCountAggregateOutputType> | number
|
|
}
|
|
}
|
|
}
|
|
WarmupLog: {
|
|
payload: Prisma.$WarmupLogPayload<ExtArgs>
|
|
fields: Prisma.WarmupLogFieldRefs
|
|
operations: {
|
|
findUnique: {
|
|
args: Prisma.WarmupLogFindUniqueArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WarmupLogPayload> | null
|
|
}
|
|
findUniqueOrThrow: {
|
|
args: Prisma.WarmupLogFindUniqueOrThrowArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WarmupLogPayload>
|
|
}
|
|
findFirst: {
|
|
args: Prisma.WarmupLogFindFirstArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WarmupLogPayload> | null
|
|
}
|
|
findFirstOrThrow: {
|
|
args: Prisma.WarmupLogFindFirstOrThrowArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WarmupLogPayload>
|
|
}
|
|
findMany: {
|
|
args: Prisma.WarmupLogFindManyArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WarmupLogPayload>[]
|
|
}
|
|
create: {
|
|
args: Prisma.WarmupLogCreateArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WarmupLogPayload>
|
|
}
|
|
createMany: {
|
|
args: Prisma.WarmupLogCreateManyArgs<ExtArgs>
|
|
result: BatchPayload
|
|
}
|
|
createManyAndReturn: {
|
|
args: Prisma.WarmupLogCreateManyAndReturnArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WarmupLogPayload>[]
|
|
}
|
|
delete: {
|
|
args: Prisma.WarmupLogDeleteArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WarmupLogPayload>
|
|
}
|
|
update: {
|
|
args: Prisma.WarmupLogUpdateArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WarmupLogPayload>
|
|
}
|
|
deleteMany: {
|
|
args: Prisma.WarmupLogDeleteManyArgs<ExtArgs>
|
|
result: BatchPayload
|
|
}
|
|
updateMany: {
|
|
args: Prisma.WarmupLogUpdateManyArgs<ExtArgs>
|
|
result: BatchPayload
|
|
}
|
|
updateManyAndReturn: {
|
|
args: Prisma.WarmupLogUpdateManyAndReturnArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WarmupLogPayload>[]
|
|
}
|
|
upsert: {
|
|
args: Prisma.WarmupLogUpsertArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$WarmupLogPayload>
|
|
}
|
|
aggregate: {
|
|
args: Prisma.WarmupLogAggregateArgs<ExtArgs>
|
|
result: runtime.Types.Utils.Optional<Prisma.AggregateWarmupLog>
|
|
}
|
|
groupBy: {
|
|
args: Prisma.WarmupLogGroupByArgs<ExtArgs>
|
|
result: runtime.Types.Utils.Optional<Prisma.WarmupLogGroupByOutputType>[]
|
|
}
|
|
count: {
|
|
args: Prisma.WarmupLogCountArgs<ExtArgs>
|
|
result: runtime.Types.Utils.Optional<Prisma.WarmupLogCountAggregateOutputType> | number
|
|
}
|
|
}
|
|
}
|
|
Setting: {
|
|
payload: Prisma.$SettingPayload<ExtArgs>
|
|
fields: Prisma.SettingFieldRefs
|
|
operations: {
|
|
findUnique: {
|
|
args: Prisma.SettingFindUniqueArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$SettingPayload> | null
|
|
}
|
|
findUniqueOrThrow: {
|
|
args: Prisma.SettingFindUniqueOrThrowArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$SettingPayload>
|
|
}
|
|
findFirst: {
|
|
args: Prisma.SettingFindFirstArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$SettingPayload> | null
|
|
}
|
|
findFirstOrThrow: {
|
|
args: Prisma.SettingFindFirstOrThrowArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$SettingPayload>
|
|
}
|
|
findMany: {
|
|
args: Prisma.SettingFindManyArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$SettingPayload>[]
|
|
}
|
|
create: {
|
|
args: Prisma.SettingCreateArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$SettingPayload>
|
|
}
|
|
createMany: {
|
|
args: Prisma.SettingCreateManyArgs<ExtArgs>
|
|
result: BatchPayload
|
|
}
|
|
createManyAndReturn: {
|
|
args: Prisma.SettingCreateManyAndReturnArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$SettingPayload>[]
|
|
}
|
|
delete: {
|
|
args: Prisma.SettingDeleteArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$SettingPayload>
|
|
}
|
|
update: {
|
|
args: Prisma.SettingUpdateArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$SettingPayload>
|
|
}
|
|
deleteMany: {
|
|
args: Prisma.SettingDeleteManyArgs<ExtArgs>
|
|
result: BatchPayload
|
|
}
|
|
updateMany: {
|
|
args: Prisma.SettingUpdateManyArgs<ExtArgs>
|
|
result: BatchPayload
|
|
}
|
|
updateManyAndReturn: {
|
|
args: Prisma.SettingUpdateManyAndReturnArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$SettingPayload>[]
|
|
}
|
|
upsert: {
|
|
args: Prisma.SettingUpsertArgs<ExtArgs>
|
|
result: runtime.Types.Utils.PayloadToResult<Prisma.$SettingPayload>
|
|
}
|
|
aggregate: {
|
|
args: Prisma.SettingAggregateArgs<ExtArgs>
|
|
result: runtime.Types.Utils.Optional<Prisma.AggregateSetting>
|
|
}
|
|
groupBy: {
|
|
args: Prisma.SettingGroupByArgs<ExtArgs>
|
|
result: runtime.Types.Utils.Optional<Prisma.SettingGroupByOutputType>[]
|
|
}
|
|
count: {
|
|
args: Prisma.SettingCountArgs<ExtArgs>
|
|
result: runtime.Types.Utils.Optional<Prisma.SettingCountAggregateOutputType> | number
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} & {
|
|
other: {
|
|
payload: any
|
|
operations: {
|
|
$executeRaw: {
|
|
args: [query: TemplateStringsArray | Sql, ...values: any[]],
|
|
result: any
|
|
}
|
|
$executeRawUnsafe: {
|
|
args: [query: string, ...values: any[]],
|
|
result: any
|
|
}
|
|
$queryRaw: {
|
|
args: [query: TemplateStringsArray | Sql, ...values: any[]],
|
|
result: any
|
|
}
|
|
$queryRawUnsafe: {
|
|
args: [query: string, ...values: any[]],
|
|
result: any
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Enums
|
|
*/
|
|
|
|
export const TransactionIsolationLevel = runtime.makeStrictEnum({
|
|
Serializable: 'Serializable'
|
|
} as const)
|
|
|
|
export type TransactionIsolationLevel = (typeof TransactionIsolationLevel)[keyof typeof TransactionIsolationLevel]
|
|
|
|
|
|
export const WorkspaceScalarFieldEnum = {
|
|
id: 'id',
|
|
name: 'name',
|
|
createdAt: 'createdAt',
|
|
updatedAt: 'updatedAt'
|
|
} as const
|
|
|
|
export type WorkspaceScalarFieldEnum = (typeof WorkspaceScalarFieldEnum)[keyof typeof WorkspaceScalarFieldEnum]
|
|
|
|
|
|
export const SendJobScalarFieldEnum = {
|
|
id: 'id',
|
|
campaignId: 'campaignId',
|
|
scheduledAt: 'scheduledAt',
|
|
status: 'status',
|
|
idempotencyKey: 'idempotencyKey',
|
|
processedAt: 'processedAt',
|
|
errorMessage: 'errorMessage',
|
|
createdAt: 'createdAt',
|
|
updatedAt: 'updatedAt'
|
|
} as const
|
|
|
|
export type SendJobScalarFieldEnum = (typeof SendJobScalarFieldEnum)[keyof typeof SendJobScalarFieldEnum]
|
|
|
|
|
|
export const JobRunLogScalarFieldEnum = {
|
|
id: 'id',
|
|
jobName: 'jobName',
|
|
ranAt: 'ranAt',
|
|
success: 'success',
|
|
message: 'message'
|
|
} as const
|
|
|
|
export type JobRunLogScalarFieldEnum = (typeof JobRunLogScalarFieldEnum)[keyof typeof JobRunLogScalarFieldEnum]
|
|
|
|
|
|
export const InboxScalarFieldEnum = {
|
|
id: 'id',
|
|
workspaceId: 'workspaceId',
|
|
email: 'email',
|
|
smtpHost: 'smtpHost',
|
|
smtpPort: 'smtpPort',
|
|
imapHost: 'imapHost',
|
|
imapPort: 'imapPort',
|
|
username: 'username',
|
|
password: 'password',
|
|
authType: 'authType',
|
|
oauthRefreshToken: 'oauthRefreshToken',
|
|
role: 'role',
|
|
provider: 'provider',
|
|
status: 'status',
|
|
dailyLimit: 'dailyLimit',
|
|
currentRamp: 'currentRamp',
|
|
industry: 'industry',
|
|
senderName: 'senderName',
|
|
companyName: 'companyName',
|
|
lastError: 'lastError',
|
|
errorAt: 'errorAt',
|
|
spamFolderPath: 'spamFolderPath',
|
|
lastSpamRescuedAt: 'lastSpamRescuedAt',
|
|
createdAt: 'createdAt',
|
|
updatedAt: 'updatedAt'
|
|
} as const
|
|
|
|
export type InboxScalarFieldEnum = (typeof InboxScalarFieldEnum)[keyof typeof InboxScalarFieldEnum]
|
|
|
|
|
|
export const WarmupCampaignScalarFieldEnum = {
|
|
id: 'id',
|
|
workspaceId: 'workspaceId',
|
|
primaryMailboxId: 'primaryMailboxId',
|
|
name: 'name',
|
|
recipe: 'recipe',
|
|
status: 'status',
|
|
durationDays: 'durationDays',
|
|
minEmailsPerDay: 'minEmailsPerDay',
|
|
maxEmailsPerDay: 'maxEmailsPerDay',
|
|
replyRatePercent: 'replyRatePercent',
|
|
maintenanceVolumePercent: 'maintenanceVolumePercent',
|
|
timezone: 'timezone',
|
|
sendWindowStart: 'sendWindowStart',
|
|
sendWindowEnd: 'sendWindowEnd',
|
|
customSchedule: 'customSchedule',
|
|
startedAt: 'startedAt',
|
|
endsAt: 'endsAt',
|
|
currentDay: 'currentDay',
|
|
pausedFromStatus: 'pausedFromStatus',
|
|
lastSendAt: 'lastSendAt',
|
|
createdAt: 'createdAt',
|
|
updatedAt: 'updatedAt'
|
|
} as const
|
|
|
|
export type WarmupCampaignScalarFieldEnum = (typeof WarmupCampaignScalarFieldEnum)[keyof typeof WarmupCampaignScalarFieldEnum]
|
|
|
|
|
|
export const CampaignSatelliteScalarFieldEnum = {
|
|
id: 'id',
|
|
campaignId: 'campaignId',
|
|
satelliteMailboxId: 'satelliteMailboxId',
|
|
weight: 'weight',
|
|
active: 'active',
|
|
createdAt: 'createdAt',
|
|
updatedAt: 'updatedAt'
|
|
} as const
|
|
|
|
export type CampaignSatelliteScalarFieldEnum = (typeof CampaignSatelliteScalarFieldEnum)[keyof typeof CampaignSatelliteScalarFieldEnum]
|
|
|
|
|
|
export const DailyScheduleScalarFieldEnum = {
|
|
id: 'id',
|
|
campaignId: 'campaignId',
|
|
dayIndex: 'dayIndex',
|
|
date: 'date',
|
|
plannedSends: 'plannedSends',
|
|
plannedReplies: 'plannedReplies',
|
|
actualSends: 'actualSends',
|
|
actualReplies: 'actualReplies',
|
|
spamDetected: 'spamDetected',
|
|
spamRescued: 'spamRescued',
|
|
createdAt: 'createdAt',
|
|
updatedAt: 'updatedAt'
|
|
} as const
|
|
|
|
export type DailyScheduleScalarFieldEnum = (typeof DailyScheduleScalarFieldEnum)[keyof typeof DailyScheduleScalarFieldEnum]
|
|
|
|
|
|
export const DailyStatScalarFieldEnum = {
|
|
id: 'id',
|
|
campaignId: 'campaignId',
|
|
date: 'date',
|
|
dayIndex: 'dayIndex',
|
|
plannedSends: 'plannedSends',
|
|
plannedReplies: 'plannedReplies',
|
|
actualSends: 'actualSends',
|
|
actualReplies: 'actualReplies',
|
|
spamDetected: 'spamDetected',
|
|
spamRescued: 'spamRescued',
|
|
replyRateActual: 'replyRateActual',
|
|
inboxPlacementRate: 'inboxPlacementRate',
|
|
createdAt: 'createdAt',
|
|
updatedAt: 'updatedAt'
|
|
} as const
|
|
|
|
export type DailyStatScalarFieldEnum = (typeof DailyStatScalarFieldEnum)[keyof typeof DailyStatScalarFieldEnum]
|
|
|
|
|
|
export const WarmupLogScalarFieldEnum = {
|
|
id: 'id',
|
|
campaignId: 'campaignId',
|
|
senderId: 'senderId',
|
|
receiverId: 'receiverId',
|
|
messageId: 'messageId',
|
|
inReplyTo: 'inReplyTo',
|
|
subject: 'subject',
|
|
body: 'body',
|
|
status: 'status',
|
|
placement: 'placement',
|
|
rescuedFromSpam: 'rescuedFromSpam',
|
|
validationResult: 'validationResult',
|
|
createdAt: 'createdAt',
|
|
updatedAt: 'updatedAt'
|
|
} as const
|
|
|
|
export type WarmupLogScalarFieldEnum = (typeof WarmupLogScalarFieldEnum)[keyof typeof WarmupLogScalarFieldEnum]
|
|
|
|
|
|
export const SettingScalarFieldEnum = {
|
|
id: 'id',
|
|
key: 'key',
|
|
value: 'value',
|
|
createdAt: 'createdAt',
|
|
updatedAt: 'updatedAt'
|
|
} as const
|
|
|
|
export type SettingScalarFieldEnum = (typeof SettingScalarFieldEnum)[keyof typeof SettingScalarFieldEnum]
|
|
|
|
|
|
export const SortOrder = {
|
|
asc: 'asc',
|
|
desc: 'desc'
|
|
} as const
|
|
|
|
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder]
|
|
|
|
|
|
export const NullsOrder = {
|
|
first: 'first',
|
|
last: 'last'
|
|
} as const
|
|
|
|
export type NullsOrder = (typeof NullsOrder)[keyof typeof NullsOrder]
|
|
|
|
|
|
|
|
/**
|
|
* Field references
|
|
*/
|
|
|
|
|
|
/**
|
|
* Reference to a field of type 'String'
|
|
*/
|
|
export type StringFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'String'>
|
|
|
|
|
|
|
|
/**
|
|
* Reference to a field of type 'DateTime'
|
|
*/
|
|
export type DateTimeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'DateTime'>
|
|
|
|
|
|
|
|
/**
|
|
* Reference to a field of type 'SendJobStatus'
|
|
*/
|
|
export type EnumSendJobStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'SendJobStatus'>
|
|
|
|
|
|
|
|
/**
|
|
* Reference to a field of type 'Boolean'
|
|
*/
|
|
export type BooleanFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Boolean'>
|
|
|
|
|
|
|
|
/**
|
|
* Reference to a field of type 'Int'
|
|
*/
|
|
export type IntFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Int'>
|
|
|
|
|
|
|
|
/**
|
|
* Reference to a field of type 'MailboxAuthType'
|
|
*/
|
|
export type EnumMailboxAuthTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'MailboxAuthType'>
|
|
|
|
|
|
|
|
/**
|
|
* Reference to a field of type 'MailboxRole'
|
|
*/
|
|
export type EnumMailboxRoleFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'MailboxRole'>
|
|
|
|
|
|
|
|
/**
|
|
* Reference to a field of type 'MailboxProvider'
|
|
*/
|
|
export type EnumMailboxProviderFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'MailboxProvider'>
|
|
|
|
|
|
|
|
/**
|
|
* Reference to a field of type 'InboxStatus'
|
|
*/
|
|
export type EnumInboxStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'InboxStatus'>
|
|
|
|
|
|
|
|
/**
|
|
* Reference to a field of type 'CampaignRecipe'
|
|
*/
|
|
export type EnumCampaignRecipeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'CampaignRecipe'>
|
|
|
|
|
|
|
|
/**
|
|
* Reference to a field of type 'CampaignStatus'
|
|
*/
|
|
export type EnumCampaignStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'CampaignStatus'>
|
|
|
|
|
|
|
|
/**
|
|
* Reference to a field of type 'Float'
|
|
*/
|
|
export type FloatFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Float'>
|
|
|
|
|
|
|
|
/**
|
|
* Reference to a field of type 'WarmupStatus'
|
|
*/
|
|
export type EnumWarmupStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'WarmupStatus'>
|
|
|
|
|
|
/**
|
|
* Batch Payload for updateMany & deleteMany & createMany
|
|
*/
|
|
export type BatchPayload = {
|
|
count: number
|
|
}
|
|
|
|
export const defineExtension = runtime.Extensions.defineExtension as unknown as runtime.Types.Extensions.ExtendsHook<"define", TypeMapCb, runtime.Types.Extensions.DefaultArgs>
|
|
export type DefaultPrismaClient = PrismaClient
|
|
export type ErrorFormat = 'pretty' | 'colorless' | 'minimal'
|
|
export type PrismaClientOptions = ({
|
|
/**
|
|
* Instance of a Driver Adapter, e.g., like one provided by `@prisma/adapter-pg`.
|
|
*/
|
|
adapter: runtime.SqlDriverAdapterFactory
|
|
accelerateUrl?: never
|
|
} | {
|
|
/**
|
|
* Prisma Accelerate URL allowing the client to connect through Accelerate instead of a direct database.
|
|
*/
|
|
accelerateUrl: string
|
|
adapter?: never
|
|
}) & {
|
|
/**
|
|
* @default "colorless"
|
|
*/
|
|
errorFormat?: ErrorFormat
|
|
/**
|
|
* @example
|
|
* ```
|
|
* // Shorthand for `emit: 'stdout'`
|
|
* log: ['query', 'info', 'warn', 'error']
|
|
*
|
|
* // Emit as events only
|
|
* log: [
|
|
* { emit: 'event', level: 'query' },
|
|
* { emit: 'event', level: 'info' },
|
|
* { emit: 'event', level: 'warn' }
|
|
* { emit: 'event', level: 'error' }
|
|
* ]
|
|
*
|
|
* / Emit as events and log to stdout
|
|
* og: [
|
|
* { emit: 'stdout', level: 'query' },
|
|
* { emit: 'stdout', level: 'info' },
|
|
* { emit: 'stdout', level: 'warn' }
|
|
* { emit: 'stdout', level: 'error' }
|
|
*
|
|
* ```
|
|
* Read more in our [docs](https://pris.ly/d/logging).
|
|
*/
|
|
log?: (LogLevel | LogDefinition)[]
|
|
/**
|
|
* The default values for transactionOptions
|
|
* maxWait ?= 2000
|
|
* timeout ?= 5000
|
|
*/
|
|
transactionOptions?: {
|
|
maxWait?: number
|
|
timeout?: number
|
|
isolationLevel?: TransactionIsolationLevel
|
|
}
|
|
/**
|
|
* Global configuration for omitting model fields by default.
|
|
*
|
|
* @example
|
|
* ```
|
|
* const prisma = new PrismaClient({
|
|
* omit: {
|
|
* user: {
|
|
* password: true
|
|
* }
|
|
* }
|
|
* })
|
|
* ```
|
|
*/
|
|
omit?: GlobalOmitConfig
|
|
/**
|
|
* SQL commenter plugins that add metadata to SQL queries as comments.
|
|
* Comments follow the sqlcommenter format: https://google.github.io/sqlcommenter/
|
|
*
|
|
* @example
|
|
* ```
|
|
* const prisma = new PrismaClient({
|
|
* adapter,
|
|
* comments: [
|
|
* traceContext(),
|
|
* queryInsights(),
|
|
* ],
|
|
* })
|
|
* ```
|
|
*/
|
|
comments?: runtime.SqlCommenterPlugin[]
|
|
/**
|
|
* Optional maximum size for the query plan cache. If not provided, a default size will be used.
|
|
* A value of `0` can be used to disable the cache entirely. A higher cache size can improve
|
|
* performance for applications that execute a large number of unique queries, while a smaller
|
|
* cache size can reduce memory usage.
|
|
*
|
|
* @example
|
|
* ```
|
|
* const prisma = new PrismaClient({
|
|
* adapter,
|
|
* queryPlanCacheMaxSize: 100,
|
|
* })
|
|
* ```
|
|
*/
|
|
queryPlanCacheMaxSize?: number
|
|
}
|
|
export type GlobalOmitConfig = {
|
|
workspace?: Prisma.WorkspaceOmit
|
|
sendJob?: Prisma.SendJobOmit
|
|
jobRunLog?: Prisma.JobRunLogOmit
|
|
inbox?: Prisma.InboxOmit
|
|
warmupCampaign?: Prisma.WarmupCampaignOmit
|
|
campaignSatellite?: Prisma.CampaignSatelliteOmit
|
|
dailySchedule?: Prisma.DailyScheduleOmit
|
|
dailyStat?: Prisma.DailyStatOmit
|
|
warmupLog?: Prisma.WarmupLogOmit
|
|
setting?: Prisma.SettingOmit
|
|
}
|
|
|
|
/* Types for Logging */
|
|
export type LogLevel = 'info' | 'query' | 'warn' | 'error'
|
|
export type LogDefinition = {
|
|
level: LogLevel
|
|
emit: 'stdout' | 'event'
|
|
}
|
|
|
|
export type CheckIsLogLevel<T> = T extends LogLevel ? T : never;
|
|
|
|
export type GetLogType<T> = CheckIsLogLevel<
|
|
T extends LogDefinition ? T['level'] : T
|
|
>;
|
|
|
|
export type GetEvents<T extends any[]> = T extends Array<LogLevel | LogDefinition>
|
|
? GetLogType<T[number]>
|
|
: never;
|
|
|
|
export type QueryEvent = {
|
|
timestamp: Date
|
|
query: string
|
|
params: string
|
|
duration: number
|
|
target: string
|
|
}
|
|
|
|
export type LogEvent = {
|
|
timestamp: Date
|
|
message: string
|
|
target: string
|
|
}
|
|
/* End Types for Logging */
|
|
|
|
|
|
export type PrismaAction =
|
|
| 'findUnique'
|
|
| 'findUniqueOrThrow'
|
|
| 'findMany'
|
|
| 'findFirst'
|
|
| 'findFirstOrThrow'
|
|
| 'create'
|
|
| 'createMany'
|
|
| 'createManyAndReturn'
|
|
| 'update'
|
|
| 'updateMany'
|
|
| 'updateManyAndReturn'
|
|
| 'upsert'
|
|
| 'delete'
|
|
| 'deleteMany'
|
|
| 'executeRaw'
|
|
| 'queryRaw'
|
|
| 'aggregate'
|
|
| 'count'
|
|
| 'runCommandRaw'
|
|
| 'findRaw'
|
|
| 'groupBy'
|
|
|
|
/**
|
|
* `PrismaClient` proxy available in interactive transactions.
|
|
*/
|
|
export type TransactionClient = Omit<DefaultPrismaClient, runtime.ITXClientDenyList>
|
|
|