@yimingliao/cms 0.0.181 → 0.0.183
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/client/interfaces/components/resources/topic/topic-card.js +1 -1
- package/package.json +2 -2
- package/dist/types/prisma/generated/client.d.ts +0 -69
- package/dist/types/prisma/generated/client.d.ts.map +0 -1
- package/dist/types/prisma/generated/commonInputTypes.d.ts +0 -546
- package/dist/types/prisma/generated/commonInputTypes.d.ts.map +0 -1
- package/dist/types/prisma/generated/enums.d.ts +0 -24
- package/dist/types/prisma/generated/enums.d.ts.map +0 -1
- package/dist/types/prisma/generated/internal/class.d.ts +0 -219
- package/dist/types/prisma/generated/internal/class.d.ts.map +0 -1
- package/dist/types/prisma/generated/internal/prismaNamespace.d.ts +0 -1382
- package/dist/types/prisma/generated/internal/prismaNamespace.d.ts.map +0 -1
- package/dist/types/prisma/generated/models/Admin.d.ts +0 -1756
- package/dist/types/prisma/generated/models/Admin.d.ts.map +0 -1
- package/dist/types/prisma/generated/models/AdminRefreshToken.d.ts +0 -1276
- package/dist/types/prisma/generated/models/AdminRefreshToken.d.ts.map +0 -1
- package/dist/types/prisma/generated/models/AdminTranslation.d.ts +0 -1498
- package/dist/types/prisma/generated/models/AdminTranslation.d.ts.map +0 -1
- package/dist/types/prisma/generated/models/File.d.ts +0 -3624
- package/dist/types/prisma/generated/models/File.d.ts.map +0 -1
- package/dist/types/prisma/generated/models/FileTranslation.d.ts +0 -1252
- package/dist/types/prisma/generated/models/FileTranslation.d.ts.map +0 -1
- package/dist/types/prisma/generated/models/Folder.d.ts +0 -1513
- package/dist/types/prisma/generated/models/Folder.d.ts.map +0 -1
- package/dist/types/prisma/generated/models/Post.d.ts +0 -9300
- package/dist/types/prisma/generated/models/Post.d.ts.map +0 -1
- package/dist/types/prisma/generated/models/PostTranslation.d.ts +0 -2073
- package/dist/types/prisma/generated/models/PostTranslation.d.ts.map +0 -1
- package/dist/types/prisma/generated/models/SeoMetadata.d.ts +0 -2183
- package/dist/types/prisma/generated/models/SeoMetadata.d.ts.map +0 -1
- package/dist/types/prisma/generated/models.d.ts +0 -11
- package/dist/types/prisma/generated/models.d.ts.map +0 -1
|
@@ -1,1382 +0,0 @@
|
|
|
1
|
-
import * as runtime from "@prisma/client/runtime/client";
|
|
2
|
-
import type * as Prisma from "../models";
|
|
3
|
-
import { type PrismaClient } from "./class";
|
|
4
|
-
export type * from '../models';
|
|
5
|
-
export type DMMF = typeof runtime.DMMF;
|
|
6
|
-
export type PrismaPromise<T> = runtime.Types.Public.PrismaPromise<T>;
|
|
7
|
-
/**
|
|
8
|
-
* Prisma Errors
|
|
9
|
-
*/
|
|
10
|
-
export declare const PrismaClientKnownRequestError: typeof runtime.PrismaClientKnownRequestError;
|
|
11
|
-
export type PrismaClientKnownRequestError = runtime.PrismaClientKnownRequestError;
|
|
12
|
-
export declare const PrismaClientUnknownRequestError: typeof runtime.PrismaClientUnknownRequestError;
|
|
13
|
-
export type PrismaClientUnknownRequestError = runtime.PrismaClientUnknownRequestError;
|
|
14
|
-
export declare const PrismaClientRustPanicError: typeof runtime.PrismaClientRustPanicError;
|
|
15
|
-
export type PrismaClientRustPanicError = runtime.PrismaClientRustPanicError;
|
|
16
|
-
export declare const PrismaClientInitializationError: typeof runtime.PrismaClientInitializationError;
|
|
17
|
-
export type PrismaClientInitializationError = runtime.PrismaClientInitializationError;
|
|
18
|
-
export declare const PrismaClientValidationError: typeof runtime.PrismaClientValidationError;
|
|
19
|
-
export type PrismaClientValidationError = runtime.PrismaClientValidationError;
|
|
20
|
-
/**
|
|
21
|
-
* Re-export of sql-template-tag
|
|
22
|
-
*/
|
|
23
|
-
export declare const sql: typeof runtime.sqltag;
|
|
24
|
-
export declare const empty: runtime.Sql;
|
|
25
|
-
export declare const join: typeof runtime.join;
|
|
26
|
-
export declare const raw: typeof runtime.raw;
|
|
27
|
-
export declare const Sql: typeof runtime.Sql;
|
|
28
|
-
export type Sql = runtime.Sql;
|
|
29
|
-
/**
|
|
30
|
-
* Decimal.js
|
|
31
|
-
*/
|
|
32
|
-
export declare const Decimal: typeof runtime.Decimal;
|
|
33
|
-
export type Decimal = runtime.Decimal;
|
|
34
|
-
export type DecimalJsLike = runtime.DecimalJsLike;
|
|
35
|
-
/**
|
|
36
|
-
* Extensions
|
|
37
|
-
*/
|
|
38
|
-
export type Extension = runtime.Types.Extensions.UserArgs;
|
|
39
|
-
export declare const getExtensionContext: typeof runtime.Extensions.getExtensionContext;
|
|
40
|
-
export type Args<T, F extends runtime.Operation> = runtime.Types.Public.Args<T, F>;
|
|
41
|
-
export type Payload<T, F extends runtime.Operation = never> = runtime.Types.Public.Payload<T, F>;
|
|
42
|
-
export type Result<T, A, F extends runtime.Operation> = runtime.Types.Public.Result<T, A, F>;
|
|
43
|
-
export type Exact<A, W> = runtime.Types.Public.Exact<A, W>;
|
|
44
|
-
export type PrismaVersion = {
|
|
45
|
-
client: string;
|
|
46
|
-
engine: string;
|
|
47
|
-
};
|
|
48
|
-
/**
|
|
49
|
-
* Prisma Client JS version: 7.5.0
|
|
50
|
-
* Query Engine version: 280c870be64f457428992c43c1f6d557fab6e29e
|
|
51
|
-
*/
|
|
52
|
-
export declare const prismaVersion: PrismaVersion;
|
|
53
|
-
/**
|
|
54
|
-
* Utility Types
|
|
55
|
-
*/
|
|
56
|
-
export type Bytes = runtime.Bytes;
|
|
57
|
-
export type JsonObject = runtime.JsonObject;
|
|
58
|
-
export type JsonArray = runtime.JsonArray;
|
|
59
|
-
export type JsonValue = runtime.JsonValue;
|
|
60
|
-
export type InputJsonObject = runtime.InputJsonObject;
|
|
61
|
-
export type InputJsonArray = runtime.InputJsonArray;
|
|
62
|
-
export type InputJsonValue = runtime.InputJsonValue;
|
|
63
|
-
export declare const NullTypes: {
|
|
64
|
-
DbNull: (new (secret: never) => typeof runtime.DbNull);
|
|
65
|
-
JsonNull: (new (secret: never) => typeof runtime.JsonNull);
|
|
66
|
-
AnyNull: (new (secret: never) => typeof runtime.AnyNull);
|
|
67
|
-
};
|
|
68
|
-
/**
|
|
69
|
-
* Helper for filtering JSON entries that have `null` on the database (empty on the db)
|
|
70
|
-
*
|
|
71
|
-
* @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
|
|
72
|
-
*/
|
|
73
|
-
export declare const DbNull: runtime.DbNullClass;
|
|
74
|
-
/**
|
|
75
|
-
* Helper for filtering JSON entries that have JSON `null` values (not empty on the db)
|
|
76
|
-
*
|
|
77
|
-
* @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
|
|
78
|
-
*/
|
|
79
|
-
export declare const JsonNull: runtime.JsonNullClass;
|
|
80
|
-
/**
|
|
81
|
-
* Helper for filtering JSON entries that are `Prisma.DbNull` or `Prisma.JsonNull`
|
|
82
|
-
*
|
|
83
|
-
* @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
|
|
84
|
-
*/
|
|
85
|
-
export declare const AnyNull: runtime.AnyNullClass;
|
|
86
|
-
type SelectAndInclude = {
|
|
87
|
-
select: any;
|
|
88
|
-
include: any;
|
|
89
|
-
};
|
|
90
|
-
type SelectAndOmit = {
|
|
91
|
-
select: any;
|
|
92
|
-
omit: any;
|
|
93
|
-
};
|
|
94
|
-
/**
|
|
95
|
-
* From T, pick a set of properties whose keys are in the union K
|
|
96
|
-
*/
|
|
97
|
-
type Prisma__Pick<T, K extends keyof T> = {
|
|
98
|
-
[P in K]: T[P];
|
|
99
|
-
};
|
|
100
|
-
export type Enumerable<T> = T | Array<T>;
|
|
101
|
-
/**
|
|
102
|
-
* Subset
|
|
103
|
-
* @desc From `T` pick properties that exist in `U`. Simple version of Intersection
|
|
104
|
-
*/
|
|
105
|
-
export type Subset<T, U> = {
|
|
106
|
-
[key in keyof T]: key extends keyof U ? T[key] : never;
|
|
107
|
-
};
|
|
108
|
-
/**
|
|
109
|
-
* SelectSubset
|
|
110
|
-
* @desc From `T` pick properties that exist in `U`. Simple version of Intersection.
|
|
111
|
-
* Additionally, it validates, if both select and include are present. If the case, it errors.
|
|
112
|
-
*/
|
|
113
|
-
export type SelectSubset<T, U> = {
|
|
114
|
-
[key in keyof T]: key extends keyof U ? T[key] : never;
|
|
115
|
-
} & (T extends SelectAndInclude ? 'Please either choose `select` or `include`.' : T extends SelectAndOmit ? 'Please either choose `select` or `omit`.' : {});
|
|
116
|
-
/**
|
|
117
|
-
* Subset + Intersection
|
|
118
|
-
* @desc From `T` pick properties that exist in `U` and intersect `K`
|
|
119
|
-
*/
|
|
120
|
-
export type SubsetIntersection<T, U, K> = {
|
|
121
|
-
[key in keyof T]: key extends keyof U ? T[key] : never;
|
|
122
|
-
} & K;
|
|
123
|
-
type Without<T, U> = {
|
|
124
|
-
[P in Exclude<keyof T, keyof U>]?: never;
|
|
125
|
-
};
|
|
126
|
-
/**
|
|
127
|
-
* XOR is needed to have a real mutually exclusive union type
|
|
128
|
-
* https://stackoverflow.com/questions/42123407/does-typescript-support-mutually-exclusive-types
|
|
129
|
-
*/
|
|
130
|
-
export type XOR<T, U> = T extends object ? U extends object ? (Without<T, U> & U) | (Without<U, T> & T) : U : T;
|
|
131
|
-
/**
|
|
132
|
-
* Is T a Record?
|
|
133
|
-
*/
|
|
134
|
-
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;
|
|
135
|
-
/**
|
|
136
|
-
* If it's T[], return T
|
|
137
|
-
*/
|
|
138
|
-
export type UnEnumerate<T extends unknown> = T extends Array<infer U> ? U : T;
|
|
139
|
-
/**
|
|
140
|
-
* From ts-toolbelt
|
|
141
|
-
*/
|
|
142
|
-
type __Either<O extends object, K extends Key> = Omit<O, K> & {
|
|
143
|
-
[P in K]: Prisma__Pick<O, P & keyof O>;
|
|
144
|
-
}[K];
|
|
145
|
-
type EitherStrict<O extends object, K extends Key> = Strict<__Either<O, K>>;
|
|
146
|
-
type EitherLoose<O extends object, K extends Key> = ComputeRaw<__Either<O, K>>;
|
|
147
|
-
type _Either<O extends object, K extends Key, strict extends Boolean> = {
|
|
148
|
-
1: EitherStrict<O, K>;
|
|
149
|
-
0: EitherLoose<O, K>;
|
|
150
|
-
}[strict];
|
|
151
|
-
export type Either<O extends object, K extends Key, strict extends Boolean = 1> = O extends unknown ? _Either<O, K, strict> : never;
|
|
152
|
-
export type Union = any;
|
|
153
|
-
export type PatchUndefined<O extends object, O1 extends object> = {
|
|
154
|
-
[K in keyof O]: O[K] extends undefined ? At<O1, K> : O[K];
|
|
155
|
-
} & {};
|
|
156
|
-
/** Helper Types for "Merge" **/
|
|
157
|
-
export type IntersectOf<U extends Union> = (U extends unknown ? (k: U) => void : never) extends (k: infer I) => void ? I : never;
|
|
158
|
-
export type Overwrite<O extends object, O1 extends object> = {
|
|
159
|
-
[K in keyof O]: K extends keyof O1 ? O1[K] : O[K];
|
|
160
|
-
} & {};
|
|
161
|
-
type _Merge<U extends object> = IntersectOf<Overwrite<U, {
|
|
162
|
-
[K in keyof U]-?: At<U, K>;
|
|
163
|
-
}>>;
|
|
164
|
-
type Key = string | number | symbol;
|
|
165
|
-
type AtStrict<O extends object, K extends Key> = O[K & keyof O];
|
|
166
|
-
type AtLoose<O extends object, K extends Key> = O extends unknown ? AtStrict<O, K> : never;
|
|
167
|
-
export type At<O extends object, K extends Key, strict extends Boolean = 1> = {
|
|
168
|
-
1: AtStrict<O, K>;
|
|
169
|
-
0: AtLoose<O, K>;
|
|
170
|
-
}[strict];
|
|
171
|
-
export type ComputeRaw<A extends any> = A extends Function ? A : {
|
|
172
|
-
[K in keyof A]: A[K];
|
|
173
|
-
} & {};
|
|
174
|
-
export type OptionalFlat<O> = {
|
|
175
|
-
[K in keyof O]?: O[K];
|
|
176
|
-
} & {};
|
|
177
|
-
type _Record<K extends keyof any, T> = {
|
|
178
|
-
[P in K]: T;
|
|
179
|
-
};
|
|
180
|
-
type NoExpand<T> = T extends unknown ? T : never;
|
|
181
|
-
export type AtLeast<O extends object, K extends string> = NoExpand<O extends unknown ? (K extends keyof O ? {
|
|
182
|
-
[P in K]: O[P];
|
|
183
|
-
} & O : O) | {
|
|
184
|
-
[P in keyof O as P extends K ? P : never]-?: O[P];
|
|
185
|
-
} & O : never>;
|
|
186
|
-
type _Strict<U, _U = U> = U extends unknown ? U & OptionalFlat<_Record<Exclude<Keys<_U>, keyof U>, never>> : never;
|
|
187
|
-
export type Strict<U extends object> = ComputeRaw<_Strict<U>>;
|
|
188
|
-
/** End Helper Types for "Merge" **/
|
|
189
|
-
export type Merge<U extends object> = ComputeRaw<_Merge<Strict<U>>>;
|
|
190
|
-
export type Boolean = True | False;
|
|
191
|
-
export type True = 1;
|
|
192
|
-
export type False = 0;
|
|
193
|
-
export type Not<B extends Boolean> = {
|
|
194
|
-
0: 1;
|
|
195
|
-
1: 0;
|
|
196
|
-
}[B];
|
|
197
|
-
export type Extends<A1 extends any, A2 extends any> = [A1] extends [never] ? 0 : A1 extends A2 ? 1 : 0;
|
|
198
|
-
export type Has<U extends Union, U1 extends Union> = Not<Extends<Exclude<U1, U>, U1>>;
|
|
199
|
-
export type Or<B1 extends Boolean, B2 extends Boolean> = {
|
|
200
|
-
0: {
|
|
201
|
-
0: 0;
|
|
202
|
-
1: 1;
|
|
203
|
-
};
|
|
204
|
-
1: {
|
|
205
|
-
0: 1;
|
|
206
|
-
1: 1;
|
|
207
|
-
};
|
|
208
|
-
}[B1][B2];
|
|
209
|
-
export type Keys<U extends Union> = U extends unknown ? keyof U : never;
|
|
210
|
-
export type GetScalarType<T, O> = O extends object ? {
|
|
211
|
-
[P in keyof T]: P extends keyof O ? O[P] : never;
|
|
212
|
-
} : never;
|
|
213
|
-
type FieldPaths<T, U = Omit<T, '_avg' | '_sum' | '_count' | '_min' | '_max'>> = IsObject<T> extends True ? U : T;
|
|
214
|
-
export type GetHavingFields<T> = {
|
|
215
|
-
[K in keyof T]: Or<Or<Extends<'OR', K>, Extends<'AND', K>>, Extends<'NOT', K>> extends True ? T[K] extends infer TK ? GetHavingFields<UnEnumerate<TK> extends object ? Merge<UnEnumerate<TK>> : never> : never : {} extends FieldPaths<T[K]> ? never : K;
|
|
216
|
-
}[keyof T];
|
|
217
|
-
/**
|
|
218
|
-
* Convert tuple to union
|
|
219
|
-
*/
|
|
220
|
-
type _TupleToUnion<T> = T extends (infer E)[] ? E : never;
|
|
221
|
-
type TupleToUnion<K extends readonly any[]> = _TupleToUnion<K>;
|
|
222
|
-
export type MaybeTupleToUnion<T> = T extends any[] ? TupleToUnion<T> : T;
|
|
223
|
-
/**
|
|
224
|
-
* Like `Pick`, but additionally can also accept an array of keys
|
|
225
|
-
*/
|
|
226
|
-
export type PickEnumerable<T, K extends Enumerable<keyof T> | keyof T> = Prisma__Pick<T, MaybeTupleToUnion<K>>;
|
|
227
|
-
/**
|
|
228
|
-
* Exclude all keys with underscores
|
|
229
|
-
*/
|
|
230
|
-
export type ExcludeUnderscoreKeys<T extends string> = T extends `_${string}` ? never : T;
|
|
231
|
-
export type FieldRef<Model, FieldType> = runtime.FieldRef<Model, FieldType>;
|
|
232
|
-
type FieldRefInputType<Model, FieldType> = Model extends never ? never : FieldRef<Model, FieldType>;
|
|
233
|
-
export declare const ModelName: {
|
|
234
|
-
readonly Admin: "Admin";
|
|
235
|
-
readonly AdminTranslation: "AdminTranslation";
|
|
236
|
-
readonly AdminRefreshToken: "AdminRefreshToken";
|
|
237
|
-
readonly File: "File";
|
|
238
|
-
readonly FileTranslation: "FileTranslation";
|
|
239
|
-
readonly Folder: "Folder";
|
|
240
|
-
readonly SeoMetadata: "SeoMetadata";
|
|
241
|
-
readonly Post: "Post";
|
|
242
|
-
readonly PostTranslation: "PostTranslation";
|
|
243
|
-
};
|
|
244
|
-
export type ModelName = (typeof ModelName)[keyof typeof ModelName];
|
|
245
|
-
export interface TypeMapCb<GlobalOmitOptions = {}> extends runtime.Types.Utils.Fn<{
|
|
246
|
-
extArgs: runtime.Types.Extensions.InternalArgs;
|
|
247
|
-
}, runtime.Types.Utils.Record<string, any>> {
|
|
248
|
-
returns: TypeMap<this['params']['extArgs'], GlobalOmitOptions>;
|
|
249
|
-
}
|
|
250
|
-
export type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> = {
|
|
251
|
-
globalOmitOptions: {
|
|
252
|
-
omit: GlobalOmitOptions;
|
|
253
|
-
};
|
|
254
|
-
meta: {
|
|
255
|
-
modelProps: "admin" | "adminTranslation" | "adminRefreshToken" | "file" | "fileTranslation" | "folder" | "seoMetadata" | "post" | "postTranslation";
|
|
256
|
-
txIsolationLevel: TransactionIsolationLevel;
|
|
257
|
-
};
|
|
258
|
-
model: {
|
|
259
|
-
Admin: {
|
|
260
|
-
payload: Prisma.$AdminPayload<ExtArgs>;
|
|
261
|
-
fields: Prisma.AdminFieldRefs;
|
|
262
|
-
operations: {
|
|
263
|
-
findUnique: {
|
|
264
|
-
args: Prisma.AdminFindUniqueArgs<ExtArgs>;
|
|
265
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminPayload> | null;
|
|
266
|
-
};
|
|
267
|
-
findUniqueOrThrow: {
|
|
268
|
-
args: Prisma.AdminFindUniqueOrThrowArgs<ExtArgs>;
|
|
269
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminPayload>;
|
|
270
|
-
};
|
|
271
|
-
findFirst: {
|
|
272
|
-
args: Prisma.AdminFindFirstArgs<ExtArgs>;
|
|
273
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminPayload> | null;
|
|
274
|
-
};
|
|
275
|
-
findFirstOrThrow: {
|
|
276
|
-
args: Prisma.AdminFindFirstOrThrowArgs<ExtArgs>;
|
|
277
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminPayload>;
|
|
278
|
-
};
|
|
279
|
-
findMany: {
|
|
280
|
-
args: Prisma.AdminFindManyArgs<ExtArgs>;
|
|
281
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminPayload>[];
|
|
282
|
-
};
|
|
283
|
-
create: {
|
|
284
|
-
args: Prisma.AdminCreateArgs<ExtArgs>;
|
|
285
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminPayload>;
|
|
286
|
-
};
|
|
287
|
-
createMany: {
|
|
288
|
-
args: Prisma.AdminCreateManyArgs<ExtArgs>;
|
|
289
|
-
result: BatchPayload;
|
|
290
|
-
};
|
|
291
|
-
createManyAndReturn: {
|
|
292
|
-
args: Prisma.AdminCreateManyAndReturnArgs<ExtArgs>;
|
|
293
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminPayload>[];
|
|
294
|
-
};
|
|
295
|
-
delete: {
|
|
296
|
-
args: Prisma.AdminDeleteArgs<ExtArgs>;
|
|
297
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminPayload>;
|
|
298
|
-
};
|
|
299
|
-
update: {
|
|
300
|
-
args: Prisma.AdminUpdateArgs<ExtArgs>;
|
|
301
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminPayload>;
|
|
302
|
-
};
|
|
303
|
-
deleteMany: {
|
|
304
|
-
args: Prisma.AdminDeleteManyArgs<ExtArgs>;
|
|
305
|
-
result: BatchPayload;
|
|
306
|
-
};
|
|
307
|
-
updateMany: {
|
|
308
|
-
args: Prisma.AdminUpdateManyArgs<ExtArgs>;
|
|
309
|
-
result: BatchPayload;
|
|
310
|
-
};
|
|
311
|
-
updateManyAndReturn: {
|
|
312
|
-
args: Prisma.AdminUpdateManyAndReturnArgs<ExtArgs>;
|
|
313
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminPayload>[];
|
|
314
|
-
};
|
|
315
|
-
upsert: {
|
|
316
|
-
args: Prisma.AdminUpsertArgs<ExtArgs>;
|
|
317
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminPayload>;
|
|
318
|
-
};
|
|
319
|
-
aggregate: {
|
|
320
|
-
args: Prisma.AdminAggregateArgs<ExtArgs>;
|
|
321
|
-
result: runtime.Types.Utils.Optional<Prisma.AggregateAdmin>;
|
|
322
|
-
};
|
|
323
|
-
groupBy: {
|
|
324
|
-
args: Prisma.AdminGroupByArgs<ExtArgs>;
|
|
325
|
-
result: runtime.Types.Utils.Optional<Prisma.AdminGroupByOutputType>[];
|
|
326
|
-
};
|
|
327
|
-
count: {
|
|
328
|
-
args: Prisma.AdminCountArgs<ExtArgs>;
|
|
329
|
-
result: runtime.Types.Utils.Optional<Prisma.AdminCountAggregateOutputType> | number;
|
|
330
|
-
};
|
|
331
|
-
};
|
|
332
|
-
};
|
|
333
|
-
AdminTranslation: {
|
|
334
|
-
payload: Prisma.$AdminTranslationPayload<ExtArgs>;
|
|
335
|
-
fields: Prisma.AdminTranslationFieldRefs;
|
|
336
|
-
operations: {
|
|
337
|
-
findUnique: {
|
|
338
|
-
args: Prisma.AdminTranslationFindUniqueArgs<ExtArgs>;
|
|
339
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminTranslationPayload> | null;
|
|
340
|
-
};
|
|
341
|
-
findUniqueOrThrow: {
|
|
342
|
-
args: Prisma.AdminTranslationFindUniqueOrThrowArgs<ExtArgs>;
|
|
343
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminTranslationPayload>;
|
|
344
|
-
};
|
|
345
|
-
findFirst: {
|
|
346
|
-
args: Prisma.AdminTranslationFindFirstArgs<ExtArgs>;
|
|
347
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminTranslationPayload> | null;
|
|
348
|
-
};
|
|
349
|
-
findFirstOrThrow: {
|
|
350
|
-
args: Prisma.AdminTranslationFindFirstOrThrowArgs<ExtArgs>;
|
|
351
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminTranslationPayload>;
|
|
352
|
-
};
|
|
353
|
-
findMany: {
|
|
354
|
-
args: Prisma.AdminTranslationFindManyArgs<ExtArgs>;
|
|
355
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminTranslationPayload>[];
|
|
356
|
-
};
|
|
357
|
-
create: {
|
|
358
|
-
args: Prisma.AdminTranslationCreateArgs<ExtArgs>;
|
|
359
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminTranslationPayload>;
|
|
360
|
-
};
|
|
361
|
-
createMany: {
|
|
362
|
-
args: Prisma.AdminTranslationCreateManyArgs<ExtArgs>;
|
|
363
|
-
result: BatchPayload;
|
|
364
|
-
};
|
|
365
|
-
createManyAndReturn: {
|
|
366
|
-
args: Prisma.AdminTranslationCreateManyAndReturnArgs<ExtArgs>;
|
|
367
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminTranslationPayload>[];
|
|
368
|
-
};
|
|
369
|
-
delete: {
|
|
370
|
-
args: Prisma.AdminTranslationDeleteArgs<ExtArgs>;
|
|
371
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminTranslationPayload>;
|
|
372
|
-
};
|
|
373
|
-
update: {
|
|
374
|
-
args: Prisma.AdminTranslationUpdateArgs<ExtArgs>;
|
|
375
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminTranslationPayload>;
|
|
376
|
-
};
|
|
377
|
-
deleteMany: {
|
|
378
|
-
args: Prisma.AdminTranslationDeleteManyArgs<ExtArgs>;
|
|
379
|
-
result: BatchPayload;
|
|
380
|
-
};
|
|
381
|
-
updateMany: {
|
|
382
|
-
args: Prisma.AdminTranslationUpdateManyArgs<ExtArgs>;
|
|
383
|
-
result: BatchPayload;
|
|
384
|
-
};
|
|
385
|
-
updateManyAndReturn: {
|
|
386
|
-
args: Prisma.AdminTranslationUpdateManyAndReturnArgs<ExtArgs>;
|
|
387
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminTranslationPayload>[];
|
|
388
|
-
};
|
|
389
|
-
upsert: {
|
|
390
|
-
args: Prisma.AdminTranslationUpsertArgs<ExtArgs>;
|
|
391
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminTranslationPayload>;
|
|
392
|
-
};
|
|
393
|
-
aggregate: {
|
|
394
|
-
args: Prisma.AdminTranslationAggregateArgs<ExtArgs>;
|
|
395
|
-
result: runtime.Types.Utils.Optional<Prisma.AggregateAdminTranslation>;
|
|
396
|
-
};
|
|
397
|
-
groupBy: {
|
|
398
|
-
args: Prisma.AdminTranslationGroupByArgs<ExtArgs>;
|
|
399
|
-
result: runtime.Types.Utils.Optional<Prisma.AdminTranslationGroupByOutputType>[];
|
|
400
|
-
};
|
|
401
|
-
count: {
|
|
402
|
-
args: Prisma.AdminTranslationCountArgs<ExtArgs>;
|
|
403
|
-
result: runtime.Types.Utils.Optional<Prisma.AdminTranslationCountAggregateOutputType> | number;
|
|
404
|
-
};
|
|
405
|
-
};
|
|
406
|
-
};
|
|
407
|
-
AdminRefreshToken: {
|
|
408
|
-
payload: Prisma.$AdminRefreshTokenPayload<ExtArgs>;
|
|
409
|
-
fields: Prisma.AdminRefreshTokenFieldRefs;
|
|
410
|
-
operations: {
|
|
411
|
-
findUnique: {
|
|
412
|
-
args: Prisma.AdminRefreshTokenFindUniqueArgs<ExtArgs>;
|
|
413
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminRefreshTokenPayload> | null;
|
|
414
|
-
};
|
|
415
|
-
findUniqueOrThrow: {
|
|
416
|
-
args: Prisma.AdminRefreshTokenFindUniqueOrThrowArgs<ExtArgs>;
|
|
417
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminRefreshTokenPayload>;
|
|
418
|
-
};
|
|
419
|
-
findFirst: {
|
|
420
|
-
args: Prisma.AdminRefreshTokenFindFirstArgs<ExtArgs>;
|
|
421
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminRefreshTokenPayload> | null;
|
|
422
|
-
};
|
|
423
|
-
findFirstOrThrow: {
|
|
424
|
-
args: Prisma.AdminRefreshTokenFindFirstOrThrowArgs<ExtArgs>;
|
|
425
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminRefreshTokenPayload>;
|
|
426
|
-
};
|
|
427
|
-
findMany: {
|
|
428
|
-
args: Prisma.AdminRefreshTokenFindManyArgs<ExtArgs>;
|
|
429
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminRefreshTokenPayload>[];
|
|
430
|
-
};
|
|
431
|
-
create: {
|
|
432
|
-
args: Prisma.AdminRefreshTokenCreateArgs<ExtArgs>;
|
|
433
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminRefreshTokenPayload>;
|
|
434
|
-
};
|
|
435
|
-
createMany: {
|
|
436
|
-
args: Prisma.AdminRefreshTokenCreateManyArgs<ExtArgs>;
|
|
437
|
-
result: BatchPayload;
|
|
438
|
-
};
|
|
439
|
-
createManyAndReturn: {
|
|
440
|
-
args: Prisma.AdminRefreshTokenCreateManyAndReturnArgs<ExtArgs>;
|
|
441
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminRefreshTokenPayload>[];
|
|
442
|
-
};
|
|
443
|
-
delete: {
|
|
444
|
-
args: Prisma.AdminRefreshTokenDeleteArgs<ExtArgs>;
|
|
445
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminRefreshTokenPayload>;
|
|
446
|
-
};
|
|
447
|
-
update: {
|
|
448
|
-
args: Prisma.AdminRefreshTokenUpdateArgs<ExtArgs>;
|
|
449
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminRefreshTokenPayload>;
|
|
450
|
-
};
|
|
451
|
-
deleteMany: {
|
|
452
|
-
args: Prisma.AdminRefreshTokenDeleteManyArgs<ExtArgs>;
|
|
453
|
-
result: BatchPayload;
|
|
454
|
-
};
|
|
455
|
-
updateMany: {
|
|
456
|
-
args: Prisma.AdminRefreshTokenUpdateManyArgs<ExtArgs>;
|
|
457
|
-
result: BatchPayload;
|
|
458
|
-
};
|
|
459
|
-
updateManyAndReturn: {
|
|
460
|
-
args: Prisma.AdminRefreshTokenUpdateManyAndReturnArgs<ExtArgs>;
|
|
461
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminRefreshTokenPayload>[];
|
|
462
|
-
};
|
|
463
|
-
upsert: {
|
|
464
|
-
args: Prisma.AdminRefreshTokenUpsertArgs<ExtArgs>;
|
|
465
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$AdminRefreshTokenPayload>;
|
|
466
|
-
};
|
|
467
|
-
aggregate: {
|
|
468
|
-
args: Prisma.AdminRefreshTokenAggregateArgs<ExtArgs>;
|
|
469
|
-
result: runtime.Types.Utils.Optional<Prisma.AggregateAdminRefreshToken>;
|
|
470
|
-
};
|
|
471
|
-
groupBy: {
|
|
472
|
-
args: Prisma.AdminRefreshTokenGroupByArgs<ExtArgs>;
|
|
473
|
-
result: runtime.Types.Utils.Optional<Prisma.AdminRefreshTokenGroupByOutputType>[];
|
|
474
|
-
};
|
|
475
|
-
count: {
|
|
476
|
-
args: Prisma.AdminRefreshTokenCountArgs<ExtArgs>;
|
|
477
|
-
result: runtime.Types.Utils.Optional<Prisma.AdminRefreshTokenCountAggregateOutputType> | number;
|
|
478
|
-
};
|
|
479
|
-
};
|
|
480
|
-
};
|
|
481
|
-
File: {
|
|
482
|
-
payload: Prisma.$FilePayload<ExtArgs>;
|
|
483
|
-
fields: Prisma.FileFieldRefs;
|
|
484
|
-
operations: {
|
|
485
|
-
findUnique: {
|
|
486
|
-
args: Prisma.FileFindUniqueArgs<ExtArgs>;
|
|
487
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FilePayload> | null;
|
|
488
|
-
};
|
|
489
|
-
findUniqueOrThrow: {
|
|
490
|
-
args: Prisma.FileFindUniqueOrThrowArgs<ExtArgs>;
|
|
491
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FilePayload>;
|
|
492
|
-
};
|
|
493
|
-
findFirst: {
|
|
494
|
-
args: Prisma.FileFindFirstArgs<ExtArgs>;
|
|
495
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FilePayload> | null;
|
|
496
|
-
};
|
|
497
|
-
findFirstOrThrow: {
|
|
498
|
-
args: Prisma.FileFindFirstOrThrowArgs<ExtArgs>;
|
|
499
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FilePayload>;
|
|
500
|
-
};
|
|
501
|
-
findMany: {
|
|
502
|
-
args: Prisma.FileFindManyArgs<ExtArgs>;
|
|
503
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FilePayload>[];
|
|
504
|
-
};
|
|
505
|
-
create: {
|
|
506
|
-
args: Prisma.FileCreateArgs<ExtArgs>;
|
|
507
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FilePayload>;
|
|
508
|
-
};
|
|
509
|
-
createMany: {
|
|
510
|
-
args: Prisma.FileCreateManyArgs<ExtArgs>;
|
|
511
|
-
result: BatchPayload;
|
|
512
|
-
};
|
|
513
|
-
createManyAndReturn: {
|
|
514
|
-
args: Prisma.FileCreateManyAndReturnArgs<ExtArgs>;
|
|
515
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FilePayload>[];
|
|
516
|
-
};
|
|
517
|
-
delete: {
|
|
518
|
-
args: Prisma.FileDeleteArgs<ExtArgs>;
|
|
519
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FilePayload>;
|
|
520
|
-
};
|
|
521
|
-
update: {
|
|
522
|
-
args: Prisma.FileUpdateArgs<ExtArgs>;
|
|
523
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FilePayload>;
|
|
524
|
-
};
|
|
525
|
-
deleteMany: {
|
|
526
|
-
args: Prisma.FileDeleteManyArgs<ExtArgs>;
|
|
527
|
-
result: BatchPayload;
|
|
528
|
-
};
|
|
529
|
-
updateMany: {
|
|
530
|
-
args: Prisma.FileUpdateManyArgs<ExtArgs>;
|
|
531
|
-
result: BatchPayload;
|
|
532
|
-
};
|
|
533
|
-
updateManyAndReturn: {
|
|
534
|
-
args: Prisma.FileUpdateManyAndReturnArgs<ExtArgs>;
|
|
535
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FilePayload>[];
|
|
536
|
-
};
|
|
537
|
-
upsert: {
|
|
538
|
-
args: Prisma.FileUpsertArgs<ExtArgs>;
|
|
539
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FilePayload>;
|
|
540
|
-
};
|
|
541
|
-
aggregate: {
|
|
542
|
-
args: Prisma.FileAggregateArgs<ExtArgs>;
|
|
543
|
-
result: runtime.Types.Utils.Optional<Prisma.AggregateFile>;
|
|
544
|
-
};
|
|
545
|
-
groupBy: {
|
|
546
|
-
args: Prisma.FileGroupByArgs<ExtArgs>;
|
|
547
|
-
result: runtime.Types.Utils.Optional<Prisma.FileGroupByOutputType>[];
|
|
548
|
-
};
|
|
549
|
-
count: {
|
|
550
|
-
args: Prisma.FileCountArgs<ExtArgs>;
|
|
551
|
-
result: runtime.Types.Utils.Optional<Prisma.FileCountAggregateOutputType> | number;
|
|
552
|
-
};
|
|
553
|
-
};
|
|
554
|
-
};
|
|
555
|
-
FileTranslation: {
|
|
556
|
-
payload: Prisma.$FileTranslationPayload<ExtArgs>;
|
|
557
|
-
fields: Prisma.FileTranslationFieldRefs;
|
|
558
|
-
operations: {
|
|
559
|
-
findUnique: {
|
|
560
|
-
args: Prisma.FileTranslationFindUniqueArgs<ExtArgs>;
|
|
561
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FileTranslationPayload> | null;
|
|
562
|
-
};
|
|
563
|
-
findUniqueOrThrow: {
|
|
564
|
-
args: Prisma.FileTranslationFindUniqueOrThrowArgs<ExtArgs>;
|
|
565
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FileTranslationPayload>;
|
|
566
|
-
};
|
|
567
|
-
findFirst: {
|
|
568
|
-
args: Prisma.FileTranslationFindFirstArgs<ExtArgs>;
|
|
569
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FileTranslationPayload> | null;
|
|
570
|
-
};
|
|
571
|
-
findFirstOrThrow: {
|
|
572
|
-
args: Prisma.FileTranslationFindFirstOrThrowArgs<ExtArgs>;
|
|
573
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FileTranslationPayload>;
|
|
574
|
-
};
|
|
575
|
-
findMany: {
|
|
576
|
-
args: Prisma.FileTranslationFindManyArgs<ExtArgs>;
|
|
577
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FileTranslationPayload>[];
|
|
578
|
-
};
|
|
579
|
-
create: {
|
|
580
|
-
args: Prisma.FileTranslationCreateArgs<ExtArgs>;
|
|
581
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FileTranslationPayload>;
|
|
582
|
-
};
|
|
583
|
-
createMany: {
|
|
584
|
-
args: Prisma.FileTranslationCreateManyArgs<ExtArgs>;
|
|
585
|
-
result: BatchPayload;
|
|
586
|
-
};
|
|
587
|
-
createManyAndReturn: {
|
|
588
|
-
args: Prisma.FileTranslationCreateManyAndReturnArgs<ExtArgs>;
|
|
589
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FileTranslationPayload>[];
|
|
590
|
-
};
|
|
591
|
-
delete: {
|
|
592
|
-
args: Prisma.FileTranslationDeleteArgs<ExtArgs>;
|
|
593
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FileTranslationPayload>;
|
|
594
|
-
};
|
|
595
|
-
update: {
|
|
596
|
-
args: Prisma.FileTranslationUpdateArgs<ExtArgs>;
|
|
597
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FileTranslationPayload>;
|
|
598
|
-
};
|
|
599
|
-
deleteMany: {
|
|
600
|
-
args: Prisma.FileTranslationDeleteManyArgs<ExtArgs>;
|
|
601
|
-
result: BatchPayload;
|
|
602
|
-
};
|
|
603
|
-
updateMany: {
|
|
604
|
-
args: Prisma.FileTranslationUpdateManyArgs<ExtArgs>;
|
|
605
|
-
result: BatchPayload;
|
|
606
|
-
};
|
|
607
|
-
updateManyAndReturn: {
|
|
608
|
-
args: Prisma.FileTranslationUpdateManyAndReturnArgs<ExtArgs>;
|
|
609
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FileTranslationPayload>[];
|
|
610
|
-
};
|
|
611
|
-
upsert: {
|
|
612
|
-
args: Prisma.FileTranslationUpsertArgs<ExtArgs>;
|
|
613
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FileTranslationPayload>;
|
|
614
|
-
};
|
|
615
|
-
aggregate: {
|
|
616
|
-
args: Prisma.FileTranslationAggregateArgs<ExtArgs>;
|
|
617
|
-
result: runtime.Types.Utils.Optional<Prisma.AggregateFileTranslation>;
|
|
618
|
-
};
|
|
619
|
-
groupBy: {
|
|
620
|
-
args: Prisma.FileTranslationGroupByArgs<ExtArgs>;
|
|
621
|
-
result: runtime.Types.Utils.Optional<Prisma.FileTranslationGroupByOutputType>[];
|
|
622
|
-
};
|
|
623
|
-
count: {
|
|
624
|
-
args: Prisma.FileTranslationCountArgs<ExtArgs>;
|
|
625
|
-
result: runtime.Types.Utils.Optional<Prisma.FileTranslationCountAggregateOutputType> | number;
|
|
626
|
-
};
|
|
627
|
-
};
|
|
628
|
-
};
|
|
629
|
-
Folder: {
|
|
630
|
-
payload: Prisma.$FolderPayload<ExtArgs>;
|
|
631
|
-
fields: Prisma.FolderFieldRefs;
|
|
632
|
-
operations: {
|
|
633
|
-
findUnique: {
|
|
634
|
-
args: Prisma.FolderFindUniqueArgs<ExtArgs>;
|
|
635
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FolderPayload> | null;
|
|
636
|
-
};
|
|
637
|
-
findUniqueOrThrow: {
|
|
638
|
-
args: Prisma.FolderFindUniqueOrThrowArgs<ExtArgs>;
|
|
639
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FolderPayload>;
|
|
640
|
-
};
|
|
641
|
-
findFirst: {
|
|
642
|
-
args: Prisma.FolderFindFirstArgs<ExtArgs>;
|
|
643
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FolderPayload> | null;
|
|
644
|
-
};
|
|
645
|
-
findFirstOrThrow: {
|
|
646
|
-
args: Prisma.FolderFindFirstOrThrowArgs<ExtArgs>;
|
|
647
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FolderPayload>;
|
|
648
|
-
};
|
|
649
|
-
findMany: {
|
|
650
|
-
args: Prisma.FolderFindManyArgs<ExtArgs>;
|
|
651
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FolderPayload>[];
|
|
652
|
-
};
|
|
653
|
-
create: {
|
|
654
|
-
args: Prisma.FolderCreateArgs<ExtArgs>;
|
|
655
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FolderPayload>;
|
|
656
|
-
};
|
|
657
|
-
createMany: {
|
|
658
|
-
args: Prisma.FolderCreateManyArgs<ExtArgs>;
|
|
659
|
-
result: BatchPayload;
|
|
660
|
-
};
|
|
661
|
-
createManyAndReturn: {
|
|
662
|
-
args: Prisma.FolderCreateManyAndReturnArgs<ExtArgs>;
|
|
663
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FolderPayload>[];
|
|
664
|
-
};
|
|
665
|
-
delete: {
|
|
666
|
-
args: Prisma.FolderDeleteArgs<ExtArgs>;
|
|
667
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FolderPayload>;
|
|
668
|
-
};
|
|
669
|
-
update: {
|
|
670
|
-
args: Prisma.FolderUpdateArgs<ExtArgs>;
|
|
671
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FolderPayload>;
|
|
672
|
-
};
|
|
673
|
-
deleteMany: {
|
|
674
|
-
args: Prisma.FolderDeleteManyArgs<ExtArgs>;
|
|
675
|
-
result: BatchPayload;
|
|
676
|
-
};
|
|
677
|
-
updateMany: {
|
|
678
|
-
args: Prisma.FolderUpdateManyArgs<ExtArgs>;
|
|
679
|
-
result: BatchPayload;
|
|
680
|
-
};
|
|
681
|
-
updateManyAndReturn: {
|
|
682
|
-
args: Prisma.FolderUpdateManyAndReturnArgs<ExtArgs>;
|
|
683
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FolderPayload>[];
|
|
684
|
-
};
|
|
685
|
-
upsert: {
|
|
686
|
-
args: Prisma.FolderUpsertArgs<ExtArgs>;
|
|
687
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$FolderPayload>;
|
|
688
|
-
};
|
|
689
|
-
aggregate: {
|
|
690
|
-
args: Prisma.FolderAggregateArgs<ExtArgs>;
|
|
691
|
-
result: runtime.Types.Utils.Optional<Prisma.AggregateFolder>;
|
|
692
|
-
};
|
|
693
|
-
groupBy: {
|
|
694
|
-
args: Prisma.FolderGroupByArgs<ExtArgs>;
|
|
695
|
-
result: runtime.Types.Utils.Optional<Prisma.FolderGroupByOutputType>[];
|
|
696
|
-
};
|
|
697
|
-
count: {
|
|
698
|
-
args: Prisma.FolderCountArgs<ExtArgs>;
|
|
699
|
-
result: runtime.Types.Utils.Optional<Prisma.FolderCountAggregateOutputType> | number;
|
|
700
|
-
};
|
|
701
|
-
};
|
|
702
|
-
};
|
|
703
|
-
SeoMetadata: {
|
|
704
|
-
payload: Prisma.$SeoMetadataPayload<ExtArgs>;
|
|
705
|
-
fields: Prisma.SeoMetadataFieldRefs;
|
|
706
|
-
operations: {
|
|
707
|
-
findUnique: {
|
|
708
|
-
args: Prisma.SeoMetadataFindUniqueArgs<ExtArgs>;
|
|
709
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoMetadataPayload> | null;
|
|
710
|
-
};
|
|
711
|
-
findUniqueOrThrow: {
|
|
712
|
-
args: Prisma.SeoMetadataFindUniqueOrThrowArgs<ExtArgs>;
|
|
713
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoMetadataPayload>;
|
|
714
|
-
};
|
|
715
|
-
findFirst: {
|
|
716
|
-
args: Prisma.SeoMetadataFindFirstArgs<ExtArgs>;
|
|
717
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoMetadataPayload> | null;
|
|
718
|
-
};
|
|
719
|
-
findFirstOrThrow: {
|
|
720
|
-
args: Prisma.SeoMetadataFindFirstOrThrowArgs<ExtArgs>;
|
|
721
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoMetadataPayload>;
|
|
722
|
-
};
|
|
723
|
-
findMany: {
|
|
724
|
-
args: Prisma.SeoMetadataFindManyArgs<ExtArgs>;
|
|
725
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoMetadataPayload>[];
|
|
726
|
-
};
|
|
727
|
-
create: {
|
|
728
|
-
args: Prisma.SeoMetadataCreateArgs<ExtArgs>;
|
|
729
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoMetadataPayload>;
|
|
730
|
-
};
|
|
731
|
-
createMany: {
|
|
732
|
-
args: Prisma.SeoMetadataCreateManyArgs<ExtArgs>;
|
|
733
|
-
result: BatchPayload;
|
|
734
|
-
};
|
|
735
|
-
createManyAndReturn: {
|
|
736
|
-
args: Prisma.SeoMetadataCreateManyAndReturnArgs<ExtArgs>;
|
|
737
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoMetadataPayload>[];
|
|
738
|
-
};
|
|
739
|
-
delete: {
|
|
740
|
-
args: Prisma.SeoMetadataDeleteArgs<ExtArgs>;
|
|
741
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoMetadataPayload>;
|
|
742
|
-
};
|
|
743
|
-
update: {
|
|
744
|
-
args: Prisma.SeoMetadataUpdateArgs<ExtArgs>;
|
|
745
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoMetadataPayload>;
|
|
746
|
-
};
|
|
747
|
-
deleteMany: {
|
|
748
|
-
args: Prisma.SeoMetadataDeleteManyArgs<ExtArgs>;
|
|
749
|
-
result: BatchPayload;
|
|
750
|
-
};
|
|
751
|
-
updateMany: {
|
|
752
|
-
args: Prisma.SeoMetadataUpdateManyArgs<ExtArgs>;
|
|
753
|
-
result: BatchPayload;
|
|
754
|
-
};
|
|
755
|
-
updateManyAndReturn: {
|
|
756
|
-
args: Prisma.SeoMetadataUpdateManyAndReturnArgs<ExtArgs>;
|
|
757
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoMetadataPayload>[];
|
|
758
|
-
};
|
|
759
|
-
upsert: {
|
|
760
|
-
args: Prisma.SeoMetadataUpsertArgs<ExtArgs>;
|
|
761
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoMetadataPayload>;
|
|
762
|
-
};
|
|
763
|
-
aggregate: {
|
|
764
|
-
args: Prisma.SeoMetadataAggregateArgs<ExtArgs>;
|
|
765
|
-
result: runtime.Types.Utils.Optional<Prisma.AggregateSeoMetadata>;
|
|
766
|
-
};
|
|
767
|
-
groupBy: {
|
|
768
|
-
args: Prisma.SeoMetadataGroupByArgs<ExtArgs>;
|
|
769
|
-
result: runtime.Types.Utils.Optional<Prisma.SeoMetadataGroupByOutputType>[];
|
|
770
|
-
};
|
|
771
|
-
count: {
|
|
772
|
-
args: Prisma.SeoMetadataCountArgs<ExtArgs>;
|
|
773
|
-
result: runtime.Types.Utils.Optional<Prisma.SeoMetadataCountAggregateOutputType> | number;
|
|
774
|
-
};
|
|
775
|
-
};
|
|
776
|
-
};
|
|
777
|
-
Post: {
|
|
778
|
-
payload: Prisma.$PostPayload<ExtArgs>;
|
|
779
|
-
fields: Prisma.PostFieldRefs;
|
|
780
|
-
operations: {
|
|
781
|
-
findUnique: {
|
|
782
|
-
args: Prisma.PostFindUniqueArgs<ExtArgs>;
|
|
783
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$PostPayload> | null;
|
|
784
|
-
};
|
|
785
|
-
findUniqueOrThrow: {
|
|
786
|
-
args: Prisma.PostFindUniqueOrThrowArgs<ExtArgs>;
|
|
787
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$PostPayload>;
|
|
788
|
-
};
|
|
789
|
-
findFirst: {
|
|
790
|
-
args: Prisma.PostFindFirstArgs<ExtArgs>;
|
|
791
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$PostPayload> | null;
|
|
792
|
-
};
|
|
793
|
-
findFirstOrThrow: {
|
|
794
|
-
args: Prisma.PostFindFirstOrThrowArgs<ExtArgs>;
|
|
795
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$PostPayload>;
|
|
796
|
-
};
|
|
797
|
-
findMany: {
|
|
798
|
-
args: Prisma.PostFindManyArgs<ExtArgs>;
|
|
799
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$PostPayload>[];
|
|
800
|
-
};
|
|
801
|
-
create: {
|
|
802
|
-
args: Prisma.PostCreateArgs<ExtArgs>;
|
|
803
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$PostPayload>;
|
|
804
|
-
};
|
|
805
|
-
createMany: {
|
|
806
|
-
args: Prisma.PostCreateManyArgs<ExtArgs>;
|
|
807
|
-
result: BatchPayload;
|
|
808
|
-
};
|
|
809
|
-
createManyAndReturn: {
|
|
810
|
-
args: Prisma.PostCreateManyAndReturnArgs<ExtArgs>;
|
|
811
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$PostPayload>[];
|
|
812
|
-
};
|
|
813
|
-
delete: {
|
|
814
|
-
args: Prisma.PostDeleteArgs<ExtArgs>;
|
|
815
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$PostPayload>;
|
|
816
|
-
};
|
|
817
|
-
update: {
|
|
818
|
-
args: Prisma.PostUpdateArgs<ExtArgs>;
|
|
819
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$PostPayload>;
|
|
820
|
-
};
|
|
821
|
-
deleteMany: {
|
|
822
|
-
args: Prisma.PostDeleteManyArgs<ExtArgs>;
|
|
823
|
-
result: BatchPayload;
|
|
824
|
-
};
|
|
825
|
-
updateMany: {
|
|
826
|
-
args: Prisma.PostUpdateManyArgs<ExtArgs>;
|
|
827
|
-
result: BatchPayload;
|
|
828
|
-
};
|
|
829
|
-
updateManyAndReturn: {
|
|
830
|
-
args: Prisma.PostUpdateManyAndReturnArgs<ExtArgs>;
|
|
831
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$PostPayload>[];
|
|
832
|
-
};
|
|
833
|
-
upsert: {
|
|
834
|
-
args: Prisma.PostUpsertArgs<ExtArgs>;
|
|
835
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$PostPayload>;
|
|
836
|
-
};
|
|
837
|
-
aggregate: {
|
|
838
|
-
args: Prisma.PostAggregateArgs<ExtArgs>;
|
|
839
|
-
result: runtime.Types.Utils.Optional<Prisma.AggregatePost>;
|
|
840
|
-
};
|
|
841
|
-
groupBy: {
|
|
842
|
-
args: Prisma.PostGroupByArgs<ExtArgs>;
|
|
843
|
-
result: runtime.Types.Utils.Optional<Prisma.PostGroupByOutputType>[];
|
|
844
|
-
};
|
|
845
|
-
count: {
|
|
846
|
-
args: Prisma.PostCountArgs<ExtArgs>;
|
|
847
|
-
result: runtime.Types.Utils.Optional<Prisma.PostCountAggregateOutputType> | number;
|
|
848
|
-
};
|
|
849
|
-
};
|
|
850
|
-
};
|
|
851
|
-
PostTranslation: {
|
|
852
|
-
payload: Prisma.$PostTranslationPayload<ExtArgs>;
|
|
853
|
-
fields: Prisma.PostTranslationFieldRefs;
|
|
854
|
-
operations: {
|
|
855
|
-
findUnique: {
|
|
856
|
-
args: Prisma.PostTranslationFindUniqueArgs<ExtArgs>;
|
|
857
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$PostTranslationPayload> | null;
|
|
858
|
-
};
|
|
859
|
-
findUniqueOrThrow: {
|
|
860
|
-
args: Prisma.PostTranslationFindUniqueOrThrowArgs<ExtArgs>;
|
|
861
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$PostTranslationPayload>;
|
|
862
|
-
};
|
|
863
|
-
findFirst: {
|
|
864
|
-
args: Prisma.PostTranslationFindFirstArgs<ExtArgs>;
|
|
865
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$PostTranslationPayload> | null;
|
|
866
|
-
};
|
|
867
|
-
findFirstOrThrow: {
|
|
868
|
-
args: Prisma.PostTranslationFindFirstOrThrowArgs<ExtArgs>;
|
|
869
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$PostTranslationPayload>;
|
|
870
|
-
};
|
|
871
|
-
findMany: {
|
|
872
|
-
args: Prisma.PostTranslationFindManyArgs<ExtArgs>;
|
|
873
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$PostTranslationPayload>[];
|
|
874
|
-
};
|
|
875
|
-
create: {
|
|
876
|
-
args: Prisma.PostTranslationCreateArgs<ExtArgs>;
|
|
877
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$PostTranslationPayload>;
|
|
878
|
-
};
|
|
879
|
-
createMany: {
|
|
880
|
-
args: Prisma.PostTranslationCreateManyArgs<ExtArgs>;
|
|
881
|
-
result: BatchPayload;
|
|
882
|
-
};
|
|
883
|
-
createManyAndReturn: {
|
|
884
|
-
args: Prisma.PostTranslationCreateManyAndReturnArgs<ExtArgs>;
|
|
885
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$PostTranslationPayload>[];
|
|
886
|
-
};
|
|
887
|
-
delete: {
|
|
888
|
-
args: Prisma.PostTranslationDeleteArgs<ExtArgs>;
|
|
889
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$PostTranslationPayload>;
|
|
890
|
-
};
|
|
891
|
-
update: {
|
|
892
|
-
args: Prisma.PostTranslationUpdateArgs<ExtArgs>;
|
|
893
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$PostTranslationPayload>;
|
|
894
|
-
};
|
|
895
|
-
deleteMany: {
|
|
896
|
-
args: Prisma.PostTranslationDeleteManyArgs<ExtArgs>;
|
|
897
|
-
result: BatchPayload;
|
|
898
|
-
};
|
|
899
|
-
updateMany: {
|
|
900
|
-
args: Prisma.PostTranslationUpdateManyArgs<ExtArgs>;
|
|
901
|
-
result: BatchPayload;
|
|
902
|
-
};
|
|
903
|
-
updateManyAndReturn: {
|
|
904
|
-
args: Prisma.PostTranslationUpdateManyAndReturnArgs<ExtArgs>;
|
|
905
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$PostTranslationPayload>[];
|
|
906
|
-
};
|
|
907
|
-
upsert: {
|
|
908
|
-
args: Prisma.PostTranslationUpsertArgs<ExtArgs>;
|
|
909
|
-
result: runtime.Types.Utils.PayloadToResult<Prisma.$PostTranslationPayload>;
|
|
910
|
-
};
|
|
911
|
-
aggregate: {
|
|
912
|
-
args: Prisma.PostTranslationAggregateArgs<ExtArgs>;
|
|
913
|
-
result: runtime.Types.Utils.Optional<Prisma.AggregatePostTranslation>;
|
|
914
|
-
};
|
|
915
|
-
groupBy: {
|
|
916
|
-
args: Prisma.PostTranslationGroupByArgs<ExtArgs>;
|
|
917
|
-
result: runtime.Types.Utils.Optional<Prisma.PostTranslationGroupByOutputType>[];
|
|
918
|
-
};
|
|
919
|
-
count: {
|
|
920
|
-
args: Prisma.PostTranslationCountArgs<ExtArgs>;
|
|
921
|
-
result: runtime.Types.Utils.Optional<Prisma.PostTranslationCountAggregateOutputType> | number;
|
|
922
|
-
};
|
|
923
|
-
};
|
|
924
|
-
};
|
|
925
|
-
};
|
|
926
|
-
} & {
|
|
927
|
-
other: {
|
|
928
|
-
payload: any;
|
|
929
|
-
operations: {
|
|
930
|
-
$executeRaw: {
|
|
931
|
-
args: [query: TemplateStringsArray | Sql, ...values: any[]];
|
|
932
|
-
result: any;
|
|
933
|
-
};
|
|
934
|
-
$executeRawUnsafe: {
|
|
935
|
-
args: [query: string, ...values: any[]];
|
|
936
|
-
result: any;
|
|
937
|
-
};
|
|
938
|
-
$queryRaw: {
|
|
939
|
-
args: [query: TemplateStringsArray | Sql, ...values: any[]];
|
|
940
|
-
result: any;
|
|
941
|
-
};
|
|
942
|
-
$queryRawUnsafe: {
|
|
943
|
-
args: [query: string, ...values: any[]];
|
|
944
|
-
result: any;
|
|
945
|
-
};
|
|
946
|
-
};
|
|
947
|
-
};
|
|
948
|
-
};
|
|
949
|
-
/**
|
|
950
|
-
* Enums
|
|
951
|
-
*/
|
|
952
|
-
export declare const TransactionIsolationLevel: {
|
|
953
|
-
readonly ReadUncommitted: "ReadUncommitted";
|
|
954
|
-
readonly ReadCommitted: "ReadCommitted";
|
|
955
|
-
readonly RepeatableRead: "RepeatableRead";
|
|
956
|
-
readonly Serializable: "Serializable";
|
|
957
|
-
};
|
|
958
|
-
export type TransactionIsolationLevel = (typeof TransactionIsolationLevel)[keyof typeof TransactionIsolationLevel];
|
|
959
|
-
export declare const AdminScalarFieldEnum: {
|
|
960
|
-
readonly id: "id";
|
|
961
|
-
readonly role: "role";
|
|
962
|
-
readonly email: "email";
|
|
963
|
-
readonly passwordHash: "passwordHash";
|
|
964
|
-
readonly socialLinks: "socialLinks";
|
|
965
|
-
readonly avatarImageId: "avatarImageId";
|
|
966
|
-
readonly createdAt: "createdAt";
|
|
967
|
-
readonly updatedAt: "updatedAt";
|
|
968
|
-
readonly emailVerifiedAt: "emailVerifiedAt";
|
|
969
|
-
};
|
|
970
|
-
export type AdminScalarFieldEnum = (typeof AdminScalarFieldEnum)[keyof typeof AdminScalarFieldEnum];
|
|
971
|
-
export declare const AdminTranslationScalarFieldEnum: {
|
|
972
|
-
readonly id: "id";
|
|
973
|
-
readonly locale: "locale";
|
|
974
|
-
readonly name: "name";
|
|
975
|
-
readonly authorName: "authorName";
|
|
976
|
-
readonly description: "description";
|
|
977
|
-
readonly jobTitle: "jobTitle";
|
|
978
|
-
readonly url: "url";
|
|
979
|
-
readonly worksFor: "worksFor";
|
|
980
|
-
readonly knowsAbout: "knowsAbout";
|
|
981
|
-
readonly homeLocation: "homeLocation";
|
|
982
|
-
readonly nationality: "nationality";
|
|
983
|
-
readonly adminId: "adminId";
|
|
984
|
-
readonly createdAt: "createdAt";
|
|
985
|
-
readonly updatedAt: "updatedAt";
|
|
986
|
-
};
|
|
987
|
-
export type AdminTranslationScalarFieldEnum = (typeof AdminTranslationScalarFieldEnum)[keyof typeof AdminTranslationScalarFieldEnum];
|
|
988
|
-
export declare const AdminRefreshTokenScalarFieldEnum: {
|
|
989
|
-
readonly id: "id";
|
|
990
|
-
readonly tokenHash: "tokenHash";
|
|
991
|
-
readonly email: "email";
|
|
992
|
-
readonly ip: "ip";
|
|
993
|
-
readonly deviceInfo: "deviceInfo";
|
|
994
|
-
readonly adminId: "adminId";
|
|
995
|
-
readonly createdAt: "createdAt";
|
|
996
|
-
readonly expiresAt: "expiresAt";
|
|
997
|
-
};
|
|
998
|
-
export type AdminRefreshTokenScalarFieldEnum = (typeof AdminRefreshTokenScalarFieldEnum)[keyof typeof AdminRefreshTokenScalarFieldEnum];
|
|
999
|
-
export declare const FileScalarFieldEnum: {
|
|
1000
|
-
readonly id: "id";
|
|
1001
|
-
readonly key: "key";
|
|
1002
|
-
readonly checksum: "checksum";
|
|
1003
|
-
readonly originalName: "originalName";
|
|
1004
|
-
readonly size: "size";
|
|
1005
|
-
readonly extension: "extension";
|
|
1006
|
-
readonly mimeType: "mimeType";
|
|
1007
|
-
readonly type: "type";
|
|
1008
|
-
readonly width: "width";
|
|
1009
|
-
readonly height: "height";
|
|
1010
|
-
readonly duration: "duration";
|
|
1011
|
-
readonly isLocked: "isLocked";
|
|
1012
|
-
readonly folderId: "folderId";
|
|
1013
|
-
readonly createdAt: "createdAt";
|
|
1014
|
-
readonly updatedAt: "updatedAt";
|
|
1015
|
-
readonly deletedAt: "deletedAt";
|
|
1016
|
-
};
|
|
1017
|
-
export type FileScalarFieldEnum = (typeof FileScalarFieldEnum)[keyof typeof FileScalarFieldEnum];
|
|
1018
|
-
export declare const FileTranslationScalarFieldEnum: {
|
|
1019
|
-
readonly id: "id";
|
|
1020
|
-
readonly locale: "locale";
|
|
1021
|
-
readonly name: "name";
|
|
1022
|
-
readonly alt: "alt";
|
|
1023
|
-
readonly fileId: "fileId";
|
|
1024
|
-
readonly createdAt: "createdAt";
|
|
1025
|
-
readonly updatedAt: "updatedAt";
|
|
1026
|
-
};
|
|
1027
|
-
export type FileTranslationScalarFieldEnum = (typeof FileTranslationScalarFieldEnum)[keyof typeof FileTranslationScalarFieldEnum];
|
|
1028
|
-
export declare const FolderScalarFieldEnum: {
|
|
1029
|
-
readonly id: "id";
|
|
1030
|
-
readonly key: "key";
|
|
1031
|
-
readonly name: "name";
|
|
1032
|
-
readonly isLocked: "isLocked";
|
|
1033
|
-
readonly parentFolderId: "parentFolderId";
|
|
1034
|
-
readonly createdAt: "createdAt";
|
|
1035
|
-
readonly updatedAt: "updatedAt";
|
|
1036
|
-
};
|
|
1037
|
-
export type FolderScalarFieldEnum = (typeof FolderScalarFieldEnum)[keyof typeof FolderScalarFieldEnum];
|
|
1038
|
-
export declare const SeoMetadataScalarFieldEnum: {
|
|
1039
|
-
readonly id: "id";
|
|
1040
|
-
readonly locale: "locale";
|
|
1041
|
-
readonly title: "title";
|
|
1042
|
-
readonly description: "description";
|
|
1043
|
-
readonly author: "author";
|
|
1044
|
-
readonly canonical: "canonical";
|
|
1045
|
-
readonly alternate: "alternate";
|
|
1046
|
-
readonly robots: "robots";
|
|
1047
|
-
readonly ogTitle: "ogTitle";
|
|
1048
|
-
readonly ogDescription: "ogDescription";
|
|
1049
|
-
readonly ogUrl: "ogUrl";
|
|
1050
|
-
readonly ogType: "ogType";
|
|
1051
|
-
readonly ogSiteName: "ogSiteName";
|
|
1052
|
-
readonly ogImage: "ogImage";
|
|
1053
|
-
readonly ogImageAlt: "ogImageAlt";
|
|
1054
|
-
readonly ogImageType: "ogImageType";
|
|
1055
|
-
readonly ogImageWidth: "ogImageWidth";
|
|
1056
|
-
readonly ogImageHeight: "ogImageHeight";
|
|
1057
|
-
readonly ogLocale: "ogLocale";
|
|
1058
|
-
readonly ogLocaleAlternate: "ogLocaleAlternate";
|
|
1059
|
-
readonly ogArticlePublishedTime: "ogArticlePublishedTime";
|
|
1060
|
-
readonly ogArticleModifiedTime: "ogArticleModifiedTime";
|
|
1061
|
-
readonly ogArticleAuthor: "ogArticleAuthor";
|
|
1062
|
-
readonly ogArticleSection: "ogArticleSection";
|
|
1063
|
-
readonly ogArticleTag: "ogArticleTag";
|
|
1064
|
-
readonly twitterCard: "twitterCard";
|
|
1065
|
-
readonly twitterSite: "twitterSite";
|
|
1066
|
-
readonly twitterCreator: "twitterCreator";
|
|
1067
|
-
readonly jsonLd: "jsonLd";
|
|
1068
|
-
readonly postId: "postId";
|
|
1069
|
-
readonly createdAt: "createdAt";
|
|
1070
|
-
readonly updatedAt: "updatedAt";
|
|
1071
|
-
};
|
|
1072
|
-
export type SeoMetadataScalarFieldEnum = (typeof SeoMetadataScalarFieldEnum)[keyof typeof SeoMetadataScalarFieldEnum];
|
|
1073
|
-
export declare const PostScalarFieldEnum: {
|
|
1074
|
-
readonly id: "id";
|
|
1075
|
-
readonly type: "type";
|
|
1076
|
-
readonly isLocked: "isLocked";
|
|
1077
|
-
readonly isActive: "isActive";
|
|
1078
|
-
readonly isIndexActive: "isIndexActive";
|
|
1079
|
-
readonly index: "index";
|
|
1080
|
-
readonly isSlugActive: "isSlugActive";
|
|
1081
|
-
readonly slug: "slug";
|
|
1082
|
-
readonly isFeatured: "isFeatured";
|
|
1083
|
-
readonly isShownOnHome: "isShownOnHome";
|
|
1084
|
-
readonly authorId: "authorId";
|
|
1085
|
-
readonly topicId: "topicId";
|
|
1086
|
-
readonly coverImageId: "coverImageId";
|
|
1087
|
-
readonly createdAt: "createdAt";
|
|
1088
|
-
readonly updatedAt: "updatedAt";
|
|
1089
|
-
readonly deletedAt: "deletedAt";
|
|
1090
|
-
readonly state1: "state1";
|
|
1091
|
-
readonly state2: "state2";
|
|
1092
|
-
readonly state3: "state3";
|
|
1093
|
-
readonly state4: "state4";
|
|
1094
|
-
readonly state5: "state5";
|
|
1095
|
-
readonly state6: "state6";
|
|
1096
|
-
readonly state7: "state7";
|
|
1097
|
-
readonly state8: "state8";
|
|
1098
|
-
readonly state9: "state9";
|
|
1099
|
-
readonly state10: "state10";
|
|
1100
|
-
readonly image1Id: "image1Id";
|
|
1101
|
-
readonly image2Id: "image2Id";
|
|
1102
|
-
readonly image3Id: "image3Id";
|
|
1103
|
-
readonly image4Id: "image4Id";
|
|
1104
|
-
readonly text1: "text1";
|
|
1105
|
-
readonly text2: "text2";
|
|
1106
|
-
readonly text3: "text3";
|
|
1107
|
-
readonly text4: "text4";
|
|
1108
|
-
readonly text5: "text5";
|
|
1109
|
-
readonly text6: "text6";
|
|
1110
|
-
readonly text7: "text7";
|
|
1111
|
-
readonly text8: "text8";
|
|
1112
|
-
readonly text9: "text9";
|
|
1113
|
-
readonly text10: "text10";
|
|
1114
|
-
readonly data1: "data1";
|
|
1115
|
-
readonly data2: "data2";
|
|
1116
|
-
readonly data3: "data3";
|
|
1117
|
-
readonly data4: "data4";
|
|
1118
|
-
};
|
|
1119
|
-
export type PostScalarFieldEnum = (typeof PostScalarFieldEnum)[keyof typeof PostScalarFieldEnum];
|
|
1120
|
-
export declare const PostTranslationScalarFieldEnum: {
|
|
1121
|
-
readonly id: "id";
|
|
1122
|
-
readonly locale: "locale";
|
|
1123
|
-
readonly title: "title";
|
|
1124
|
-
readonly subtitle: "subtitle";
|
|
1125
|
-
readonly summary: "summary";
|
|
1126
|
-
readonly description: "description";
|
|
1127
|
-
readonly content: "content";
|
|
1128
|
-
readonly externalLinks: "externalLinks";
|
|
1129
|
-
readonly faq: "faq";
|
|
1130
|
-
readonly toc: "toc";
|
|
1131
|
-
readonly readTime: "readTime";
|
|
1132
|
-
readonly wordCount: "wordCount";
|
|
1133
|
-
readonly postId: "postId";
|
|
1134
|
-
readonly createdAt: "createdAt";
|
|
1135
|
-
readonly updatedAt: "updatedAt";
|
|
1136
|
-
readonly text1: "text1";
|
|
1137
|
-
readonly text2: "text2";
|
|
1138
|
-
readonly text3: "text3";
|
|
1139
|
-
readonly text4: "text4";
|
|
1140
|
-
readonly text5: "text5";
|
|
1141
|
-
readonly text6: "text6";
|
|
1142
|
-
readonly text7: "text7";
|
|
1143
|
-
readonly text8: "text8";
|
|
1144
|
-
readonly text9: "text9";
|
|
1145
|
-
readonly text10: "text10";
|
|
1146
|
-
readonly data1: "data1";
|
|
1147
|
-
readonly data2: "data2";
|
|
1148
|
-
readonly data3: "data3";
|
|
1149
|
-
readonly data4: "data4";
|
|
1150
|
-
};
|
|
1151
|
-
export type PostTranslationScalarFieldEnum = (typeof PostTranslationScalarFieldEnum)[keyof typeof PostTranslationScalarFieldEnum];
|
|
1152
|
-
export declare const SortOrder: {
|
|
1153
|
-
readonly asc: "asc";
|
|
1154
|
-
readonly desc: "desc";
|
|
1155
|
-
};
|
|
1156
|
-
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
1157
|
-
export declare const NullableJsonNullValueInput: {
|
|
1158
|
-
readonly DbNull: runtime.DbNullClass;
|
|
1159
|
-
readonly JsonNull: runtime.JsonNullClass;
|
|
1160
|
-
};
|
|
1161
|
-
export type NullableJsonNullValueInput = (typeof NullableJsonNullValueInput)[keyof typeof NullableJsonNullValueInput];
|
|
1162
|
-
export declare const QueryMode: {
|
|
1163
|
-
readonly default: "default";
|
|
1164
|
-
readonly insensitive: "insensitive";
|
|
1165
|
-
};
|
|
1166
|
-
export type QueryMode = (typeof QueryMode)[keyof typeof QueryMode];
|
|
1167
|
-
export declare const NullsOrder: {
|
|
1168
|
-
readonly first: "first";
|
|
1169
|
-
readonly last: "last";
|
|
1170
|
-
};
|
|
1171
|
-
export type NullsOrder = (typeof NullsOrder)[keyof typeof NullsOrder];
|
|
1172
|
-
export declare const JsonNullValueFilter: {
|
|
1173
|
-
readonly DbNull: runtime.DbNullClass;
|
|
1174
|
-
readonly JsonNull: runtime.JsonNullClass;
|
|
1175
|
-
readonly AnyNull: runtime.AnyNullClass;
|
|
1176
|
-
};
|
|
1177
|
-
export type JsonNullValueFilter = (typeof JsonNullValueFilter)[keyof typeof JsonNullValueFilter];
|
|
1178
|
-
/**
|
|
1179
|
-
* Field references
|
|
1180
|
-
*/
|
|
1181
|
-
/**
|
|
1182
|
-
* Reference to a field of type 'String'
|
|
1183
|
-
*/
|
|
1184
|
-
export type StringFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'String'>;
|
|
1185
|
-
/**
|
|
1186
|
-
* Reference to a field of type 'String[]'
|
|
1187
|
-
*/
|
|
1188
|
-
export type ListStringFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'String[]'>;
|
|
1189
|
-
/**
|
|
1190
|
-
* Reference to a field of type 'AdminRole'
|
|
1191
|
-
*/
|
|
1192
|
-
export type EnumAdminRoleFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'AdminRole'>;
|
|
1193
|
-
/**
|
|
1194
|
-
* Reference to a field of type 'AdminRole[]'
|
|
1195
|
-
*/
|
|
1196
|
-
export type ListEnumAdminRoleFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'AdminRole[]'>;
|
|
1197
|
-
/**
|
|
1198
|
-
* Reference to a field of type 'DateTime'
|
|
1199
|
-
*/
|
|
1200
|
-
export type DateTimeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'DateTime'>;
|
|
1201
|
-
/**
|
|
1202
|
-
* Reference to a field of type 'DateTime[]'
|
|
1203
|
-
*/
|
|
1204
|
-
export type ListDateTimeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'DateTime[]'>;
|
|
1205
|
-
/**
|
|
1206
|
-
* Reference to a field of type 'Json'
|
|
1207
|
-
*/
|
|
1208
|
-
export type JsonFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Json'>;
|
|
1209
|
-
/**
|
|
1210
|
-
* Reference to a field of type 'QueryMode'
|
|
1211
|
-
*/
|
|
1212
|
-
export type EnumQueryModeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'QueryMode'>;
|
|
1213
|
-
/**
|
|
1214
|
-
* Reference to a field of type 'Int'
|
|
1215
|
-
*/
|
|
1216
|
-
export type IntFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Int'>;
|
|
1217
|
-
/**
|
|
1218
|
-
* Reference to a field of type 'Int[]'
|
|
1219
|
-
*/
|
|
1220
|
-
export type ListIntFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Int[]'>;
|
|
1221
|
-
/**
|
|
1222
|
-
* Reference to a field of type 'FileType'
|
|
1223
|
-
*/
|
|
1224
|
-
export type EnumFileTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'FileType'>;
|
|
1225
|
-
/**
|
|
1226
|
-
* Reference to a field of type 'FileType[]'
|
|
1227
|
-
*/
|
|
1228
|
-
export type ListEnumFileTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'FileType[]'>;
|
|
1229
|
-
/**
|
|
1230
|
-
* Reference to a field of type 'Float'
|
|
1231
|
-
*/
|
|
1232
|
-
export type FloatFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Float'>;
|
|
1233
|
-
/**
|
|
1234
|
-
* Reference to a field of type 'Float[]'
|
|
1235
|
-
*/
|
|
1236
|
-
export type ListFloatFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Float[]'>;
|
|
1237
|
-
/**
|
|
1238
|
-
* Reference to a field of type 'Boolean'
|
|
1239
|
-
*/
|
|
1240
|
-
export type BooleanFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Boolean'>;
|
|
1241
|
-
/**
|
|
1242
|
-
* Reference to a field of type 'Json[]'
|
|
1243
|
-
*/
|
|
1244
|
-
export type ListJsonFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Json[]'>;
|
|
1245
|
-
/**
|
|
1246
|
-
* Reference to a field of type 'PostType'
|
|
1247
|
-
*/
|
|
1248
|
-
export type EnumPostTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'PostType'>;
|
|
1249
|
-
/**
|
|
1250
|
-
* Reference to a field of type 'PostType[]'
|
|
1251
|
-
*/
|
|
1252
|
-
export type ListEnumPostTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'PostType[]'>;
|
|
1253
|
-
/**
|
|
1254
|
-
* Batch Payload for updateMany & deleteMany & createMany
|
|
1255
|
-
*/
|
|
1256
|
-
export type BatchPayload = {
|
|
1257
|
-
count: number;
|
|
1258
|
-
};
|
|
1259
|
-
export declare const defineExtension: runtime.Types.Extensions.ExtendsHook<"define", TypeMapCb, runtime.Types.Extensions.DefaultArgs>;
|
|
1260
|
-
export type DefaultPrismaClient = PrismaClient;
|
|
1261
|
-
export type ErrorFormat = 'pretty' | 'colorless' | 'minimal';
|
|
1262
|
-
export type PrismaClientOptions = ({
|
|
1263
|
-
/**
|
|
1264
|
-
* Instance of a Driver Adapter, e.g., like one provided by `@prisma/adapter-pg`.
|
|
1265
|
-
*/
|
|
1266
|
-
adapter: runtime.SqlDriverAdapterFactory;
|
|
1267
|
-
accelerateUrl?: never;
|
|
1268
|
-
} | {
|
|
1269
|
-
/**
|
|
1270
|
-
* Prisma Accelerate URL allowing the client to connect through Accelerate instead of a direct database.
|
|
1271
|
-
*/
|
|
1272
|
-
accelerateUrl: string;
|
|
1273
|
-
adapter?: never;
|
|
1274
|
-
}) & {
|
|
1275
|
-
/**
|
|
1276
|
-
* @default "colorless"
|
|
1277
|
-
*/
|
|
1278
|
-
errorFormat?: ErrorFormat;
|
|
1279
|
-
/**
|
|
1280
|
-
* @example
|
|
1281
|
-
* ```
|
|
1282
|
-
* // Shorthand for `emit: 'stdout'`
|
|
1283
|
-
* log: ['query', 'info', 'warn', 'error']
|
|
1284
|
-
*
|
|
1285
|
-
* // Emit as events only
|
|
1286
|
-
* log: [
|
|
1287
|
-
* { emit: 'event', level: 'query' },
|
|
1288
|
-
* { emit: 'event', level: 'info' },
|
|
1289
|
-
* { emit: 'event', level: 'warn' }
|
|
1290
|
-
* { emit: 'event', level: 'error' }
|
|
1291
|
-
* ]
|
|
1292
|
-
*
|
|
1293
|
-
* / Emit as events and log to stdout
|
|
1294
|
-
* og: [
|
|
1295
|
-
* { emit: 'stdout', level: 'query' },
|
|
1296
|
-
* { emit: 'stdout', level: 'info' },
|
|
1297
|
-
* { emit: 'stdout', level: 'warn' }
|
|
1298
|
-
* { emit: 'stdout', level: 'error' }
|
|
1299
|
-
*
|
|
1300
|
-
* ```
|
|
1301
|
-
* Read more in our [docs](https://pris.ly/d/logging).
|
|
1302
|
-
*/
|
|
1303
|
-
log?: (LogLevel | LogDefinition)[];
|
|
1304
|
-
/**
|
|
1305
|
-
* The default values for transactionOptions
|
|
1306
|
-
* maxWait ?= 2000
|
|
1307
|
-
* timeout ?= 5000
|
|
1308
|
-
*/
|
|
1309
|
-
transactionOptions?: {
|
|
1310
|
-
maxWait?: number;
|
|
1311
|
-
timeout?: number;
|
|
1312
|
-
isolationLevel?: TransactionIsolationLevel;
|
|
1313
|
-
};
|
|
1314
|
-
/**
|
|
1315
|
-
* Global configuration for omitting model fields by default.
|
|
1316
|
-
*
|
|
1317
|
-
* @example
|
|
1318
|
-
* ```
|
|
1319
|
-
* const prisma = new PrismaClient({
|
|
1320
|
-
* omit: {
|
|
1321
|
-
* user: {
|
|
1322
|
-
* password: true
|
|
1323
|
-
* }
|
|
1324
|
-
* }
|
|
1325
|
-
* })
|
|
1326
|
-
* ```
|
|
1327
|
-
*/
|
|
1328
|
-
omit?: GlobalOmitConfig;
|
|
1329
|
-
/**
|
|
1330
|
-
* SQL commenter plugins that add metadata to SQL queries as comments.
|
|
1331
|
-
* Comments follow the sqlcommenter format: https://google.github.io/sqlcommenter/
|
|
1332
|
-
*
|
|
1333
|
-
* @example
|
|
1334
|
-
* ```
|
|
1335
|
-
* const prisma = new PrismaClient({
|
|
1336
|
-
* adapter,
|
|
1337
|
-
* comments: [
|
|
1338
|
-
* traceContext(),
|
|
1339
|
-
* queryInsights(),
|
|
1340
|
-
* ],
|
|
1341
|
-
* })
|
|
1342
|
-
* ```
|
|
1343
|
-
*/
|
|
1344
|
-
comments?: runtime.SqlCommenterPlugin[];
|
|
1345
|
-
};
|
|
1346
|
-
export type GlobalOmitConfig = {
|
|
1347
|
-
admin?: Prisma.AdminOmit;
|
|
1348
|
-
adminTranslation?: Prisma.AdminTranslationOmit;
|
|
1349
|
-
adminRefreshToken?: Prisma.AdminRefreshTokenOmit;
|
|
1350
|
-
file?: Prisma.FileOmit;
|
|
1351
|
-
fileTranslation?: Prisma.FileTranslationOmit;
|
|
1352
|
-
folder?: Prisma.FolderOmit;
|
|
1353
|
-
seoMetadata?: Prisma.SeoMetadataOmit;
|
|
1354
|
-
post?: Prisma.PostOmit;
|
|
1355
|
-
postTranslation?: Prisma.PostTranslationOmit;
|
|
1356
|
-
};
|
|
1357
|
-
export type LogLevel = 'info' | 'query' | 'warn' | 'error';
|
|
1358
|
-
export type LogDefinition = {
|
|
1359
|
-
level: LogLevel;
|
|
1360
|
-
emit: 'stdout' | 'event';
|
|
1361
|
-
};
|
|
1362
|
-
export type CheckIsLogLevel<T> = T extends LogLevel ? T : never;
|
|
1363
|
-
export type GetLogType<T> = CheckIsLogLevel<T extends LogDefinition ? T['level'] : T>;
|
|
1364
|
-
export type GetEvents<T extends any[]> = T extends Array<LogLevel | LogDefinition> ? GetLogType<T[number]> : never;
|
|
1365
|
-
export type QueryEvent = {
|
|
1366
|
-
timestamp: Date;
|
|
1367
|
-
query: string;
|
|
1368
|
-
params: string;
|
|
1369
|
-
duration: number;
|
|
1370
|
-
target: string;
|
|
1371
|
-
};
|
|
1372
|
-
export type LogEvent = {
|
|
1373
|
-
timestamp: Date;
|
|
1374
|
-
message: string;
|
|
1375
|
-
target: string;
|
|
1376
|
-
};
|
|
1377
|
-
export type PrismaAction = 'findUnique' | 'findUniqueOrThrow' | 'findMany' | 'findFirst' | 'findFirstOrThrow' | 'create' | 'createMany' | 'createManyAndReturn' | 'update' | 'updateMany' | 'updateManyAndReturn' | 'upsert' | 'delete' | 'deleteMany' | 'executeRaw' | 'queryRaw' | 'aggregate' | 'count' | 'runCommandRaw' | 'findRaw' | 'groupBy';
|
|
1378
|
-
/**
|
|
1379
|
-
* `PrismaClient` proxy available in interactive transactions.
|
|
1380
|
-
*/
|
|
1381
|
-
export type TransactionClient = Omit<DefaultPrismaClient, runtime.ITXClientDenyList>;
|
|
1382
|
-
//# sourceMappingURL=prismaNamespace.d.ts.map
|