@actuate-media/cms-core 0.90.1 → 0.91.1

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.
Files changed (94) hide show
  1. package/CHANGELOG.md +79 -0
  2. package/dist/actions.d.ts +31 -1
  3. package/dist/actions.d.ts.map +1 -1
  4. package/dist/actions.js +76 -21
  5. package/dist/actions.js.map +1 -1
  6. package/dist/api/route-helpers.d.ts +5 -1
  7. package/dist/api/route-helpers.d.ts.map +1 -1
  8. package/dist/api/route-helpers.js +13 -2
  9. package/dist/api/route-helpers.js.map +1 -1
  10. package/dist/api/routes/auth.d.ts.map +1 -1
  11. package/dist/api/routes/auth.js +13 -7
  12. package/dist/api/routes/auth.js.map +1 -1
  13. package/dist/api/routes/documents.d.ts.map +1 -1
  14. package/dist/api/routes/documents.js +4 -1
  15. package/dist/api/routes/documents.js.map +1 -1
  16. package/dist/api/routes/media.d.ts.map +1 -1
  17. package/dist/api/routes/media.js +10 -0
  18. package/dist/api/routes/media.js.map +1 -1
  19. package/dist/api/routes/url-resolution.d.ts.map +1 -1
  20. package/dist/api/routes/url-resolution.js +4 -1
  21. package/dist/api/routes/url-resolution.js.map +1 -1
  22. package/dist/config/index.d.ts +16 -0
  23. package/dist/config/index.d.ts.map +1 -1
  24. package/dist/config/index.js +59 -2
  25. package/dist/config/index.js.map +1 -1
  26. package/dist/config/runtime.d.ts +8 -0
  27. package/dist/config/runtime.d.ts.map +1 -1
  28. package/dist/config/runtime.js.map +1 -1
  29. package/dist/config/types.d.ts +35 -4
  30. package/dist/config/types.d.ts.map +1 -1
  31. package/dist/index.d.ts +3 -1
  32. package/dist/index.d.ts.map +1 -1
  33. package/dist/index.js +1 -0
  34. package/dist/index.js.map +1 -1
  35. package/dist/media/usage-sync.d.ts +37 -0
  36. package/dist/media/usage-sync.d.ts.map +1 -0
  37. package/dist/media/usage-sync.js +234 -0
  38. package/dist/media/usage-sync.js.map +1 -0
  39. package/dist/realtime/comments.d.ts +1 -1
  40. package/dist/realtime/comments.js +1 -1
  41. package/dist/realtime/notifications.d.ts +1 -1
  42. package/dist/realtime/notifications.js +1 -1
  43. package/dist/realtime/persistence.d.ts +1 -1
  44. package/dist/search/index.d.ts.map +1 -1
  45. package/dist/search/index.js +58 -35
  46. package/dist/search/index.js.map +1 -1
  47. package/dist/security/client-ip.d.ts.map +1 -1
  48. package/dist/security/client-ip.js +17 -0
  49. package/dist/security/client-ip.js.map +1 -1
  50. package/generated/browser.ts +229 -0
  51. package/generated/client.ts +253 -0
  52. package/generated/commonInputTypes.ts +1024 -0
  53. package/generated/enums.ts +211 -0
  54. package/generated/internal/class.ts +547 -0
  55. package/generated/internal/prismaNamespace.ts +4596 -0
  56. package/generated/internal/prismaNamespaceBrowser.ts +1188 -0
  57. package/generated/models/AiCrawlerHit.ts +1275 -0
  58. package/generated/models/ApiKey.ts +1559 -0
  59. package/generated/models/ApiRequestMetric.ts +1390 -0
  60. package/generated/models/AuditLog.ts +1215 -0
  61. package/generated/models/BackupRecord.ts +1259 -0
  62. package/generated/models/ContentIssue.ts +1496 -0
  63. package/generated/models/ContentLock.ts +1481 -0
  64. package/generated/models/ContentTemplate.ts +1425 -0
  65. package/generated/models/Document.ts +3486 -0
  66. package/generated/models/Folder.ts +1905 -0
  67. package/generated/models/FormSchemaVersion.ts +1265 -0
  68. package/generated/models/FormSubmission.ts +2105 -0
  69. package/generated/models/FormSubmissionFile.ts +1615 -0
  70. package/generated/models/FormWebhook.ts +1371 -0
  71. package/generated/models/InAppNotification.ts +1466 -0
  72. package/generated/models/Invite.ts +1393 -0
  73. package/generated/models/Media.ts +2887 -0
  74. package/generated/models/MediaUsage.ts +1488 -0
  75. package/generated/models/OAuthAccount.ts +1472 -0
  76. package/generated/models/PageTemplate.ts +1271 -0
  77. package/generated/models/PasswordResetToken.ts +1396 -0
  78. package/generated/models/Redirect.ts +1501 -0
  79. package/generated/models/Redirect404Hit.ts +1266 -0
  80. package/generated/models/RedirectSuggestion.ts +1344 -0
  81. package/generated/models/SavedSection.ts +1315 -0
  82. package/generated/models/ScriptTag.ts +1453 -0
  83. package/generated/models/SeoAuditRun.ts +1745 -0
  84. package/generated/models/SeoIssue.ts +2047 -0
  85. package/generated/models/Session.ts +1501 -0
  86. package/generated/models/Site.ts +1215 -0
  87. package/generated/models/User.ts +4558 -0
  88. package/generated/models/Version.ts +1520 -0
  89. package/generated/models/WebhookDeliveryLog.ts +1656 -0
  90. package/generated/models/WebhookEndpoint.ts +1433 -0
  91. package/generated/models/WorkflowState.ts +1523 -0
  92. package/generated/models.ts +46 -0
  93. package/package.json +5 -3
  94. package/{prisma → schema-fragments}/cms-schema.prisma +15 -2
@@ -0,0 +1,4596 @@
1
+
2
+ /* !!! This is code generated by Prisma. Do not edit directly. !!! */
3
+ /* eslint-disable */
4
+ // biome-ignore-all lint: generated file
5
+ // @ts-nocheck
6
+ /*
7
+ * WARNING: This is an internal file that is subject to change!
8
+ *
9
+ * 🛑 Under no circumstances should you import this file directly! 🛑
10
+ *
11
+ * All exports from this file are wrapped under a `Prisma` namespace object in the client.ts file.
12
+ * While this enables partial backward compatibility, it is not part of the stable public API.
13
+ *
14
+ * If you are looking for your Models, Enums, and Input Types, please import them from the respective
15
+ * model files in the `model` directory!
16
+ */
17
+
18
+ import * as runtime from "@prisma/client/runtime/client"
19
+ import type * as Prisma from "../models.js"
20
+ import { type PrismaClient } from "./class.js"
21
+
22
+ export type * from '../models.js'
23
+
24
+ export type DMMF = typeof runtime.DMMF
25
+
26
+ export type PrismaPromise<T> = runtime.Types.Public.PrismaPromise<T>
27
+
28
+ /**
29
+ * Prisma Errors
30
+ */
31
+
32
+ export const PrismaClientKnownRequestError = runtime.PrismaClientKnownRequestError
33
+ export type PrismaClientKnownRequestError = runtime.PrismaClientKnownRequestError
34
+
35
+ export const PrismaClientUnknownRequestError = runtime.PrismaClientUnknownRequestError
36
+ export type PrismaClientUnknownRequestError = runtime.PrismaClientUnknownRequestError
37
+
38
+ export const PrismaClientRustPanicError = runtime.PrismaClientRustPanicError
39
+ export type PrismaClientRustPanicError = runtime.PrismaClientRustPanicError
40
+
41
+ export const PrismaClientInitializationError = runtime.PrismaClientInitializationError
42
+ export type PrismaClientInitializationError = runtime.PrismaClientInitializationError
43
+
44
+ export const PrismaClientValidationError = runtime.PrismaClientValidationError
45
+ export type PrismaClientValidationError = runtime.PrismaClientValidationError
46
+
47
+ /**
48
+ * Re-export of sql-template-tag
49
+ */
50
+ export const sql = runtime.sqltag
51
+ export const empty = runtime.empty
52
+ export const join = runtime.join
53
+ export const raw = runtime.raw
54
+ export const Sql = runtime.Sql
55
+ export type Sql = runtime.Sql
56
+
57
+
58
+
59
+ /**
60
+ * Decimal.js
61
+ */
62
+ export const Decimal = runtime.Decimal
63
+ export type Decimal = runtime.Decimal
64
+
65
+ export type DecimalJsLike = runtime.DecimalJsLike
66
+
67
+ /**
68
+ * Extensions
69
+ */
70
+ export type Extension = runtime.Types.Extensions.UserArgs
71
+ export const getExtensionContext = runtime.Extensions.getExtensionContext
72
+ export type Args<T, F extends runtime.Operation> = runtime.Types.Public.Args<T, F>
73
+ export type Payload<T, F extends runtime.Operation = never> = runtime.Types.Public.Payload<T, F>
74
+ export type Result<T, A, F extends runtime.Operation> = runtime.Types.Public.Result<T, A, F>
75
+ export type Exact<A, W> = runtime.Types.Public.Exact<A, W>
76
+
77
+ export type PrismaVersion = {
78
+ client: string
79
+ engine: string
80
+ }
81
+
82
+ /**
83
+ * Prisma Client JS version: 7.8.0
84
+ * Query Engine version: 3c6e192761c0362d496ed980de936e2f3cebcd3a
85
+ */
86
+ export const prismaVersion: PrismaVersion = {
87
+ client: "7.8.0",
88
+ engine: "3c6e192761c0362d496ed980de936e2f3cebcd3a"
89
+ }
90
+
91
+ /**
92
+ * Utility Types
93
+ */
94
+
95
+ export type Bytes = runtime.Bytes
96
+ export type JsonObject = runtime.JsonObject
97
+ export type JsonArray = runtime.JsonArray
98
+ export type JsonValue = runtime.JsonValue
99
+ export type InputJsonObject = runtime.InputJsonObject
100
+ export type InputJsonArray = runtime.InputJsonArray
101
+ export type InputJsonValue = runtime.InputJsonValue
102
+
103
+
104
+ export const NullTypes = {
105
+ DbNull: runtime.NullTypes.DbNull as (new (secret: never) => typeof runtime.DbNull),
106
+ JsonNull: runtime.NullTypes.JsonNull as (new (secret: never) => typeof runtime.JsonNull),
107
+ AnyNull: runtime.NullTypes.AnyNull as (new (secret: never) => typeof runtime.AnyNull),
108
+ }
109
+ /**
110
+ * Helper for filtering JSON entries that have `null` on the database (empty on the db)
111
+ *
112
+ * @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
113
+ */
114
+ export const DbNull = runtime.DbNull
115
+
116
+ /**
117
+ * Helper for filtering JSON entries that have JSON `null` values (not empty on the db)
118
+ *
119
+ * @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
120
+ */
121
+ export const JsonNull = runtime.JsonNull
122
+
123
+ /**
124
+ * Helper for filtering JSON entries that are `Prisma.DbNull` or `Prisma.JsonNull`
125
+ *
126
+ * @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
127
+ */
128
+ export const AnyNull = runtime.AnyNull
129
+
130
+
131
+ type SelectAndInclude = {
132
+ select: any
133
+ include: any
134
+ }
135
+
136
+ type SelectAndOmit = {
137
+ select: any
138
+ omit: any
139
+ }
140
+
141
+ /**
142
+ * From T, pick a set of properties whose keys are in the union K
143
+ */
144
+ type Prisma__Pick<T, K extends keyof T> = {
145
+ [P in K]: T[P];
146
+ };
147
+
148
+ export type Enumerable<T> = T | Array<T>;
149
+
150
+ /**
151
+ * Subset
152
+ * @desc From `T` pick properties that exist in `U`. Simple version of Intersection
153
+ */
154
+ export type Subset<T, U> = {
155
+ [key in keyof T]: key extends keyof U ? T[key] : never;
156
+ };
157
+
158
+ /**
159
+ * SelectSubset
160
+ * @desc From `T` pick properties that exist in `U`. Simple version of Intersection.
161
+ * Additionally, it validates, if both select and include are present. If the case, it errors.
162
+ */
163
+ export type SelectSubset<T, U> = {
164
+ [key in keyof T]: key extends keyof U ? T[key] : never
165
+ } &
166
+ (T extends SelectAndInclude
167
+ ? 'Please either choose `select` or `include`.'
168
+ : T extends SelectAndOmit
169
+ ? 'Please either choose `select` or `omit`.'
170
+ : {})
171
+
172
+ /**
173
+ * Subset + Intersection
174
+ * @desc From `T` pick properties that exist in `U` and intersect `K`
175
+ */
176
+ export type SubsetIntersection<T, U, K> = {
177
+ [key in keyof T]: key extends keyof U ? T[key] : never
178
+ } &
179
+ K
180
+
181
+ type Without<T, U> = { [P in Exclude<keyof T, keyof U>]?: never };
182
+
183
+ /**
184
+ * XOR is needed to have a real mutually exclusive union type
185
+ * https://stackoverflow.com/questions/42123407/does-typescript-support-mutually-exclusive-types
186
+ */
187
+ export type XOR<T, U> =
188
+ T extends object ?
189
+ U extends object ?
190
+ (Without<T, U> & U) | (Without<U, T> & T)
191
+ : U : T
192
+
193
+
194
+ /**
195
+ * Is T a Record?
196
+ */
197
+ type IsObject<T extends any> = T extends Array<any>
198
+ ? False
199
+ : T extends Date
200
+ ? False
201
+ : T extends Uint8Array
202
+ ? False
203
+ : T extends BigInt
204
+ ? False
205
+ : T extends object
206
+ ? True
207
+ : False
208
+
209
+
210
+ /**
211
+ * If it's T[], return T
212
+ */
213
+ export type UnEnumerate<T extends unknown> = T extends Array<infer U> ? U : T
214
+
215
+ /**
216
+ * From ts-toolbelt
217
+ */
218
+
219
+ type __Either<O extends object, K extends Key> = Omit<O, K> &
220
+ {
221
+ // Merge all but K
222
+ [P in K]: Prisma__Pick<O, P & keyof O> // With K possibilities
223
+ }[K]
224
+
225
+ type EitherStrict<O extends object, K extends Key> = Strict<__Either<O, K>>
226
+
227
+ type EitherLoose<O extends object, K extends Key> = ComputeRaw<__Either<O, K>>
228
+
229
+ type _Either<
230
+ O extends object,
231
+ K extends Key,
232
+ strict extends Boolean
233
+ > = {
234
+ 1: EitherStrict<O, K>
235
+ 0: EitherLoose<O, K>
236
+ }[strict]
237
+
238
+ export type Either<
239
+ O extends object,
240
+ K extends Key,
241
+ strict extends Boolean = 1
242
+ > = O extends unknown ? _Either<O, K, strict> : never
243
+
244
+ export type Union = any
245
+
246
+ export type PatchUndefined<O extends object, O1 extends object> = {
247
+ [K in keyof O]: O[K] extends undefined ? At<O1, K> : O[K]
248
+ } & {}
249
+
250
+ /** Helper Types for "Merge" **/
251
+ export type IntersectOf<U extends Union> = (
252
+ U extends unknown ? (k: U) => void : never
253
+ ) extends (k: infer I) => void
254
+ ? I
255
+ : never
256
+
257
+ export type Overwrite<O extends object, O1 extends object> = {
258
+ [K in keyof O]: K extends keyof O1 ? O1[K] : O[K];
259
+ } & {};
260
+
261
+ type _Merge<U extends object> = IntersectOf<Overwrite<U, {
262
+ [K in keyof U]-?: At<U, K>;
263
+ }>>;
264
+
265
+ type Key = string | number | symbol;
266
+ type AtStrict<O extends object, K extends Key> = O[K & keyof O];
267
+ type AtLoose<O extends object, K extends Key> = O extends unknown ? AtStrict<O, K> : never;
268
+ export type At<O extends object, K extends Key, strict extends Boolean = 1> = {
269
+ 1: AtStrict<O, K>;
270
+ 0: AtLoose<O, K>;
271
+ }[strict];
272
+
273
+ export type ComputeRaw<A extends any> = A extends Function ? A : {
274
+ [K in keyof A]: A[K];
275
+ } & {};
276
+
277
+ export type OptionalFlat<O> = {
278
+ [K in keyof O]?: O[K];
279
+ } & {};
280
+
281
+ type _Record<K extends keyof any, T> = {
282
+ [P in K]: T;
283
+ };
284
+
285
+ // cause typescript not to expand types and preserve names
286
+ type NoExpand<T> = T extends unknown ? T : never;
287
+
288
+ // this type assumes the passed object is entirely optional
289
+ export type AtLeast<O extends object, K extends string> = NoExpand<
290
+ O extends unknown
291
+ ? | (K extends keyof O ? { [P in K]: O[P] } & O : O)
292
+ | {[P in keyof O as P extends K ? P : never]-?: O[P]} & O
293
+ : never>;
294
+
295
+ type _Strict<U, _U = U> = U extends unknown ? U & OptionalFlat<_Record<Exclude<Keys<_U>, keyof U>, never>> : never;
296
+
297
+ export type Strict<U extends object> = ComputeRaw<_Strict<U>>;
298
+ /** End Helper Types for "Merge" **/
299
+
300
+ export type Merge<U extends object> = ComputeRaw<_Merge<Strict<U>>>;
301
+
302
+ export type Boolean = True | False
303
+
304
+ export type True = 1
305
+
306
+ export type False = 0
307
+
308
+ export type Not<B extends Boolean> = {
309
+ 0: 1
310
+ 1: 0
311
+ }[B]
312
+
313
+ export type Extends<A1 extends any, A2 extends any> = [A1] extends [never]
314
+ ? 0 // anything `never` is false
315
+ : A1 extends A2
316
+ ? 1
317
+ : 0
318
+
319
+ export type Has<U extends Union, U1 extends Union> = Not<
320
+ Extends<Exclude<U1, U>, U1>
321
+ >
322
+
323
+ export type Or<B1 extends Boolean, B2 extends Boolean> = {
324
+ 0: {
325
+ 0: 0
326
+ 1: 1
327
+ }
328
+ 1: {
329
+ 0: 1
330
+ 1: 1
331
+ }
332
+ }[B1][B2]
333
+
334
+ export type Keys<U extends Union> = U extends unknown ? keyof U : never
335
+
336
+ export type GetScalarType<T, O> = O extends object ? {
337
+ [P in keyof T]: P extends keyof O
338
+ ? O[P]
339
+ : never
340
+ } : never
341
+
342
+ type FieldPaths<
343
+ T,
344
+ U = Omit<T, '_avg' | '_sum' | '_count' | '_min' | '_max'>
345
+ > = IsObject<T> extends True ? U : T
346
+
347
+ export type GetHavingFields<T> = {
348
+ [K in keyof T]: Or<
349
+ Or<Extends<'OR', K>, Extends<'AND', K>>,
350
+ Extends<'NOT', K>
351
+ > extends True
352
+ ? // infer is only needed to not hit TS limit
353
+ // based on the brilliant idea of Pierre-Antoine Mills
354
+ // https://github.com/microsoft/TypeScript/issues/30188#issuecomment-478938437
355
+ T[K] extends infer TK
356
+ ? GetHavingFields<UnEnumerate<TK> extends object ? Merge<UnEnumerate<TK>> : never>
357
+ : never
358
+ : {} extends FieldPaths<T[K]>
359
+ ? never
360
+ : K
361
+ }[keyof T]
362
+
363
+ /**
364
+ * Convert tuple to union
365
+ */
366
+ type _TupleToUnion<T> = T extends (infer E)[] ? E : never
367
+ type TupleToUnion<K extends readonly any[]> = _TupleToUnion<K>
368
+ export type MaybeTupleToUnion<T> = T extends any[] ? TupleToUnion<T> : T
369
+
370
+ /**
371
+ * Like `Pick`, but additionally can also accept an array of keys
372
+ */
373
+ export type PickEnumerable<T, K extends Enumerable<keyof T> | keyof T> = Prisma__Pick<T, MaybeTupleToUnion<K>>
374
+
375
+ /**
376
+ * Exclude all keys with underscores
377
+ */
378
+ export type ExcludeUnderscoreKeys<T extends string> = T extends `_${string}` ? never : T
379
+
380
+
381
+ export type FieldRef<Model, FieldType> = runtime.FieldRef<Model, FieldType>
382
+
383
+ type FieldRefInputType<Model, FieldType> = Model extends never ? never : FieldRef<Model, FieldType>
384
+
385
+
386
+ export const ModelName = {
387
+ User: 'User',
388
+ OAuthAccount: 'OAuthAccount',
389
+ Session: 'Session',
390
+ ApiKey: 'ApiKey',
391
+ AuditLog: 'AuditLog',
392
+ Folder: 'Folder',
393
+ Document: 'Document',
394
+ Version: 'Version',
395
+ Media: 'Media',
396
+ MediaUsage: 'MediaUsage',
397
+ ContentLock: 'ContentLock',
398
+ InAppNotification: 'InAppNotification',
399
+ ContentTemplate: 'ContentTemplate',
400
+ Site: 'Site',
401
+ WorkflowState: 'WorkflowState',
402
+ Redirect: 'Redirect',
403
+ SeoAuditRun: 'SeoAuditRun',
404
+ SeoIssue: 'SeoIssue',
405
+ Redirect404Hit: 'Redirect404Hit',
406
+ AiCrawlerHit: 'AiCrawlerHit',
407
+ RedirectSuggestion: 'RedirectSuggestion',
408
+ FormSchemaVersion: 'FormSchemaVersion',
409
+ FormSubmission: 'FormSubmission',
410
+ FormSubmissionFile: 'FormSubmissionFile',
411
+ FormWebhook: 'FormWebhook',
412
+ BackupRecord: 'BackupRecord',
413
+ WebhookEndpoint: 'WebhookEndpoint',
414
+ WebhookDeliveryLog: 'WebhookDeliveryLog',
415
+ PasswordResetToken: 'PasswordResetToken',
416
+ Invite: 'Invite',
417
+ ScriptTag: 'ScriptTag',
418
+ PageTemplate: 'PageTemplate',
419
+ SavedSection: 'SavedSection',
420
+ ApiRequestMetric: 'ApiRequestMetric',
421
+ ContentIssue: 'ContentIssue'
422
+ } as const
423
+
424
+ export type ModelName = (typeof ModelName)[keyof typeof ModelName]
425
+
426
+
427
+
428
+ export interface TypeMapCb<GlobalOmitOptions = {}> extends runtime.Types.Utils.Fn<{extArgs: runtime.Types.Extensions.InternalArgs }, runtime.Types.Utils.Record<string, any>> {
429
+ returns: TypeMap<this['params']['extArgs'], GlobalOmitOptions>
430
+ }
431
+
432
+ export type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> = {
433
+ globalOmitOptions: {
434
+ omit: GlobalOmitOptions
435
+ }
436
+ meta: {
437
+ modelProps: "user" | "oAuthAccount" | "session" | "apiKey" | "auditLog" | "folder" | "document" | "version" | "media" | "mediaUsage" | "contentLock" | "inAppNotification" | "contentTemplate" | "site" | "workflowState" | "redirect" | "seoAuditRun" | "seoIssue" | "redirect404Hit" | "aiCrawlerHit" | "redirectSuggestion" | "formSchemaVersion" | "formSubmission" | "formSubmissionFile" | "formWebhook" | "backupRecord" | "webhookEndpoint" | "webhookDeliveryLog" | "passwordResetToken" | "invite" | "scriptTag" | "pageTemplate" | "savedSection" | "apiRequestMetric" | "contentIssue"
438
+ txIsolationLevel: TransactionIsolationLevel
439
+ }
440
+ model: {
441
+ User: {
442
+ payload: Prisma.$UserPayload<ExtArgs>
443
+ fields: Prisma.UserFieldRefs
444
+ operations: {
445
+ findUnique: {
446
+ args: Prisma.UserFindUniqueArgs<ExtArgs>
447
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPayload> | null
448
+ }
449
+ findUniqueOrThrow: {
450
+ args: Prisma.UserFindUniqueOrThrowArgs<ExtArgs>
451
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPayload>
452
+ }
453
+ findFirst: {
454
+ args: Prisma.UserFindFirstArgs<ExtArgs>
455
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPayload> | null
456
+ }
457
+ findFirstOrThrow: {
458
+ args: Prisma.UserFindFirstOrThrowArgs<ExtArgs>
459
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPayload>
460
+ }
461
+ findMany: {
462
+ args: Prisma.UserFindManyArgs<ExtArgs>
463
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPayload>[]
464
+ }
465
+ create: {
466
+ args: Prisma.UserCreateArgs<ExtArgs>
467
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPayload>
468
+ }
469
+ createMany: {
470
+ args: Prisma.UserCreateManyArgs<ExtArgs>
471
+ result: BatchPayload
472
+ }
473
+ createManyAndReturn: {
474
+ args: Prisma.UserCreateManyAndReturnArgs<ExtArgs>
475
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPayload>[]
476
+ }
477
+ delete: {
478
+ args: Prisma.UserDeleteArgs<ExtArgs>
479
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPayload>
480
+ }
481
+ update: {
482
+ args: Prisma.UserUpdateArgs<ExtArgs>
483
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPayload>
484
+ }
485
+ deleteMany: {
486
+ args: Prisma.UserDeleteManyArgs<ExtArgs>
487
+ result: BatchPayload
488
+ }
489
+ updateMany: {
490
+ args: Prisma.UserUpdateManyArgs<ExtArgs>
491
+ result: BatchPayload
492
+ }
493
+ updateManyAndReturn: {
494
+ args: Prisma.UserUpdateManyAndReturnArgs<ExtArgs>
495
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPayload>[]
496
+ }
497
+ upsert: {
498
+ args: Prisma.UserUpsertArgs<ExtArgs>
499
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPayload>
500
+ }
501
+ aggregate: {
502
+ args: Prisma.UserAggregateArgs<ExtArgs>
503
+ result: runtime.Types.Utils.Optional<Prisma.AggregateUser>
504
+ }
505
+ groupBy: {
506
+ args: Prisma.UserGroupByArgs<ExtArgs>
507
+ result: runtime.Types.Utils.Optional<Prisma.UserGroupByOutputType>[]
508
+ }
509
+ count: {
510
+ args: Prisma.UserCountArgs<ExtArgs>
511
+ result: runtime.Types.Utils.Optional<Prisma.UserCountAggregateOutputType> | number
512
+ }
513
+ }
514
+ }
515
+ OAuthAccount: {
516
+ payload: Prisma.$OAuthAccountPayload<ExtArgs>
517
+ fields: Prisma.OAuthAccountFieldRefs
518
+ operations: {
519
+ findUnique: {
520
+ args: Prisma.OAuthAccountFindUniqueArgs<ExtArgs>
521
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$OAuthAccountPayload> | null
522
+ }
523
+ findUniqueOrThrow: {
524
+ args: Prisma.OAuthAccountFindUniqueOrThrowArgs<ExtArgs>
525
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$OAuthAccountPayload>
526
+ }
527
+ findFirst: {
528
+ args: Prisma.OAuthAccountFindFirstArgs<ExtArgs>
529
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$OAuthAccountPayload> | null
530
+ }
531
+ findFirstOrThrow: {
532
+ args: Prisma.OAuthAccountFindFirstOrThrowArgs<ExtArgs>
533
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$OAuthAccountPayload>
534
+ }
535
+ findMany: {
536
+ args: Prisma.OAuthAccountFindManyArgs<ExtArgs>
537
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$OAuthAccountPayload>[]
538
+ }
539
+ create: {
540
+ args: Prisma.OAuthAccountCreateArgs<ExtArgs>
541
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$OAuthAccountPayload>
542
+ }
543
+ createMany: {
544
+ args: Prisma.OAuthAccountCreateManyArgs<ExtArgs>
545
+ result: BatchPayload
546
+ }
547
+ createManyAndReturn: {
548
+ args: Prisma.OAuthAccountCreateManyAndReturnArgs<ExtArgs>
549
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$OAuthAccountPayload>[]
550
+ }
551
+ delete: {
552
+ args: Prisma.OAuthAccountDeleteArgs<ExtArgs>
553
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$OAuthAccountPayload>
554
+ }
555
+ update: {
556
+ args: Prisma.OAuthAccountUpdateArgs<ExtArgs>
557
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$OAuthAccountPayload>
558
+ }
559
+ deleteMany: {
560
+ args: Prisma.OAuthAccountDeleteManyArgs<ExtArgs>
561
+ result: BatchPayload
562
+ }
563
+ updateMany: {
564
+ args: Prisma.OAuthAccountUpdateManyArgs<ExtArgs>
565
+ result: BatchPayload
566
+ }
567
+ updateManyAndReturn: {
568
+ args: Prisma.OAuthAccountUpdateManyAndReturnArgs<ExtArgs>
569
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$OAuthAccountPayload>[]
570
+ }
571
+ upsert: {
572
+ args: Prisma.OAuthAccountUpsertArgs<ExtArgs>
573
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$OAuthAccountPayload>
574
+ }
575
+ aggregate: {
576
+ args: Prisma.OAuthAccountAggregateArgs<ExtArgs>
577
+ result: runtime.Types.Utils.Optional<Prisma.AggregateOAuthAccount>
578
+ }
579
+ groupBy: {
580
+ args: Prisma.OAuthAccountGroupByArgs<ExtArgs>
581
+ result: runtime.Types.Utils.Optional<Prisma.OAuthAccountGroupByOutputType>[]
582
+ }
583
+ count: {
584
+ args: Prisma.OAuthAccountCountArgs<ExtArgs>
585
+ result: runtime.Types.Utils.Optional<Prisma.OAuthAccountCountAggregateOutputType> | number
586
+ }
587
+ }
588
+ }
589
+ Session: {
590
+ payload: Prisma.$SessionPayload<ExtArgs>
591
+ fields: Prisma.SessionFieldRefs
592
+ operations: {
593
+ findUnique: {
594
+ args: Prisma.SessionFindUniqueArgs<ExtArgs>
595
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SessionPayload> | null
596
+ }
597
+ findUniqueOrThrow: {
598
+ args: Prisma.SessionFindUniqueOrThrowArgs<ExtArgs>
599
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SessionPayload>
600
+ }
601
+ findFirst: {
602
+ args: Prisma.SessionFindFirstArgs<ExtArgs>
603
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SessionPayload> | null
604
+ }
605
+ findFirstOrThrow: {
606
+ args: Prisma.SessionFindFirstOrThrowArgs<ExtArgs>
607
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SessionPayload>
608
+ }
609
+ findMany: {
610
+ args: Prisma.SessionFindManyArgs<ExtArgs>
611
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SessionPayload>[]
612
+ }
613
+ create: {
614
+ args: Prisma.SessionCreateArgs<ExtArgs>
615
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SessionPayload>
616
+ }
617
+ createMany: {
618
+ args: Prisma.SessionCreateManyArgs<ExtArgs>
619
+ result: BatchPayload
620
+ }
621
+ createManyAndReturn: {
622
+ args: Prisma.SessionCreateManyAndReturnArgs<ExtArgs>
623
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SessionPayload>[]
624
+ }
625
+ delete: {
626
+ args: Prisma.SessionDeleteArgs<ExtArgs>
627
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SessionPayload>
628
+ }
629
+ update: {
630
+ args: Prisma.SessionUpdateArgs<ExtArgs>
631
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SessionPayload>
632
+ }
633
+ deleteMany: {
634
+ args: Prisma.SessionDeleteManyArgs<ExtArgs>
635
+ result: BatchPayload
636
+ }
637
+ updateMany: {
638
+ args: Prisma.SessionUpdateManyArgs<ExtArgs>
639
+ result: BatchPayload
640
+ }
641
+ updateManyAndReturn: {
642
+ args: Prisma.SessionUpdateManyAndReturnArgs<ExtArgs>
643
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SessionPayload>[]
644
+ }
645
+ upsert: {
646
+ args: Prisma.SessionUpsertArgs<ExtArgs>
647
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SessionPayload>
648
+ }
649
+ aggregate: {
650
+ args: Prisma.SessionAggregateArgs<ExtArgs>
651
+ result: runtime.Types.Utils.Optional<Prisma.AggregateSession>
652
+ }
653
+ groupBy: {
654
+ args: Prisma.SessionGroupByArgs<ExtArgs>
655
+ result: runtime.Types.Utils.Optional<Prisma.SessionGroupByOutputType>[]
656
+ }
657
+ count: {
658
+ args: Prisma.SessionCountArgs<ExtArgs>
659
+ result: runtime.Types.Utils.Optional<Prisma.SessionCountAggregateOutputType> | number
660
+ }
661
+ }
662
+ }
663
+ ApiKey: {
664
+ payload: Prisma.$ApiKeyPayload<ExtArgs>
665
+ fields: Prisma.ApiKeyFieldRefs
666
+ operations: {
667
+ findUnique: {
668
+ args: Prisma.ApiKeyFindUniqueArgs<ExtArgs>
669
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiKeyPayload> | null
670
+ }
671
+ findUniqueOrThrow: {
672
+ args: Prisma.ApiKeyFindUniqueOrThrowArgs<ExtArgs>
673
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiKeyPayload>
674
+ }
675
+ findFirst: {
676
+ args: Prisma.ApiKeyFindFirstArgs<ExtArgs>
677
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiKeyPayload> | null
678
+ }
679
+ findFirstOrThrow: {
680
+ args: Prisma.ApiKeyFindFirstOrThrowArgs<ExtArgs>
681
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiKeyPayload>
682
+ }
683
+ findMany: {
684
+ args: Prisma.ApiKeyFindManyArgs<ExtArgs>
685
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiKeyPayload>[]
686
+ }
687
+ create: {
688
+ args: Prisma.ApiKeyCreateArgs<ExtArgs>
689
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiKeyPayload>
690
+ }
691
+ createMany: {
692
+ args: Prisma.ApiKeyCreateManyArgs<ExtArgs>
693
+ result: BatchPayload
694
+ }
695
+ createManyAndReturn: {
696
+ args: Prisma.ApiKeyCreateManyAndReturnArgs<ExtArgs>
697
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiKeyPayload>[]
698
+ }
699
+ delete: {
700
+ args: Prisma.ApiKeyDeleteArgs<ExtArgs>
701
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiKeyPayload>
702
+ }
703
+ update: {
704
+ args: Prisma.ApiKeyUpdateArgs<ExtArgs>
705
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiKeyPayload>
706
+ }
707
+ deleteMany: {
708
+ args: Prisma.ApiKeyDeleteManyArgs<ExtArgs>
709
+ result: BatchPayload
710
+ }
711
+ updateMany: {
712
+ args: Prisma.ApiKeyUpdateManyArgs<ExtArgs>
713
+ result: BatchPayload
714
+ }
715
+ updateManyAndReturn: {
716
+ args: Prisma.ApiKeyUpdateManyAndReturnArgs<ExtArgs>
717
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiKeyPayload>[]
718
+ }
719
+ upsert: {
720
+ args: Prisma.ApiKeyUpsertArgs<ExtArgs>
721
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiKeyPayload>
722
+ }
723
+ aggregate: {
724
+ args: Prisma.ApiKeyAggregateArgs<ExtArgs>
725
+ result: runtime.Types.Utils.Optional<Prisma.AggregateApiKey>
726
+ }
727
+ groupBy: {
728
+ args: Prisma.ApiKeyGroupByArgs<ExtArgs>
729
+ result: runtime.Types.Utils.Optional<Prisma.ApiKeyGroupByOutputType>[]
730
+ }
731
+ count: {
732
+ args: Prisma.ApiKeyCountArgs<ExtArgs>
733
+ result: runtime.Types.Utils.Optional<Prisma.ApiKeyCountAggregateOutputType> | number
734
+ }
735
+ }
736
+ }
737
+ AuditLog: {
738
+ payload: Prisma.$AuditLogPayload<ExtArgs>
739
+ fields: Prisma.AuditLogFieldRefs
740
+ operations: {
741
+ findUnique: {
742
+ args: Prisma.AuditLogFindUniqueArgs<ExtArgs>
743
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$AuditLogPayload> | null
744
+ }
745
+ findUniqueOrThrow: {
746
+ args: Prisma.AuditLogFindUniqueOrThrowArgs<ExtArgs>
747
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$AuditLogPayload>
748
+ }
749
+ findFirst: {
750
+ args: Prisma.AuditLogFindFirstArgs<ExtArgs>
751
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$AuditLogPayload> | null
752
+ }
753
+ findFirstOrThrow: {
754
+ args: Prisma.AuditLogFindFirstOrThrowArgs<ExtArgs>
755
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$AuditLogPayload>
756
+ }
757
+ findMany: {
758
+ args: Prisma.AuditLogFindManyArgs<ExtArgs>
759
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$AuditLogPayload>[]
760
+ }
761
+ create: {
762
+ args: Prisma.AuditLogCreateArgs<ExtArgs>
763
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$AuditLogPayload>
764
+ }
765
+ createMany: {
766
+ args: Prisma.AuditLogCreateManyArgs<ExtArgs>
767
+ result: BatchPayload
768
+ }
769
+ createManyAndReturn: {
770
+ args: Prisma.AuditLogCreateManyAndReturnArgs<ExtArgs>
771
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$AuditLogPayload>[]
772
+ }
773
+ delete: {
774
+ args: Prisma.AuditLogDeleteArgs<ExtArgs>
775
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$AuditLogPayload>
776
+ }
777
+ update: {
778
+ args: Prisma.AuditLogUpdateArgs<ExtArgs>
779
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$AuditLogPayload>
780
+ }
781
+ deleteMany: {
782
+ args: Prisma.AuditLogDeleteManyArgs<ExtArgs>
783
+ result: BatchPayload
784
+ }
785
+ updateMany: {
786
+ args: Prisma.AuditLogUpdateManyArgs<ExtArgs>
787
+ result: BatchPayload
788
+ }
789
+ updateManyAndReturn: {
790
+ args: Prisma.AuditLogUpdateManyAndReturnArgs<ExtArgs>
791
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$AuditLogPayload>[]
792
+ }
793
+ upsert: {
794
+ args: Prisma.AuditLogUpsertArgs<ExtArgs>
795
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$AuditLogPayload>
796
+ }
797
+ aggregate: {
798
+ args: Prisma.AuditLogAggregateArgs<ExtArgs>
799
+ result: runtime.Types.Utils.Optional<Prisma.AggregateAuditLog>
800
+ }
801
+ groupBy: {
802
+ args: Prisma.AuditLogGroupByArgs<ExtArgs>
803
+ result: runtime.Types.Utils.Optional<Prisma.AuditLogGroupByOutputType>[]
804
+ }
805
+ count: {
806
+ args: Prisma.AuditLogCountArgs<ExtArgs>
807
+ result: runtime.Types.Utils.Optional<Prisma.AuditLogCountAggregateOutputType> | number
808
+ }
809
+ }
810
+ }
811
+ Folder: {
812
+ payload: Prisma.$FolderPayload<ExtArgs>
813
+ fields: Prisma.FolderFieldRefs
814
+ operations: {
815
+ findUnique: {
816
+ args: Prisma.FolderFindUniqueArgs<ExtArgs>
817
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FolderPayload> | null
818
+ }
819
+ findUniqueOrThrow: {
820
+ args: Prisma.FolderFindUniqueOrThrowArgs<ExtArgs>
821
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FolderPayload>
822
+ }
823
+ findFirst: {
824
+ args: Prisma.FolderFindFirstArgs<ExtArgs>
825
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FolderPayload> | null
826
+ }
827
+ findFirstOrThrow: {
828
+ args: Prisma.FolderFindFirstOrThrowArgs<ExtArgs>
829
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FolderPayload>
830
+ }
831
+ findMany: {
832
+ args: Prisma.FolderFindManyArgs<ExtArgs>
833
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FolderPayload>[]
834
+ }
835
+ create: {
836
+ args: Prisma.FolderCreateArgs<ExtArgs>
837
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FolderPayload>
838
+ }
839
+ createMany: {
840
+ args: Prisma.FolderCreateManyArgs<ExtArgs>
841
+ result: BatchPayload
842
+ }
843
+ createManyAndReturn: {
844
+ args: Prisma.FolderCreateManyAndReturnArgs<ExtArgs>
845
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FolderPayload>[]
846
+ }
847
+ delete: {
848
+ args: Prisma.FolderDeleteArgs<ExtArgs>
849
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FolderPayload>
850
+ }
851
+ update: {
852
+ args: Prisma.FolderUpdateArgs<ExtArgs>
853
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FolderPayload>
854
+ }
855
+ deleteMany: {
856
+ args: Prisma.FolderDeleteManyArgs<ExtArgs>
857
+ result: BatchPayload
858
+ }
859
+ updateMany: {
860
+ args: Prisma.FolderUpdateManyArgs<ExtArgs>
861
+ result: BatchPayload
862
+ }
863
+ updateManyAndReturn: {
864
+ args: Prisma.FolderUpdateManyAndReturnArgs<ExtArgs>
865
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FolderPayload>[]
866
+ }
867
+ upsert: {
868
+ args: Prisma.FolderUpsertArgs<ExtArgs>
869
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FolderPayload>
870
+ }
871
+ aggregate: {
872
+ args: Prisma.FolderAggregateArgs<ExtArgs>
873
+ result: runtime.Types.Utils.Optional<Prisma.AggregateFolder>
874
+ }
875
+ groupBy: {
876
+ args: Prisma.FolderGroupByArgs<ExtArgs>
877
+ result: runtime.Types.Utils.Optional<Prisma.FolderGroupByOutputType>[]
878
+ }
879
+ count: {
880
+ args: Prisma.FolderCountArgs<ExtArgs>
881
+ result: runtime.Types.Utils.Optional<Prisma.FolderCountAggregateOutputType> | number
882
+ }
883
+ }
884
+ }
885
+ Document: {
886
+ payload: Prisma.$DocumentPayload<ExtArgs>
887
+ fields: Prisma.DocumentFieldRefs
888
+ operations: {
889
+ findUnique: {
890
+ args: Prisma.DocumentFindUniqueArgs<ExtArgs>
891
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$DocumentPayload> | null
892
+ }
893
+ findUniqueOrThrow: {
894
+ args: Prisma.DocumentFindUniqueOrThrowArgs<ExtArgs>
895
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$DocumentPayload>
896
+ }
897
+ findFirst: {
898
+ args: Prisma.DocumentFindFirstArgs<ExtArgs>
899
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$DocumentPayload> | null
900
+ }
901
+ findFirstOrThrow: {
902
+ args: Prisma.DocumentFindFirstOrThrowArgs<ExtArgs>
903
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$DocumentPayload>
904
+ }
905
+ findMany: {
906
+ args: Prisma.DocumentFindManyArgs<ExtArgs>
907
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$DocumentPayload>[]
908
+ }
909
+ create: {
910
+ args: Prisma.DocumentCreateArgs<ExtArgs>
911
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$DocumentPayload>
912
+ }
913
+ createMany: {
914
+ args: Prisma.DocumentCreateManyArgs<ExtArgs>
915
+ result: BatchPayload
916
+ }
917
+ createManyAndReturn: {
918
+ args: Prisma.DocumentCreateManyAndReturnArgs<ExtArgs>
919
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$DocumentPayload>[]
920
+ }
921
+ delete: {
922
+ args: Prisma.DocumentDeleteArgs<ExtArgs>
923
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$DocumentPayload>
924
+ }
925
+ update: {
926
+ args: Prisma.DocumentUpdateArgs<ExtArgs>
927
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$DocumentPayload>
928
+ }
929
+ deleteMany: {
930
+ args: Prisma.DocumentDeleteManyArgs<ExtArgs>
931
+ result: BatchPayload
932
+ }
933
+ updateMany: {
934
+ args: Prisma.DocumentUpdateManyArgs<ExtArgs>
935
+ result: BatchPayload
936
+ }
937
+ updateManyAndReturn: {
938
+ args: Prisma.DocumentUpdateManyAndReturnArgs<ExtArgs>
939
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$DocumentPayload>[]
940
+ }
941
+ upsert: {
942
+ args: Prisma.DocumentUpsertArgs<ExtArgs>
943
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$DocumentPayload>
944
+ }
945
+ aggregate: {
946
+ args: Prisma.DocumentAggregateArgs<ExtArgs>
947
+ result: runtime.Types.Utils.Optional<Prisma.AggregateDocument>
948
+ }
949
+ groupBy: {
950
+ args: Prisma.DocumentGroupByArgs<ExtArgs>
951
+ result: runtime.Types.Utils.Optional<Prisma.DocumentGroupByOutputType>[]
952
+ }
953
+ count: {
954
+ args: Prisma.DocumentCountArgs<ExtArgs>
955
+ result: runtime.Types.Utils.Optional<Prisma.DocumentCountAggregateOutputType> | number
956
+ }
957
+ }
958
+ }
959
+ Version: {
960
+ payload: Prisma.$VersionPayload<ExtArgs>
961
+ fields: Prisma.VersionFieldRefs
962
+ operations: {
963
+ findUnique: {
964
+ args: Prisma.VersionFindUniqueArgs<ExtArgs>
965
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$VersionPayload> | null
966
+ }
967
+ findUniqueOrThrow: {
968
+ args: Prisma.VersionFindUniqueOrThrowArgs<ExtArgs>
969
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$VersionPayload>
970
+ }
971
+ findFirst: {
972
+ args: Prisma.VersionFindFirstArgs<ExtArgs>
973
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$VersionPayload> | null
974
+ }
975
+ findFirstOrThrow: {
976
+ args: Prisma.VersionFindFirstOrThrowArgs<ExtArgs>
977
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$VersionPayload>
978
+ }
979
+ findMany: {
980
+ args: Prisma.VersionFindManyArgs<ExtArgs>
981
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$VersionPayload>[]
982
+ }
983
+ create: {
984
+ args: Prisma.VersionCreateArgs<ExtArgs>
985
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$VersionPayload>
986
+ }
987
+ createMany: {
988
+ args: Prisma.VersionCreateManyArgs<ExtArgs>
989
+ result: BatchPayload
990
+ }
991
+ createManyAndReturn: {
992
+ args: Prisma.VersionCreateManyAndReturnArgs<ExtArgs>
993
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$VersionPayload>[]
994
+ }
995
+ delete: {
996
+ args: Prisma.VersionDeleteArgs<ExtArgs>
997
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$VersionPayload>
998
+ }
999
+ update: {
1000
+ args: Prisma.VersionUpdateArgs<ExtArgs>
1001
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$VersionPayload>
1002
+ }
1003
+ deleteMany: {
1004
+ args: Prisma.VersionDeleteManyArgs<ExtArgs>
1005
+ result: BatchPayload
1006
+ }
1007
+ updateMany: {
1008
+ args: Prisma.VersionUpdateManyArgs<ExtArgs>
1009
+ result: BatchPayload
1010
+ }
1011
+ updateManyAndReturn: {
1012
+ args: Prisma.VersionUpdateManyAndReturnArgs<ExtArgs>
1013
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$VersionPayload>[]
1014
+ }
1015
+ upsert: {
1016
+ args: Prisma.VersionUpsertArgs<ExtArgs>
1017
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$VersionPayload>
1018
+ }
1019
+ aggregate: {
1020
+ args: Prisma.VersionAggregateArgs<ExtArgs>
1021
+ result: runtime.Types.Utils.Optional<Prisma.AggregateVersion>
1022
+ }
1023
+ groupBy: {
1024
+ args: Prisma.VersionGroupByArgs<ExtArgs>
1025
+ result: runtime.Types.Utils.Optional<Prisma.VersionGroupByOutputType>[]
1026
+ }
1027
+ count: {
1028
+ args: Prisma.VersionCountArgs<ExtArgs>
1029
+ result: runtime.Types.Utils.Optional<Prisma.VersionCountAggregateOutputType> | number
1030
+ }
1031
+ }
1032
+ }
1033
+ Media: {
1034
+ payload: Prisma.$MediaPayload<ExtArgs>
1035
+ fields: Prisma.MediaFieldRefs
1036
+ operations: {
1037
+ findUnique: {
1038
+ args: Prisma.MediaFindUniqueArgs<ExtArgs>
1039
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$MediaPayload> | null
1040
+ }
1041
+ findUniqueOrThrow: {
1042
+ args: Prisma.MediaFindUniqueOrThrowArgs<ExtArgs>
1043
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$MediaPayload>
1044
+ }
1045
+ findFirst: {
1046
+ args: Prisma.MediaFindFirstArgs<ExtArgs>
1047
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$MediaPayload> | null
1048
+ }
1049
+ findFirstOrThrow: {
1050
+ args: Prisma.MediaFindFirstOrThrowArgs<ExtArgs>
1051
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$MediaPayload>
1052
+ }
1053
+ findMany: {
1054
+ args: Prisma.MediaFindManyArgs<ExtArgs>
1055
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$MediaPayload>[]
1056
+ }
1057
+ create: {
1058
+ args: Prisma.MediaCreateArgs<ExtArgs>
1059
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$MediaPayload>
1060
+ }
1061
+ createMany: {
1062
+ args: Prisma.MediaCreateManyArgs<ExtArgs>
1063
+ result: BatchPayload
1064
+ }
1065
+ createManyAndReturn: {
1066
+ args: Prisma.MediaCreateManyAndReturnArgs<ExtArgs>
1067
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$MediaPayload>[]
1068
+ }
1069
+ delete: {
1070
+ args: Prisma.MediaDeleteArgs<ExtArgs>
1071
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$MediaPayload>
1072
+ }
1073
+ update: {
1074
+ args: Prisma.MediaUpdateArgs<ExtArgs>
1075
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$MediaPayload>
1076
+ }
1077
+ deleteMany: {
1078
+ args: Prisma.MediaDeleteManyArgs<ExtArgs>
1079
+ result: BatchPayload
1080
+ }
1081
+ updateMany: {
1082
+ args: Prisma.MediaUpdateManyArgs<ExtArgs>
1083
+ result: BatchPayload
1084
+ }
1085
+ updateManyAndReturn: {
1086
+ args: Prisma.MediaUpdateManyAndReturnArgs<ExtArgs>
1087
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$MediaPayload>[]
1088
+ }
1089
+ upsert: {
1090
+ args: Prisma.MediaUpsertArgs<ExtArgs>
1091
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$MediaPayload>
1092
+ }
1093
+ aggregate: {
1094
+ args: Prisma.MediaAggregateArgs<ExtArgs>
1095
+ result: runtime.Types.Utils.Optional<Prisma.AggregateMedia>
1096
+ }
1097
+ groupBy: {
1098
+ args: Prisma.MediaGroupByArgs<ExtArgs>
1099
+ result: runtime.Types.Utils.Optional<Prisma.MediaGroupByOutputType>[]
1100
+ }
1101
+ count: {
1102
+ args: Prisma.MediaCountArgs<ExtArgs>
1103
+ result: runtime.Types.Utils.Optional<Prisma.MediaCountAggregateOutputType> | number
1104
+ }
1105
+ }
1106
+ }
1107
+ MediaUsage: {
1108
+ payload: Prisma.$MediaUsagePayload<ExtArgs>
1109
+ fields: Prisma.MediaUsageFieldRefs
1110
+ operations: {
1111
+ findUnique: {
1112
+ args: Prisma.MediaUsageFindUniqueArgs<ExtArgs>
1113
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$MediaUsagePayload> | null
1114
+ }
1115
+ findUniqueOrThrow: {
1116
+ args: Prisma.MediaUsageFindUniqueOrThrowArgs<ExtArgs>
1117
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$MediaUsagePayload>
1118
+ }
1119
+ findFirst: {
1120
+ args: Prisma.MediaUsageFindFirstArgs<ExtArgs>
1121
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$MediaUsagePayload> | null
1122
+ }
1123
+ findFirstOrThrow: {
1124
+ args: Prisma.MediaUsageFindFirstOrThrowArgs<ExtArgs>
1125
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$MediaUsagePayload>
1126
+ }
1127
+ findMany: {
1128
+ args: Prisma.MediaUsageFindManyArgs<ExtArgs>
1129
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$MediaUsagePayload>[]
1130
+ }
1131
+ create: {
1132
+ args: Prisma.MediaUsageCreateArgs<ExtArgs>
1133
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$MediaUsagePayload>
1134
+ }
1135
+ createMany: {
1136
+ args: Prisma.MediaUsageCreateManyArgs<ExtArgs>
1137
+ result: BatchPayload
1138
+ }
1139
+ createManyAndReturn: {
1140
+ args: Prisma.MediaUsageCreateManyAndReturnArgs<ExtArgs>
1141
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$MediaUsagePayload>[]
1142
+ }
1143
+ delete: {
1144
+ args: Prisma.MediaUsageDeleteArgs<ExtArgs>
1145
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$MediaUsagePayload>
1146
+ }
1147
+ update: {
1148
+ args: Prisma.MediaUsageUpdateArgs<ExtArgs>
1149
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$MediaUsagePayload>
1150
+ }
1151
+ deleteMany: {
1152
+ args: Prisma.MediaUsageDeleteManyArgs<ExtArgs>
1153
+ result: BatchPayload
1154
+ }
1155
+ updateMany: {
1156
+ args: Prisma.MediaUsageUpdateManyArgs<ExtArgs>
1157
+ result: BatchPayload
1158
+ }
1159
+ updateManyAndReturn: {
1160
+ args: Prisma.MediaUsageUpdateManyAndReturnArgs<ExtArgs>
1161
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$MediaUsagePayload>[]
1162
+ }
1163
+ upsert: {
1164
+ args: Prisma.MediaUsageUpsertArgs<ExtArgs>
1165
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$MediaUsagePayload>
1166
+ }
1167
+ aggregate: {
1168
+ args: Prisma.MediaUsageAggregateArgs<ExtArgs>
1169
+ result: runtime.Types.Utils.Optional<Prisma.AggregateMediaUsage>
1170
+ }
1171
+ groupBy: {
1172
+ args: Prisma.MediaUsageGroupByArgs<ExtArgs>
1173
+ result: runtime.Types.Utils.Optional<Prisma.MediaUsageGroupByOutputType>[]
1174
+ }
1175
+ count: {
1176
+ args: Prisma.MediaUsageCountArgs<ExtArgs>
1177
+ result: runtime.Types.Utils.Optional<Prisma.MediaUsageCountAggregateOutputType> | number
1178
+ }
1179
+ }
1180
+ }
1181
+ ContentLock: {
1182
+ payload: Prisma.$ContentLockPayload<ExtArgs>
1183
+ fields: Prisma.ContentLockFieldRefs
1184
+ operations: {
1185
+ findUnique: {
1186
+ args: Prisma.ContentLockFindUniqueArgs<ExtArgs>
1187
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentLockPayload> | null
1188
+ }
1189
+ findUniqueOrThrow: {
1190
+ args: Prisma.ContentLockFindUniqueOrThrowArgs<ExtArgs>
1191
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentLockPayload>
1192
+ }
1193
+ findFirst: {
1194
+ args: Prisma.ContentLockFindFirstArgs<ExtArgs>
1195
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentLockPayload> | null
1196
+ }
1197
+ findFirstOrThrow: {
1198
+ args: Prisma.ContentLockFindFirstOrThrowArgs<ExtArgs>
1199
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentLockPayload>
1200
+ }
1201
+ findMany: {
1202
+ args: Prisma.ContentLockFindManyArgs<ExtArgs>
1203
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentLockPayload>[]
1204
+ }
1205
+ create: {
1206
+ args: Prisma.ContentLockCreateArgs<ExtArgs>
1207
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentLockPayload>
1208
+ }
1209
+ createMany: {
1210
+ args: Prisma.ContentLockCreateManyArgs<ExtArgs>
1211
+ result: BatchPayload
1212
+ }
1213
+ createManyAndReturn: {
1214
+ args: Prisma.ContentLockCreateManyAndReturnArgs<ExtArgs>
1215
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentLockPayload>[]
1216
+ }
1217
+ delete: {
1218
+ args: Prisma.ContentLockDeleteArgs<ExtArgs>
1219
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentLockPayload>
1220
+ }
1221
+ update: {
1222
+ args: Prisma.ContentLockUpdateArgs<ExtArgs>
1223
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentLockPayload>
1224
+ }
1225
+ deleteMany: {
1226
+ args: Prisma.ContentLockDeleteManyArgs<ExtArgs>
1227
+ result: BatchPayload
1228
+ }
1229
+ updateMany: {
1230
+ args: Prisma.ContentLockUpdateManyArgs<ExtArgs>
1231
+ result: BatchPayload
1232
+ }
1233
+ updateManyAndReturn: {
1234
+ args: Prisma.ContentLockUpdateManyAndReturnArgs<ExtArgs>
1235
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentLockPayload>[]
1236
+ }
1237
+ upsert: {
1238
+ args: Prisma.ContentLockUpsertArgs<ExtArgs>
1239
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentLockPayload>
1240
+ }
1241
+ aggregate: {
1242
+ args: Prisma.ContentLockAggregateArgs<ExtArgs>
1243
+ result: runtime.Types.Utils.Optional<Prisma.AggregateContentLock>
1244
+ }
1245
+ groupBy: {
1246
+ args: Prisma.ContentLockGroupByArgs<ExtArgs>
1247
+ result: runtime.Types.Utils.Optional<Prisma.ContentLockGroupByOutputType>[]
1248
+ }
1249
+ count: {
1250
+ args: Prisma.ContentLockCountArgs<ExtArgs>
1251
+ result: runtime.Types.Utils.Optional<Prisma.ContentLockCountAggregateOutputType> | number
1252
+ }
1253
+ }
1254
+ }
1255
+ InAppNotification: {
1256
+ payload: Prisma.$InAppNotificationPayload<ExtArgs>
1257
+ fields: Prisma.InAppNotificationFieldRefs
1258
+ operations: {
1259
+ findUnique: {
1260
+ args: Prisma.InAppNotificationFindUniqueArgs<ExtArgs>
1261
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$InAppNotificationPayload> | null
1262
+ }
1263
+ findUniqueOrThrow: {
1264
+ args: Prisma.InAppNotificationFindUniqueOrThrowArgs<ExtArgs>
1265
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$InAppNotificationPayload>
1266
+ }
1267
+ findFirst: {
1268
+ args: Prisma.InAppNotificationFindFirstArgs<ExtArgs>
1269
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$InAppNotificationPayload> | null
1270
+ }
1271
+ findFirstOrThrow: {
1272
+ args: Prisma.InAppNotificationFindFirstOrThrowArgs<ExtArgs>
1273
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$InAppNotificationPayload>
1274
+ }
1275
+ findMany: {
1276
+ args: Prisma.InAppNotificationFindManyArgs<ExtArgs>
1277
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$InAppNotificationPayload>[]
1278
+ }
1279
+ create: {
1280
+ args: Prisma.InAppNotificationCreateArgs<ExtArgs>
1281
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$InAppNotificationPayload>
1282
+ }
1283
+ createMany: {
1284
+ args: Prisma.InAppNotificationCreateManyArgs<ExtArgs>
1285
+ result: BatchPayload
1286
+ }
1287
+ createManyAndReturn: {
1288
+ args: Prisma.InAppNotificationCreateManyAndReturnArgs<ExtArgs>
1289
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$InAppNotificationPayload>[]
1290
+ }
1291
+ delete: {
1292
+ args: Prisma.InAppNotificationDeleteArgs<ExtArgs>
1293
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$InAppNotificationPayload>
1294
+ }
1295
+ update: {
1296
+ args: Prisma.InAppNotificationUpdateArgs<ExtArgs>
1297
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$InAppNotificationPayload>
1298
+ }
1299
+ deleteMany: {
1300
+ args: Prisma.InAppNotificationDeleteManyArgs<ExtArgs>
1301
+ result: BatchPayload
1302
+ }
1303
+ updateMany: {
1304
+ args: Prisma.InAppNotificationUpdateManyArgs<ExtArgs>
1305
+ result: BatchPayload
1306
+ }
1307
+ updateManyAndReturn: {
1308
+ args: Prisma.InAppNotificationUpdateManyAndReturnArgs<ExtArgs>
1309
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$InAppNotificationPayload>[]
1310
+ }
1311
+ upsert: {
1312
+ args: Prisma.InAppNotificationUpsertArgs<ExtArgs>
1313
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$InAppNotificationPayload>
1314
+ }
1315
+ aggregate: {
1316
+ args: Prisma.InAppNotificationAggregateArgs<ExtArgs>
1317
+ result: runtime.Types.Utils.Optional<Prisma.AggregateInAppNotification>
1318
+ }
1319
+ groupBy: {
1320
+ args: Prisma.InAppNotificationGroupByArgs<ExtArgs>
1321
+ result: runtime.Types.Utils.Optional<Prisma.InAppNotificationGroupByOutputType>[]
1322
+ }
1323
+ count: {
1324
+ args: Prisma.InAppNotificationCountArgs<ExtArgs>
1325
+ result: runtime.Types.Utils.Optional<Prisma.InAppNotificationCountAggregateOutputType> | number
1326
+ }
1327
+ }
1328
+ }
1329
+ ContentTemplate: {
1330
+ payload: Prisma.$ContentTemplatePayload<ExtArgs>
1331
+ fields: Prisma.ContentTemplateFieldRefs
1332
+ operations: {
1333
+ findUnique: {
1334
+ args: Prisma.ContentTemplateFindUniqueArgs<ExtArgs>
1335
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentTemplatePayload> | null
1336
+ }
1337
+ findUniqueOrThrow: {
1338
+ args: Prisma.ContentTemplateFindUniqueOrThrowArgs<ExtArgs>
1339
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentTemplatePayload>
1340
+ }
1341
+ findFirst: {
1342
+ args: Prisma.ContentTemplateFindFirstArgs<ExtArgs>
1343
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentTemplatePayload> | null
1344
+ }
1345
+ findFirstOrThrow: {
1346
+ args: Prisma.ContentTemplateFindFirstOrThrowArgs<ExtArgs>
1347
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentTemplatePayload>
1348
+ }
1349
+ findMany: {
1350
+ args: Prisma.ContentTemplateFindManyArgs<ExtArgs>
1351
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentTemplatePayload>[]
1352
+ }
1353
+ create: {
1354
+ args: Prisma.ContentTemplateCreateArgs<ExtArgs>
1355
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentTemplatePayload>
1356
+ }
1357
+ createMany: {
1358
+ args: Prisma.ContentTemplateCreateManyArgs<ExtArgs>
1359
+ result: BatchPayload
1360
+ }
1361
+ createManyAndReturn: {
1362
+ args: Prisma.ContentTemplateCreateManyAndReturnArgs<ExtArgs>
1363
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentTemplatePayload>[]
1364
+ }
1365
+ delete: {
1366
+ args: Prisma.ContentTemplateDeleteArgs<ExtArgs>
1367
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentTemplatePayload>
1368
+ }
1369
+ update: {
1370
+ args: Prisma.ContentTemplateUpdateArgs<ExtArgs>
1371
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentTemplatePayload>
1372
+ }
1373
+ deleteMany: {
1374
+ args: Prisma.ContentTemplateDeleteManyArgs<ExtArgs>
1375
+ result: BatchPayload
1376
+ }
1377
+ updateMany: {
1378
+ args: Prisma.ContentTemplateUpdateManyArgs<ExtArgs>
1379
+ result: BatchPayload
1380
+ }
1381
+ updateManyAndReturn: {
1382
+ args: Prisma.ContentTemplateUpdateManyAndReturnArgs<ExtArgs>
1383
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentTemplatePayload>[]
1384
+ }
1385
+ upsert: {
1386
+ args: Prisma.ContentTemplateUpsertArgs<ExtArgs>
1387
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentTemplatePayload>
1388
+ }
1389
+ aggregate: {
1390
+ args: Prisma.ContentTemplateAggregateArgs<ExtArgs>
1391
+ result: runtime.Types.Utils.Optional<Prisma.AggregateContentTemplate>
1392
+ }
1393
+ groupBy: {
1394
+ args: Prisma.ContentTemplateGroupByArgs<ExtArgs>
1395
+ result: runtime.Types.Utils.Optional<Prisma.ContentTemplateGroupByOutputType>[]
1396
+ }
1397
+ count: {
1398
+ args: Prisma.ContentTemplateCountArgs<ExtArgs>
1399
+ result: runtime.Types.Utils.Optional<Prisma.ContentTemplateCountAggregateOutputType> | number
1400
+ }
1401
+ }
1402
+ }
1403
+ Site: {
1404
+ payload: Prisma.$SitePayload<ExtArgs>
1405
+ fields: Prisma.SiteFieldRefs
1406
+ operations: {
1407
+ findUnique: {
1408
+ args: Prisma.SiteFindUniqueArgs<ExtArgs>
1409
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SitePayload> | null
1410
+ }
1411
+ findUniqueOrThrow: {
1412
+ args: Prisma.SiteFindUniqueOrThrowArgs<ExtArgs>
1413
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SitePayload>
1414
+ }
1415
+ findFirst: {
1416
+ args: Prisma.SiteFindFirstArgs<ExtArgs>
1417
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SitePayload> | null
1418
+ }
1419
+ findFirstOrThrow: {
1420
+ args: Prisma.SiteFindFirstOrThrowArgs<ExtArgs>
1421
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SitePayload>
1422
+ }
1423
+ findMany: {
1424
+ args: Prisma.SiteFindManyArgs<ExtArgs>
1425
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SitePayload>[]
1426
+ }
1427
+ create: {
1428
+ args: Prisma.SiteCreateArgs<ExtArgs>
1429
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SitePayload>
1430
+ }
1431
+ createMany: {
1432
+ args: Prisma.SiteCreateManyArgs<ExtArgs>
1433
+ result: BatchPayload
1434
+ }
1435
+ createManyAndReturn: {
1436
+ args: Prisma.SiteCreateManyAndReturnArgs<ExtArgs>
1437
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SitePayload>[]
1438
+ }
1439
+ delete: {
1440
+ args: Prisma.SiteDeleteArgs<ExtArgs>
1441
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SitePayload>
1442
+ }
1443
+ update: {
1444
+ args: Prisma.SiteUpdateArgs<ExtArgs>
1445
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SitePayload>
1446
+ }
1447
+ deleteMany: {
1448
+ args: Prisma.SiteDeleteManyArgs<ExtArgs>
1449
+ result: BatchPayload
1450
+ }
1451
+ updateMany: {
1452
+ args: Prisma.SiteUpdateManyArgs<ExtArgs>
1453
+ result: BatchPayload
1454
+ }
1455
+ updateManyAndReturn: {
1456
+ args: Prisma.SiteUpdateManyAndReturnArgs<ExtArgs>
1457
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SitePayload>[]
1458
+ }
1459
+ upsert: {
1460
+ args: Prisma.SiteUpsertArgs<ExtArgs>
1461
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SitePayload>
1462
+ }
1463
+ aggregate: {
1464
+ args: Prisma.SiteAggregateArgs<ExtArgs>
1465
+ result: runtime.Types.Utils.Optional<Prisma.AggregateSite>
1466
+ }
1467
+ groupBy: {
1468
+ args: Prisma.SiteGroupByArgs<ExtArgs>
1469
+ result: runtime.Types.Utils.Optional<Prisma.SiteGroupByOutputType>[]
1470
+ }
1471
+ count: {
1472
+ args: Prisma.SiteCountArgs<ExtArgs>
1473
+ result: runtime.Types.Utils.Optional<Prisma.SiteCountAggregateOutputType> | number
1474
+ }
1475
+ }
1476
+ }
1477
+ WorkflowState: {
1478
+ payload: Prisma.$WorkflowStatePayload<ExtArgs>
1479
+ fields: Prisma.WorkflowStateFieldRefs
1480
+ operations: {
1481
+ findUnique: {
1482
+ args: Prisma.WorkflowStateFindUniqueArgs<ExtArgs>
1483
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkflowStatePayload> | null
1484
+ }
1485
+ findUniqueOrThrow: {
1486
+ args: Prisma.WorkflowStateFindUniqueOrThrowArgs<ExtArgs>
1487
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkflowStatePayload>
1488
+ }
1489
+ findFirst: {
1490
+ args: Prisma.WorkflowStateFindFirstArgs<ExtArgs>
1491
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkflowStatePayload> | null
1492
+ }
1493
+ findFirstOrThrow: {
1494
+ args: Prisma.WorkflowStateFindFirstOrThrowArgs<ExtArgs>
1495
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkflowStatePayload>
1496
+ }
1497
+ findMany: {
1498
+ args: Prisma.WorkflowStateFindManyArgs<ExtArgs>
1499
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkflowStatePayload>[]
1500
+ }
1501
+ create: {
1502
+ args: Prisma.WorkflowStateCreateArgs<ExtArgs>
1503
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkflowStatePayload>
1504
+ }
1505
+ createMany: {
1506
+ args: Prisma.WorkflowStateCreateManyArgs<ExtArgs>
1507
+ result: BatchPayload
1508
+ }
1509
+ createManyAndReturn: {
1510
+ args: Prisma.WorkflowStateCreateManyAndReturnArgs<ExtArgs>
1511
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkflowStatePayload>[]
1512
+ }
1513
+ delete: {
1514
+ args: Prisma.WorkflowStateDeleteArgs<ExtArgs>
1515
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkflowStatePayload>
1516
+ }
1517
+ update: {
1518
+ args: Prisma.WorkflowStateUpdateArgs<ExtArgs>
1519
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkflowStatePayload>
1520
+ }
1521
+ deleteMany: {
1522
+ args: Prisma.WorkflowStateDeleteManyArgs<ExtArgs>
1523
+ result: BatchPayload
1524
+ }
1525
+ updateMany: {
1526
+ args: Prisma.WorkflowStateUpdateManyArgs<ExtArgs>
1527
+ result: BatchPayload
1528
+ }
1529
+ updateManyAndReturn: {
1530
+ args: Prisma.WorkflowStateUpdateManyAndReturnArgs<ExtArgs>
1531
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkflowStatePayload>[]
1532
+ }
1533
+ upsert: {
1534
+ args: Prisma.WorkflowStateUpsertArgs<ExtArgs>
1535
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkflowStatePayload>
1536
+ }
1537
+ aggregate: {
1538
+ args: Prisma.WorkflowStateAggregateArgs<ExtArgs>
1539
+ result: runtime.Types.Utils.Optional<Prisma.AggregateWorkflowState>
1540
+ }
1541
+ groupBy: {
1542
+ args: Prisma.WorkflowStateGroupByArgs<ExtArgs>
1543
+ result: runtime.Types.Utils.Optional<Prisma.WorkflowStateGroupByOutputType>[]
1544
+ }
1545
+ count: {
1546
+ args: Prisma.WorkflowStateCountArgs<ExtArgs>
1547
+ result: runtime.Types.Utils.Optional<Prisma.WorkflowStateCountAggregateOutputType> | number
1548
+ }
1549
+ }
1550
+ }
1551
+ Redirect: {
1552
+ payload: Prisma.$RedirectPayload<ExtArgs>
1553
+ fields: Prisma.RedirectFieldRefs
1554
+ operations: {
1555
+ findUnique: {
1556
+ args: Prisma.RedirectFindUniqueArgs<ExtArgs>
1557
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$RedirectPayload> | null
1558
+ }
1559
+ findUniqueOrThrow: {
1560
+ args: Prisma.RedirectFindUniqueOrThrowArgs<ExtArgs>
1561
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$RedirectPayload>
1562
+ }
1563
+ findFirst: {
1564
+ args: Prisma.RedirectFindFirstArgs<ExtArgs>
1565
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$RedirectPayload> | null
1566
+ }
1567
+ findFirstOrThrow: {
1568
+ args: Prisma.RedirectFindFirstOrThrowArgs<ExtArgs>
1569
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$RedirectPayload>
1570
+ }
1571
+ findMany: {
1572
+ args: Prisma.RedirectFindManyArgs<ExtArgs>
1573
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$RedirectPayload>[]
1574
+ }
1575
+ create: {
1576
+ args: Prisma.RedirectCreateArgs<ExtArgs>
1577
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$RedirectPayload>
1578
+ }
1579
+ createMany: {
1580
+ args: Prisma.RedirectCreateManyArgs<ExtArgs>
1581
+ result: BatchPayload
1582
+ }
1583
+ createManyAndReturn: {
1584
+ args: Prisma.RedirectCreateManyAndReturnArgs<ExtArgs>
1585
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$RedirectPayload>[]
1586
+ }
1587
+ delete: {
1588
+ args: Prisma.RedirectDeleteArgs<ExtArgs>
1589
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$RedirectPayload>
1590
+ }
1591
+ update: {
1592
+ args: Prisma.RedirectUpdateArgs<ExtArgs>
1593
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$RedirectPayload>
1594
+ }
1595
+ deleteMany: {
1596
+ args: Prisma.RedirectDeleteManyArgs<ExtArgs>
1597
+ result: BatchPayload
1598
+ }
1599
+ updateMany: {
1600
+ args: Prisma.RedirectUpdateManyArgs<ExtArgs>
1601
+ result: BatchPayload
1602
+ }
1603
+ updateManyAndReturn: {
1604
+ args: Prisma.RedirectUpdateManyAndReturnArgs<ExtArgs>
1605
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$RedirectPayload>[]
1606
+ }
1607
+ upsert: {
1608
+ args: Prisma.RedirectUpsertArgs<ExtArgs>
1609
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$RedirectPayload>
1610
+ }
1611
+ aggregate: {
1612
+ args: Prisma.RedirectAggregateArgs<ExtArgs>
1613
+ result: runtime.Types.Utils.Optional<Prisma.AggregateRedirect>
1614
+ }
1615
+ groupBy: {
1616
+ args: Prisma.RedirectGroupByArgs<ExtArgs>
1617
+ result: runtime.Types.Utils.Optional<Prisma.RedirectGroupByOutputType>[]
1618
+ }
1619
+ count: {
1620
+ args: Prisma.RedirectCountArgs<ExtArgs>
1621
+ result: runtime.Types.Utils.Optional<Prisma.RedirectCountAggregateOutputType> | number
1622
+ }
1623
+ }
1624
+ }
1625
+ SeoAuditRun: {
1626
+ payload: Prisma.$SeoAuditRunPayload<ExtArgs>
1627
+ fields: Prisma.SeoAuditRunFieldRefs
1628
+ operations: {
1629
+ findUnique: {
1630
+ args: Prisma.SeoAuditRunFindUniqueArgs<ExtArgs>
1631
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoAuditRunPayload> | null
1632
+ }
1633
+ findUniqueOrThrow: {
1634
+ args: Prisma.SeoAuditRunFindUniqueOrThrowArgs<ExtArgs>
1635
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoAuditRunPayload>
1636
+ }
1637
+ findFirst: {
1638
+ args: Prisma.SeoAuditRunFindFirstArgs<ExtArgs>
1639
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoAuditRunPayload> | null
1640
+ }
1641
+ findFirstOrThrow: {
1642
+ args: Prisma.SeoAuditRunFindFirstOrThrowArgs<ExtArgs>
1643
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoAuditRunPayload>
1644
+ }
1645
+ findMany: {
1646
+ args: Prisma.SeoAuditRunFindManyArgs<ExtArgs>
1647
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoAuditRunPayload>[]
1648
+ }
1649
+ create: {
1650
+ args: Prisma.SeoAuditRunCreateArgs<ExtArgs>
1651
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoAuditRunPayload>
1652
+ }
1653
+ createMany: {
1654
+ args: Prisma.SeoAuditRunCreateManyArgs<ExtArgs>
1655
+ result: BatchPayload
1656
+ }
1657
+ createManyAndReturn: {
1658
+ args: Prisma.SeoAuditRunCreateManyAndReturnArgs<ExtArgs>
1659
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoAuditRunPayload>[]
1660
+ }
1661
+ delete: {
1662
+ args: Prisma.SeoAuditRunDeleteArgs<ExtArgs>
1663
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoAuditRunPayload>
1664
+ }
1665
+ update: {
1666
+ args: Prisma.SeoAuditRunUpdateArgs<ExtArgs>
1667
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoAuditRunPayload>
1668
+ }
1669
+ deleteMany: {
1670
+ args: Prisma.SeoAuditRunDeleteManyArgs<ExtArgs>
1671
+ result: BatchPayload
1672
+ }
1673
+ updateMany: {
1674
+ args: Prisma.SeoAuditRunUpdateManyArgs<ExtArgs>
1675
+ result: BatchPayload
1676
+ }
1677
+ updateManyAndReturn: {
1678
+ args: Prisma.SeoAuditRunUpdateManyAndReturnArgs<ExtArgs>
1679
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoAuditRunPayload>[]
1680
+ }
1681
+ upsert: {
1682
+ args: Prisma.SeoAuditRunUpsertArgs<ExtArgs>
1683
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoAuditRunPayload>
1684
+ }
1685
+ aggregate: {
1686
+ args: Prisma.SeoAuditRunAggregateArgs<ExtArgs>
1687
+ result: runtime.Types.Utils.Optional<Prisma.AggregateSeoAuditRun>
1688
+ }
1689
+ groupBy: {
1690
+ args: Prisma.SeoAuditRunGroupByArgs<ExtArgs>
1691
+ result: runtime.Types.Utils.Optional<Prisma.SeoAuditRunGroupByOutputType>[]
1692
+ }
1693
+ count: {
1694
+ args: Prisma.SeoAuditRunCountArgs<ExtArgs>
1695
+ result: runtime.Types.Utils.Optional<Prisma.SeoAuditRunCountAggregateOutputType> | number
1696
+ }
1697
+ }
1698
+ }
1699
+ SeoIssue: {
1700
+ payload: Prisma.$SeoIssuePayload<ExtArgs>
1701
+ fields: Prisma.SeoIssueFieldRefs
1702
+ operations: {
1703
+ findUnique: {
1704
+ args: Prisma.SeoIssueFindUniqueArgs<ExtArgs>
1705
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoIssuePayload> | null
1706
+ }
1707
+ findUniqueOrThrow: {
1708
+ args: Prisma.SeoIssueFindUniqueOrThrowArgs<ExtArgs>
1709
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoIssuePayload>
1710
+ }
1711
+ findFirst: {
1712
+ args: Prisma.SeoIssueFindFirstArgs<ExtArgs>
1713
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoIssuePayload> | null
1714
+ }
1715
+ findFirstOrThrow: {
1716
+ args: Prisma.SeoIssueFindFirstOrThrowArgs<ExtArgs>
1717
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoIssuePayload>
1718
+ }
1719
+ findMany: {
1720
+ args: Prisma.SeoIssueFindManyArgs<ExtArgs>
1721
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoIssuePayload>[]
1722
+ }
1723
+ create: {
1724
+ args: Prisma.SeoIssueCreateArgs<ExtArgs>
1725
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoIssuePayload>
1726
+ }
1727
+ createMany: {
1728
+ args: Prisma.SeoIssueCreateManyArgs<ExtArgs>
1729
+ result: BatchPayload
1730
+ }
1731
+ createManyAndReturn: {
1732
+ args: Prisma.SeoIssueCreateManyAndReturnArgs<ExtArgs>
1733
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoIssuePayload>[]
1734
+ }
1735
+ delete: {
1736
+ args: Prisma.SeoIssueDeleteArgs<ExtArgs>
1737
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoIssuePayload>
1738
+ }
1739
+ update: {
1740
+ args: Prisma.SeoIssueUpdateArgs<ExtArgs>
1741
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoIssuePayload>
1742
+ }
1743
+ deleteMany: {
1744
+ args: Prisma.SeoIssueDeleteManyArgs<ExtArgs>
1745
+ result: BatchPayload
1746
+ }
1747
+ updateMany: {
1748
+ args: Prisma.SeoIssueUpdateManyArgs<ExtArgs>
1749
+ result: BatchPayload
1750
+ }
1751
+ updateManyAndReturn: {
1752
+ args: Prisma.SeoIssueUpdateManyAndReturnArgs<ExtArgs>
1753
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoIssuePayload>[]
1754
+ }
1755
+ upsert: {
1756
+ args: Prisma.SeoIssueUpsertArgs<ExtArgs>
1757
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SeoIssuePayload>
1758
+ }
1759
+ aggregate: {
1760
+ args: Prisma.SeoIssueAggregateArgs<ExtArgs>
1761
+ result: runtime.Types.Utils.Optional<Prisma.AggregateSeoIssue>
1762
+ }
1763
+ groupBy: {
1764
+ args: Prisma.SeoIssueGroupByArgs<ExtArgs>
1765
+ result: runtime.Types.Utils.Optional<Prisma.SeoIssueGroupByOutputType>[]
1766
+ }
1767
+ count: {
1768
+ args: Prisma.SeoIssueCountArgs<ExtArgs>
1769
+ result: runtime.Types.Utils.Optional<Prisma.SeoIssueCountAggregateOutputType> | number
1770
+ }
1771
+ }
1772
+ }
1773
+ Redirect404Hit: {
1774
+ payload: Prisma.$Redirect404HitPayload<ExtArgs>
1775
+ fields: Prisma.Redirect404HitFieldRefs
1776
+ operations: {
1777
+ findUnique: {
1778
+ args: Prisma.Redirect404HitFindUniqueArgs<ExtArgs>
1779
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$Redirect404HitPayload> | null
1780
+ }
1781
+ findUniqueOrThrow: {
1782
+ args: Prisma.Redirect404HitFindUniqueOrThrowArgs<ExtArgs>
1783
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$Redirect404HitPayload>
1784
+ }
1785
+ findFirst: {
1786
+ args: Prisma.Redirect404HitFindFirstArgs<ExtArgs>
1787
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$Redirect404HitPayload> | null
1788
+ }
1789
+ findFirstOrThrow: {
1790
+ args: Prisma.Redirect404HitFindFirstOrThrowArgs<ExtArgs>
1791
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$Redirect404HitPayload>
1792
+ }
1793
+ findMany: {
1794
+ args: Prisma.Redirect404HitFindManyArgs<ExtArgs>
1795
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$Redirect404HitPayload>[]
1796
+ }
1797
+ create: {
1798
+ args: Prisma.Redirect404HitCreateArgs<ExtArgs>
1799
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$Redirect404HitPayload>
1800
+ }
1801
+ createMany: {
1802
+ args: Prisma.Redirect404HitCreateManyArgs<ExtArgs>
1803
+ result: BatchPayload
1804
+ }
1805
+ createManyAndReturn: {
1806
+ args: Prisma.Redirect404HitCreateManyAndReturnArgs<ExtArgs>
1807
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$Redirect404HitPayload>[]
1808
+ }
1809
+ delete: {
1810
+ args: Prisma.Redirect404HitDeleteArgs<ExtArgs>
1811
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$Redirect404HitPayload>
1812
+ }
1813
+ update: {
1814
+ args: Prisma.Redirect404HitUpdateArgs<ExtArgs>
1815
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$Redirect404HitPayload>
1816
+ }
1817
+ deleteMany: {
1818
+ args: Prisma.Redirect404HitDeleteManyArgs<ExtArgs>
1819
+ result: BatchPayload
1820
+ }
1821
+ updateMany: {
1822
+ args: Prisma.Redirect404HitUpdateManyArgs<ExtArgs>
1823
+ result: BatchPayload
1824
+ }
1825
+ updateManyAndReturn: {
1826
+ args: Prisma.Redirect404HitUpdateManyAndReturnArgs<ExtArgs>
1827
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$Redirect404HitPayload>[]
1828
+ }
1829
+ upsert: {
1830
+ args: Prisma.Redirect404HitUpsertArgs<ExtArgs>
1831
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$Redirect404HitPayload>
1832
+ }
1833
+ aggregate: {
1834
+ args: Prisma.Redirect404HitAggregateArgs<ExtArgs>
1835
+ result: runtime.Types.Utils.Optional<Prisma.AggregateRedirect404Hit>
1836
+ }
1837
+ groupBy: {
1838
+ args: Prisma.Redirect404HitGroupByArgs<ExtArgs>
1839
+ result: runtime.Types.Utils.Optional<Prisma.Redirect404HitGroupByOutputType>[]
1840
+ }
1841
+ count: {
1842
+ args: Prisma.Redirect404HitCountArgs<ExtArgs>
1843
+ result: runtime.Types.Utils.Optional<Prisma.Redirect404HitCountAggregateOutputType> | number
1844
+ }
1845
+ }
1846
+ }
1847
+ AiCrawlerHit: {
1848
+ payload: Prisma.$AiCrawlerHitPayload<ExtArgs>
1849
+ fields: Prisma.AiCrawlerHitFieldRefs
1850
+ operations: {
1851
+ findUnique: {
1852
+ args: Prisma.AiCrawlerHitFindUniqueArgs<ExtArgs>
1853
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$AiCrawlerHitPayload> | null
1854
+ }
1855
+ findUniqueOrThrow: {
1856
+ args: Prisma.AiCrawlerHitFindUniqueOrThrowArgs<ExtArgs>
1857
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$AiCrawlerHitPayload>
1858
+ }
1859
+ findFirst: {
1860
+ args: Prisma.AiCrawlerHitFindFirstArgs<ExtArgs>
1861
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$AiCrawlerHitPayload> | null
1862
+ }
1863
+ findFirstOrThrow: {
1864
+ args: Prisma.AiCrawlerHitFindFirstOrThrowArgs<ExtArgs>
1865
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$AiCrawlerHitPayload>
1866
+ }
1867
+ findMany: {
1868
+ args: Prisma.AiCrawlerHitFindManyArgs<ExtArgs>
1869
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$AiCrawlerHitPayload>[]
1870
+ }
1871
+ create: {
1872
+ args: Prisma.AiCrawlerHitCreateArgs<ExtArgs>
1873
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$AiCrawlerHitPayload>
1874
+ }
1875
+ createMany: {
1876
+ args: Prisma.AiCrawlerHitCreateManyArgs<ExtArgs>
1877
+ result: BatchPayload
1878
+ }
1879
+ createManyAndReturn: {
1880
+ args: Prisma.AiCrawlerHitCreateManyAndReturnArgs<ExtArgs>
1881
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$AiCrawlerHitPayload>[]
1882
+ }
1883
+ delete: {
1884
+ args: Prisma.AiCrawlerHitDeleteArgs<ExtArgs>
1885
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$AiCrawlerHitPayload>
1886
+ }
1887
+ update: {
1888
+ args: Prisma.AiCrawlerHitUpdateArgs<ExtArgs>
1889
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$AiCrawlerHitPayload>
1890
+ }
1891
+ deleteMany: {
1892
+ args: Prisma.AiCrawlerHitDeleteManyArgs<ExtArgs>
1893
+ result: BatchPayload
1894
+ }
1895
+ updateMany: {
1896
+ args: Prisma.AiCrawlerHitUpdateManyArgs<ExtArgs>
1897
+ result: BatchPayload
1898
+ }
1899
+ updateManyAndReturn: {
1900
+ args: Prisma.AiCrawlerHitUpdateManyAndReturnArgs<ExtArgs>
1901
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$AiCrawlerHitPayload>[]
1902
+ }
1903
+ upsert: {
1904
+ args: Prisma.AiCrawlerHitUpsertArgs<ExtArgs>
1905
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$AiCrawlerHitPayload>
1906
+ }
1907
+ aggregate: {
1908
+ args: Prisma.AiCrawlerHitAggregateArgs<ExtArgs>
1909
+ result: runtime.Types.Utils.Optional<Prisma.AggregateAiCrawlerHit>
1910
+ }
1911
+ groupBy: {
1912
+ args: Prisma.AiCrawlerHitGroupByArgs<ExtArgs>
1913
+ result: runtime.Types.Utils.Optional<Prisma.AiCrawlerHitGroupByOutputType>[]
1914
+ }
1915
+ count: {
1916
+ args: Prisma.AiCrawlerHitCountArgs<ExtArgs>
1917
+ result: runtime.Types.Utils.Optional<Prisma.AiCrawlerHitCountAggregateOutputType> | number
1918
+ }
1919
+ }
1920
+ }
1921
+ RedirectSuggestion: {
1922
+ payload: Prisma.$RedirectSuggestionPayload<ExtArgs>
1923
+ fields: Prisma.RedirectSuggestionFieldRefs
1924
+ operations: {
1925
+ findUnique: {
1926
+ args: Prisma.RedirectSuggestionFindUniqueArgs<ExtArgs>
1927
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$RedirectSuggestionPayload> | null
1928
+ }
1929
+ findUniqueOrThrow: {
1930
+ args: Prisma.RedirectSuggestionFindUniqueOrThrowArgs<ExtArgs>
1931
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$RedirectSuggestionPayload>
1932
+ }
1933
+ findFirst: {
1934
+ args: Prisma.RedirectSuggestionFindFirstArgs<ExtArgs>
1935
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$RedirectSuggestionPayload> | null
1936
+ }
1937
+ findFirstOrThrow: {
1938
+ args: Prisma.RedirectSuggestionFindFirstOrThrowArgs<ExtArgs>
1939
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$RedirectSuggestionPayload>
1940
+ }
1941
+ findMany: {
1942
+ args: Prisma.RedirectSuggestionFindManyArgs<ExtArgs>
1943
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$RedirectSuggestionPayload>[]
1944
+ }
1945
+ create: {
1946
+ args: Prisma.RedirectSuggestionCreateArgs<ExtArgs>
1947
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$RedirectSuggestionPayload>
1948
+ }
1949
+ createMany: {
1950
+ args: Prisma.RedirectSuggestionCreateManyArgs<ExtArgs>
1951
+ result: BatchPayload
1952
+ }
1953
+ createManyAndReturn: {
1954
+ args: Prisma.RedirectSuggestionCreateManyAndReturnArgs<ExtArgs>
1955
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$RedirectSuggestionPayload>[]
1956
+ }
1957
+ delete: {
1958
+ args: Prisma.RedirectSuggestionDeleteArgs<ExtArgs>
1959
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$RedirectSuggestionPayload>
1960
+ }
1961
+ update: {
1962
+ args: Prisma.RedirectSuggestionUpdateArgs<ExtArgs>
1963
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$RedirectSuggestionPayload>
1964
+ }
1965
+ deleteMany: {
1966
+ args: Prisma.RedirectSuggestionDeleteManyArgs<ExtArgs>
1967
+ result: BatchPayload
1968
+ }
1969
+ updateMany: {
1970
+ args: Prisma.RedirectSuggestionUpdateManyArgs<ExtArgs>
1971
+ result: BatchPayload
1972
+ }
1973
+ updateManyAndReturn: {
1974
+ args: Prisma.RedirectSuggestionUpdateManyAndReturnArgs<ExtArgs>
1975
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$RedirectSuggestionPayload>[]
1976
+ }
1977
+ upsert: {
1978
+ args: Prisma.RedirectSuggestionUpsertArgs<ExtArgs>
1979
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$RedirectSuggestionPayload>
1980
+ }
1981
+ aggregate: {
1982
+ args: Prisma.RedirectSuggestionAggregateArgs<ExtArgs>
1983
+ result: runtime.Types.Utils.Optional<Prisma.AggregateRedirectSuggestion>
1984
+ }
1985
+ groupBy: {
1986
+ args: Prisma.RedirectSuggestionGroupByArgs<ExtArgs>
1987
+ result: runtime.Types.Utils.Optional<Prisma.RedirectSuggestionGroupByOutputType>[]
1988
+ }
1989
+ count: {
1990
+ args: Prisma.RedirectSuggestionCountArgs<ExtArgs>
1991
+ result: runtime.Types.Utils.Optional<Prisma.RedirectSuggestionCountAggregateOutputType> | number
1992
+ }
1993
+ }
1994
+ }
1995
+ FormSchemaVersion: {
1996
+ payload: Prisma.$FormSchemaVersionPayload<ExtArgs>
1997
+ fields: Prisma.FormSchemaVersionFieldRefs
1998
+ operations: {
1999
+ findUnique: {
2000
+ args: Prisma.FormSchemaVersionFindUniqueArgs<ExtArgs>
2001
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSchemaVersionPayload> | null
2002
+ }
2003
+ findUniqueOrThrow: {
2004
+ args: Prisma.FormSchemaVersionFindUniqueOrThrowArgs<ExtArgs>
2005
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSchemaVersionPayload>
2006
+ }
2007
+ findFirst: {
2008
+ args: Prisma.FormSchemaVersionFindFirstArgs<ExtArgs>
2009
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSchemaVersionPayload> | null
2010
+ }
2011
+ findFirstOrThrow: {
2012
+ args: Prisma.FormSchemaVersionFindFirstOrThrowArgs<ExtArgs>
2013
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSchemaVersionPayload>
2014
+ }
2015
+ findMany: {
2016
+ args: Prisma.FormSchemaVersionFindManyArgs<ExtArgs>
2017
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSchemaVersionPayload>[]
2018
+ }
2019
+ create: {
2020
+ args: Prisma.FormSchemaVersionCreateArgs<ExtArgs>
2021
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSchemaVersionPayload>
2022
+ }
2023
+ createMany: {
2024
+ args: Prisma.FormSchemaVersionCreateManyArgs<ExtArgs>
2025
+ result: BatchPayload
2026
+ }
2027
+ createManyAndReturn: {
2028
+ args: Prisma.FormSchemaVersionCreateManyAndReturnArgs<ExtArgs>
2029
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSchemaVersionPayload>[]
2030
+ }
2031
+ delete: {
2032
+ args: Prisma.FormSchemaVersionDeleteArgs<ExtArgs>
2033
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSchemaVersionPayload>
2034
+ }
2035
+ update: {
2036
+ args: Prisma.FormSchemaVersionUpdateArgs<ExtArgs>
2037
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSchemaVersionPayload>
2038
+ }
2039
+ deleteMany: {
2040
+ args: Prisma.FormSchemaVersionDeleteManyArgs<ExtArgs>
2041
+ result: BatchPayload
2042
+ }
2043
+ updateMany: {
2044
+ args: Prisma.FormSchemaVersionUpdateManyArgs<ExtArgs>
2045
+ result: BatchPayload
2046
+ }
2047
+ updateManyAndReturn: {
2048
+ args: Prisma.FormSchemaVersionUpdateManyAndReturnArgs<ExtArgs>
2049
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSchemaVersionPayload>[]
2050
+ }
2051
+ upsert: {
2052
+ args: Prisma.FormSchemaVersionUpsertArgs<ExtArgs>
2053
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSchemaVersionPayload>
2054
+ }
2055
+ aggregate: {
2056
+ args: Prisma.FormSchemaVersionAggregateArgs<ExtArgs>
2057
+ result: runtime.Types.Utils.Optional<Prisma.AggregateFormSchemaVersion>
2058
+ }
2059
+ groupBy: {
2060
+ args: Prisma.FormSchemaVersionGroupByArgs<ExtArgs>
2061
+ result: runtime.Types.Utils.Optional<Prisma.FormSchemaVersionGroupByOutputType>[]
2062
+ }
2063
+ count: {
2064
+ args: Prisma.FormSchemaVersionCountArgs<ExtArgs>
2065
+ result: runtime.Types.Utils.Optional<Prisma.FormSchemaVersionCountAggregateOutputType> | number
2066
+ }
2067
+ }
2068
+ }
2069
+ FormSubmission: {
2070
+ payload: Prisma.$FormSubmissionPayload<ExtArgs>
2071
+ fields: Prisma.FormSubmissionFieldRefs
2072
+ operations: {
2073
+ findUnique: {
2074
+ args: Prisma.FormSubmissionFindUniqueArgs<ExtArgs>
2075
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSubmissionPayload> | null
2076
+ }
2077
+ findUniqueOrThrow: {
2078
+ args: Prisma.FormSubmissionFindUniqueOrThrowArgs<ExtArgs>
2079
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSubmissionPayload>
2080
+ }
2081
+ findFirst: {
2082
+ args: Prisma.FormSubmissionFindFirstArgs<ExtArgs>
2083
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSubmissionPayload> | null
2084
+ }
2085
+ findFirstOrThrow: {
2086
+ args: Prisma.FormSubmissionFindFirstOrThrowArgs<ExtArgs>
2087
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSubmissionPayload>
2088
+ }
2089
+ findMany: {
2090
+ args: Prisma.FormSubmissionFindManyArgs<ExtArgs>
2091
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSubmissionPayload>[]
2092
+ }
2093
+ create: {
2094
+ args: Prisma.FormSubmissionCreateArgs<ExtArgs>
2095
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSubmissionPayload>
2096
+ }
2097
+ createMany: {
2098
+ args: Prisma.FormSubmissionCreateManyArgs<ExtArgs>
2099
+ result: BatchPayload
2100
+ }
2101
+ createManyAndReturn: {
2102
+ args: Prisma.FormSubmissionCreateManyAndReturnArgs<ExtArgs>
2103
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSubmissionPayload>[]
2104
+ }
2105
+ delete: {
2106
+ args: Prisma.FormSubmissionDeleteArgs<ExtArgs>
2107
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSubmissionPayload>
2108
+ }
2109
+ update: {
2110
+ args: Prisma.FormSubmissionUpdateArgs<ExtArgs>
2111
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSubmissionPayload>
2112
+ }
2113
+ deleteMany: {
2114
+ args: Prisma.FormSubmissionDeleteManyArgs<ExtArgs>
2115
+ result: BatchPayload
2116
+ }
2117
+ updateMany: {
2118
+ args: Prisma.FormSubmissionUpdateManyArgs<ExtArgs>
2119
+ result: BatchPayload
2120
+ }
2121
+ updateManyAndReturn: {
2122
+ args: Prisma.FormSubmissionUpdateManyAndReturnArgs<ExtArgs>
2123
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSubmissionPayload>[]
2124
+ }
2125
+ upsert: {
2126
+ args: Prisma.FormSubmissionUpsertArgs<ExtArgs>
2127
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSubmissionPayload>
2128
+ }
2129
+ aggregate: {
2130
+ args: Prisma.FormSubmissionAggregateArgs<ExtArgs>
2131
+ result: runtime.Types.Utils.Optional<Prisma.AggregateFormSubmission>
2132
+ }
2133
+ groupBy: {
2134
+ args: Prisma.FormSubmissionGroupByArgs<ExtArgs>
2135
+ result: runtime.Types.Utils.Optional<Prisma.FormSubmissionGroupByOutputType>[]
2136
+ }
2137
+ count: {
2138
+ args: Prisma.FormSubmissionCountArgs<ExtArgs>
2139
+ result: runtime.Types.Utils.Optional<Prisma.FormSubmissionCountAggregateOutputType> | number
2140
+ }
2141
+ }
2142
+ }
2143
+ FormSubmissionFile: {
2144
+ payload: Prisma.$FormSubmissionFilePayload<ExtArgs>
2145
+ fields: Prisma.FormSubmissionFileFieldRefs
2146
+ operations: {
2147
+ findUnique: {
2148
+ args: Prisma.FormSubmissionFileFindUniqueArgs<ExtArgs>
2149
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSubmissionFilePayload> | null
2150
+ }
2151
+ findUniqueOrThrow: {
2152
+ args: Prisma.FormSubmissionFileFindUniqueOrThrowArgs<ExtArgs>
2153
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSubmissionFilePayload>
2154
+ }
2155
+ findFirst: {
2156
+ args: Prisma.FormSubmissionFileFindFirstArgs<ExtArgs>
2157
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSubmissionFilePayload> | null
2158
+ }
2159
+ findFirstOrThrow: {
2160
+ args: Prisma.FormSubmissionFileFindFirstOrThrowArgs<ExtArgs>
2161
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSubmissionFilePayload>
2162
+ }
2163
+ findMany: {
2164
+ args: Prisma.FormSubmissionFileFindManyArgs<ExtArgs>
2165
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSubmissionFilePayload>[]
2166
+ }
2167
+ create: {
2168
+ args: Prisma.FormSubmissionFileCreateArgs<ExtArgs>
2169
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSubmissionFilePayload>
2170
+ }
2171
+ createMany: {
2172
+ args: Prisma.FormSubmissionFileCreateManyArgs<ExtArgs>
2173
+ result: BatchPayload
2174
+ }
2175
+ createManyAndReturn: {
2176
+ args: Prisma.FormSubmissionFileCreateManyAndReturnArgs<ExtArgs>
2177
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSubmissionFilePayload>[]
2178
+ }
2179
+ delete: {
2180
+ args: Prisma.FormSubmissionFileDeleteArgs<ExtArgs>
2181
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSubmissionFilePayload>
2182
+ }
2183
+ update: {
2184
+ args: Prisma.FormSubmissionFileUpdateArgs<ExtArgs>
2185
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSubmissionFilePayload>
2186
+ }
2187
+ deleteMany: {
2188
+ args: Prisma.FormSubmissionFileDeleteManyArgs<ExtArgs>
2189
+ result: BatchPayload
2190
+ }
2191
+ updateMany: {
2192
+ args: Prisma.FormSubmissionFileUpdateManyArgs<ExtArgs>
2193
+ result: BatchPayload
2194
+ }
2195
+ updateManyAndReturn: {
2196
+ args: Prisma.FormSubmissionFileUpdateManyAndReturnArgs<ExtArgs>
2197
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSubmissionFilePayload>[]
2198
+ }
2199
+ upsert: {
2200
+ args: Prisma.FormSubmissionFileUpsertArgs<ExtArgs>
2201
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormSubmissionFilePayload>
2202
+ }
2203
+ aggregate: {
2204
+ args: Prisma.FormSubmissionFileAggregateArgs<ExtArgs>
2205
+ result: runtime.Types.Utils.Optional<Prisma.AggregateFormSubmissionFile>
2206
+ }
2207
+ groupBy: {
2208
+ args: Prisma.FormSubmissionFileGroupByArgs<ExtArgs>
2209
+ result: runtime.Types.Utils.Optional<Prisma.FormSubmissionFileGroupByOutputType>[]
2210
+ }
2211
+ count: {
2212
+ args: Prisma.FormSubmissionFileCountArgs<ExtArgs>
2213
+ result: runtime.Types.Utils.Optional<Prisma.FormSubmissionFileCountAggregateOutputType> | number
2214
+ }
2215
+ }
2216
+ }
2217
+ FormWebhook: {
2218
+ payload: Prisma.$FormWebhookPayload<ExtArgs>
2219
+ fields: Prisma.FormWebhookFieldRefs
2220
+ operations: {
2221
+ findUnique: {
2222
+ args: Prisma.FormWebhookFindUniqueArgs<ExtArgs>
2223
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormWebhookPayload> | null
2224
+ }
2225
+ findUniqueOrThrow: {
2226
+ args: Prisma.FormWebhookFindUniqueOrThrowArgs<ExtArgs>
2227
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormWebhookPayload>
2228
+ }
2229
+ findFirst: {
2230
+ args: Prisma.FormWebhookFindFirstArgs<ExtArgs>
2231
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormWebhookPayload> | null
2232
+ }
2233
+ findFirstOrThrow: {
2234
+ args: Prisma.FormWebhookFindFirstOrThrowArgs<ExtArgs>
2235
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormWebhookPayload>
2236
+ }
2237
+ findMany: {
2238
+ args: Prisma.FormWebhookFindManyArgs<ExtArgs>
2239
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormWebhookPayload>[]
2240
+ }
2241
+ create: {
2242
+ args: Prisma.FormWebhookCreateArgs<ExtArgs>
2243
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormWebhookPayload>
2244
+ }
2245
+ createMany: {
2246
+ args: Prisma.FormWebhookCreateManyArgs<ExtArgs>
2247
+ result: BatchPayload
2248
+ }
2249
+ createManyAndReturn: {
2250
+ args: Prisma.FormWebhookCreateManyAndReturnArgs<ExtArgs>
2251
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormWebhookPayload>[]
2252
+ }
2253
+ delete: {
2254
+ args: Prisma.FormWebhookDeleteArgs<ExtArgs>
2255
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormWebhookPayload>
2256
+ }
2257
+ update: {
2258
+ args: Prisma.FormWebhookUpdateArgs<ExtArgs>
2259
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormWebhookPayload>
2260
+ }
2261
+ deleteMany: {
2262
+ args: Prisma.FormWebhookDeleteManyArgs<ExtArgs>
2263
+ result: BatchPayload
2264
+ }
2265
+ updateMany: {
2266
+ args: Prisma.FormWebhookUpdateManyArgs<ExtArgs>
2267
+ result: BatchPayload
2268
+ }
2269
+ updateManyAndReturn: {
2270
+ args: Prisma.FormWebhookUpdateManyAndReturnArgs<ExtArgs>
2271
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormWebhookPayload>[]
2272
+ }
2273
+ upsert: {
2274
+ args: Prisma.FormWebhookUpsertArgs<ExtArgs>
2275
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$FormWebhookPayload>
2276
+ }
2277
+ aggregate: {
2278
+ args: Prisma.FormWebhookAggregateArgs<ExtArgs>
2279
+ result: runtime.Types.Utils.Optional<Prisma.AggregateFormWebhook>
2280
+ }
2281
+ groupBy: {
2282
+ args: Prisma.FormWebhookGroupByArgs<ExtArgs>
2283
+ result: runtime.Types.Utils.Optional<Prisma.FormWebhookGroupByOutputType>[]
2284
+ }
2285
+ count: {
2286
+ args: Prisma.FormWebhookCountArgs<ExtArgs>
2287
+ result: runtime.Types.Utils.Optional<Prisma.FormWebhookCountAggregateOutputType> | number
2288
+ }
2289
+ }
2290
+ }
2291
+ BackupRecord: {
2292
+ payload: Prisma.$BackupRecordPayload<ExtArgs>
2293
+ fields: Prisma.BackupRecordFieldRefs
2294
+ operations: {
2295
+ findUnique: {
2296
+ args: Prisma.BackupRecordFindUniqueArgs<ExtArgs>
2297
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$BackupRecordPayload> | null
2298
+ }
2299
+ findUniqueOrThrow: {
2300
+ args: Prisma.BackupRecordFindUniqueOrThrowArgs<ExtArgs>
2301
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$BackupRecordPayload>
2302
+ }
2303
+ findFirst: {
2304
+ args: Prisma.BackupRecordFindFirstArgs<ExtArgs>
2305
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$BackupRecordPayload> | null
2306
+ }
2307
+ findFirstOrThrow: {
2308
+ args: Prisma.BackupRecordFindFirstOrThrowArgs<ExtArgs>
2309
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$BackupRecordPayload>
2310
+ }
2311
+ findMany: {
2312
+ args: Prisma.BackupRecordFindManyArgs<ExtArgs>
2313
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$BackupRecordPayload>[]
2314
+ }
2315
+ create: {
2316
+ args: Prisma.BackupRecordCreateArgs<ExtArgs>
2317
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$BackupRecordPayload>
2318
+ }
2319
+ createMany: {
2320
+ args: Prisma.BackupRecordCreateManyArgs<ExtArgs>
2321
+ result: BatchPayload
2322
+ }
2323
+ createManyAndReturn: {
2324
+ args: Prisma.BackupRecordCreateManyAndReturnArgs<ExtArgs>
2325
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$BackupRecordPayload>[]
2326
+ }
2327
+ delete: {
2328
+ args: Prisma.BackupRecordDeleteArgs<ExtArgs>
2329
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$BackupRecordPayload>
2330
+ }
2331
+ update: {
2332
+ args: Prisma.BackupRecordUpdateArgs<ExtArgs>
2333
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$BackupRecordPayload>
2334
+ }
2335
+ deleteMany: {
2336
+ args: Prisma.BackupRecordDeleteManyArgs<ExtArgs>
2337
+ result: BatchPayload
2338
+ }
2339
+ updateMany: {
2340
+ args: Prisma.BackupRecordUpdateManyArgs<ExtArgs>
2341
+ result: BatchPayload
2342
+ }
2343
+ updateManyAndReturn: {
2344
+ args: Prisma.BackupRecordUpdateManyAndReturnArgs<ExtArgs>
2345
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$BackupRecordPayload>[]
2346
+ }
2347
+ upsert: {
2348
+ args: Prisma.BackupRecordUpsertArgs<ExtArgs>
2349
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$BackupRecordPayload>
2350
+ }
2351
+ aggregate: {
2352
+ args: Prisma.BackupRecordAggregateArgs<ExtArgs>
2353
+ result: runtime.Types.Utils.Optional<Prisma.AggregateBackupRecord>
2354
+ }
2355
+ groupBy: {
2356
+ args: Prisma.BackupRecordGroupByArgs<ExtArgs>
2357
+ result: runtime.Types.Utils.Optional<Prisma.BackupRecordGroupByOutputType>[]
2358
+ }
2359
+ count: {
2360
+ args: Prisma.BackupRecordCountArgs<ExtArgs>
2361
+ result: runtime.Types.Utils.Optional<Prisma.BackupRecordCountAggregateOutputType> | number
2362
+ }
2363
+ }
2364
+ }
2365
+ WebhookEndpoint: {
2366
+ payload: Prisma.$WebhookEndpointPayload<ExtArgs>
2367
+ fields: Prisma.WebhookEndpointFieldRefs
2368
+ operations: {
2369
+ findUnique: {
2370
+ args: Prisma.WebhookEndpointFindUniqueArgs<ExtArgs>
2371
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WebhookEndpointPayload> | null
2372
+ }
2373
+ findUniqueOrThrow: {
2374
+ args: Prisma.WebhookEndpointFindUniqueOrThrowArgs<ExtArgs>
2375
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WebhookEndpointPayload>
2376
+ }
2377
+ findFirst: {
2378
+ args: Prisma.WebhookEndpointFindFirstArgs<ExtArgs>
2379
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WebhookEndpointPayload> | null
2380
+ }
2381
+ findFirstOrThrow: {
2382
+ args: Prisma.WebhookEndpointFindFirstOrThrowArgs<ExtArgs>
2383
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WebhookEndpointPayload>
2384
+ }
2385
+ findMany: {
2386
+ args: Prisma.WebhookEndpointFindManyArgs<ExtArgs>
2387
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WebhookEndpointPayload>[]
2388
+ }
2389
+ create: {
2390
+ args: Prisma.WebhookEndpointCreateArgs<ExtArgs>
2391
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WebhookEndpointPayload>
2392
+ }
2393
+ createMany: {
2394
+ args: Prisma.WebhookEndpointCreateManyArgs<ExtArgs>
2395
+ result: BatchPayload
2396
+ }
2397
+ createManyAndReturn: {
2398
+ args: Prisma.WebhookEndpointCreateManyAndReturnArgs<ExtArgs>
2399
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WebhookEndpointPayload>[]
2400
+ }
2401
+ delete: {
2402
+ args: Prisma.WebhookEndpointDeleteArgs<ExtArgs>
2403
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WebhookEndpointPayload>
2404
+ }
2405
+ update: {
2406
+ args: Prisma.WebhookEndpointUpdateArgs<ExtArgs>
2407
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WebhookEndpointPayload>
2408
+ }
2409
+ deleteMany: {
2410
+ args: Prisma.WebhookEndpointDeleteManyArgs<ExtArgs>
2411
+ result: BatchPayload
2412
+ }
2413
+ updateMany: {
2414
+ args: Prisma.WebhookEndpointUpdateManyArgs<ExtArgs>
2415
+ result: BatchPayload
2416
+ }
2417
+ updateManyAndReturn: {
2418
+ args: Prisma.WebhookEndpointUpdateManyAndReturnArgs<ExtArgs>
2419
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WebhookEndpointPayload>[]
2420
+ }
2421
+ upsert: {
2422
+ args: Prisma.WebhookEndpointUpsertArgs<ExtArgs>
2423
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WebhookEndpointPayload>
2424
+ }
2425
+ aggregate: {
2426
+ args: Prisma.WebhookEndpointAggregateArgs<ExtArgs>
2427
+ result: runtime.Types.Utils.Optional<Prisma.AggregateWebhookEndpoint>
2428
+ }
2429
+ groupBy: {
2430
+ args: Prisma.WebhookEndpointGroupByArgs<ExtArgs>
2431
+ result: runtime.Types.Utils.Optional<Prisma.WebhookEndpointGroupByOutputType>[]
2432
+ }
2433
+ count: {
2434
+ args: Prisma.WebhookEndpointCountArgs<ExtArgs>
2435
+ result: runtime.Types.Utils.Optional<Prisma.WebhookEndpointCountAggregateOutputType> | number
2436
+ }
2437
+ }
2438
+ }
2439
+ WebhookDeliveryLog: {
2440
+ payload: Prisma.$WebhookDeliveryLogPayload<ExtArgs>
2441
+ fields: Prisma.WebhookDeliveryLogFieldRefs
2442
+ operations: {
2443
+ findUnique: {
2444
+ args: Prisma.WebhookDeliveryLogFindUniqueArgs<ExtArgs>
2445
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WebhookDeliveryLogPayload> | null
2446
+ }
2447
+ findUniqueOrThrow: {
2448
+ args: Prisma.WebhookDeliveryLogFindUniqueOrThrowArgs<ExtArgs>
2449
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WebhookDeliveryLogPayload>
2450
+ }
2451
+ findFirst: {
2452
+ args: Prisma.WebhookDeliveryLogFindFirstArgs<ExtArgs>
2453
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WebhookDeliveryLogPayload> | null
2454
+ }
2455
+ findFirstOrThrow: {
2456
+ args: Prisma.WebhookDeliveryLogFindFirstOrThrowArgs<ExtArgs>
2457
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WebhookDeliveryLogPayload>
2458
+ }
2459
+ findMany: {
2460
+ args: Prisma.WebhookDeliveryLogFindManyArgs<ExtArgs>
2461
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WebhookDeliveryLogPayload>[]
2462
+ }
2463
+ create: {
2464
+ args: Prisma.WebhookDeliveryLogCreateArgs<ExtArgs>
2465
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WebhookDeliveryLogPayload>
2466
+ }
2467
+ createMany: {
2468
+ args: Prisma.WebhookDeliveryLogCreateManyArgs<ExtArgs>
2469
+ result: BatchPayload
2470
+ }
2471
+ createManyAndReturn: {
2472
+ args: Prisma.WebhookDeliveryLogCreateManyAndReturnArgs<ExtArgs>
2473
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WebhookDeliveryLogPayload>[]
2474
+ }
2475
+ delete: {
2476
+ args: Prisma.WebhookDeliveryLogDeleteArgs<ExtArgs>
2477
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WebhookDeliveryLogPayload>
2478
+ }
2479
+ update: {
2480
+ args: Prisma.WebhookDeliveryLogUpdateArgs<ExtArgs>
2481
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WebhookDeliveryLogPayload>
2482
+ }
2483
+ deleteMany: {
2484
+ args: Prisma.WebhookDeliveryLogDeleteManyArgs<ExtArgs>
2485
+ result: BatchPayload
2486
+ }
2487
+ updateMany: {
2488
+ args: Prisma.WebhookDeliveryLogUpdateManyArgs<ExtArgs>
2489
+ result: BatchPayload
2490
+ }
2491
+ updateManyAndReturn: {
2492
+ args: Prisma.WebhookDeliveryLogUpdateManyAndReturnArgs<ExtArgs>
2493
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WebhookDeliveryLogPayload>[]
2494
+ }
2495
+ upsert: {
2496
+ args: Prisma.WebhookDeliveryLogUpsertArgs<ExtArgs>
2497
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$WebhookDeliveryLogPayload>
2498
+ }
2499
+ aggregate: {
2500
+ args: Prisma.WebhookDeliveryLogAggregateArgs<ExtArgs>
2501
+ result: runtime.Types.Utils.Optional<Prisma.AggregateWebhookDeliveryLog>
2502
+ }
2503
+ groupBy: {
2504
+ args: Prisma.WebhookDeliveryLogGroupByArgs<ExtArgs>
2505
+ result: runtime.Types.Utils.Optional<Prisma.WebhookDeliveryLogGroupByOutputType>[]
2506
+ }
2507
+ count: {
2508
+ args: Prisma.WebhookDeliveryLogCountArgs<ExtArgs>
2509
+ result: runtime.Types.Utils.Optional<Prisma.WebhookDeliveryLogCountAggregateOutputType> | number
2510
+ }
2511
+ }
2512
+ }
2513
+ PasswordResetToken: {
2514
+ payload: Prisma.$PasswordResetTokenPayload<ExtArgs>
2515
+ fields: Prisma.PasswordResetTokenFieldRefs
2516
+ operations: {
2517
+ findUnique: {
2518
+ args: Prisma.PasswordResetTokenFindUniqueArgs<ExtArgs>
2519
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$PasswordResetTokenPayload> | null
2520
+ }
2521
+ findUniqueOrThrow: {
2522
+ args: Prisma.PasswordResetTokenFindUniqueOrThrowArgs<ExtArgs>
2523
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$PasswordResetTokenPayload>
2524
+ }
2525
+ findFirst: {
2526
+ args: Prisma.PasswordResetTokenFindFirstArgs<ExtArgs>
2527
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$PasswordResetTokenPayload> | null
2528
+ }
2529
+ findFirstOrThrow: {
2530
+ args: Prisma.PasswordResetTokenFindFirstOrThrowArgs<ExtArgs>
2531
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$PasswordResetTokenPayload>
2532
+ }
2533
+ findMany: {
2534
+ args: Prisma.PasswordResetTokenFindManyArgs<ExtArgs>
2535
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$PasswordResetTokenPayload>[]
2536
+ }
2537
+ create: {
2538
+ args: Prisma.PasswordResetTokenCreateArgs<ExtArgs>
2539
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$PasswordResetTokenPayload>
2540
+ }
2541
+ createMany: {
2542
+ args: Prisma.PasswordResetTokenCreateManyArgs<ExtArgs>
2543
+ result: BatchPayload
2544
+ }
2545
+ createManyAndReturn: {
2546
+ args: Prisma.PasswordResetTokenCreateManyAndReturnArgs<ExtArgs>
2547
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$PasswordResetTokenPayload>[]
2548
+ }
2549
+ delete: {
2550
+ args: Prisma.PasswordResetTokenDeleteArgs<ExtArgs>
2551
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$PasswordResetTokenPayload>
2552
+ }
2553
+ update: {
2554
+ args: Prisma.PasswordResetTokenUpdateArgs<ExtArgs>
2555
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$PasswordResetTokenPayload>
2556
+ }
2557
+ deleteMany: {
2558
+ args: Prisma.PasswordResetTokenDeleteManyArgs<ExtArgs>
2559
+ result: BatchPayload
2560
+ }
2561
+ updateMany: {
2562
+ args: Prisma.PasswordResetTokenUpdateManyArgs<ExtArgs>
2563
+ result: BatchPayload
2564
+ }
2565
+ updateManyAndReturn: {
2566
+ args: Prisma.PasswordResetTokenUpdateManyAndReturnArgs<ExtArgs>
2567
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$PasswordResetTokenPayload>[]
2568
+ }
2569
+ upsert: {
2570
+ args: Prisma.PasswordResetTokenUpsertArgs<ExtArgs>
2571
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$PasswordResetTokenPayload>
2572
+ }
2573
+ aggregate: {
2574
+ args: Prisma.PasswordResetTokenAggregateArgs<ExtArgs>
2575
+ result: runtime.Types.Utils.Optional<Prisma.AggregatePasswordResetToken>
2576
+ }
2577
+ groupBy: {
2578
+ args: Prisma.PasswordResetTokenGroupByArgs<ExtArgs>
2579
+ result: runtime.Types.Utils.Optional<Prisma.PasswordResetTokenGroupByOutputType>[]
2580
+ }
2581
+ count: {
2582
+ args: Prisma.PasswordResetTokenCountArgs<ExtArgs>
2583
+ result: runtime.Types.Utils.Optional<Prisma.PasswordResetTokenCountAggregateOutputType> | number
2584
+ }
2585
+ }
2586
+ }
2587
+ Invite: {
2588
+ payload: Prisma.$InvitePayload<ExtArgs>
2589
+ fields: Prisma.InviteFieldRefs
2590
+ operations: {
2591
+ findUnique: {
2592
+ args: Prisma.InviteFindUniqueArgs<ExtArgs>
2593
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$InvitePayload> | null
2594
+ }
2595
+ findUniqueOrThrow: {
2596
+ args: Prisma.InviteFindUniqueOrThrowArgs<ExtArgs>
2597
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$InvitePayload>
2598
+ }
2599
+ findFirst: {
2600
+ args: Prisma.InviteFindFirstArgs<ExtArgs>
2601
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$InvitePayload> | null
2602
+ }
2603
+ findFirstOrThrow: {
2604
+ args: Prisma.InviteFindFirstOrThrowArgs<ExtArgs>
2605
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$InvitePayload>
2606
+ }
2607
+ findMany: {
2608
+ args: Prisma.InviteFindManyArgs<ExtArgs>
2609
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$InvitePayload>[]
2610
+ }
2611
+ create: {
2612
+ args: Prisma.InviteCreateArgs<ExtArgs>
2613
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$InvitePayload>
2614
+ }
2615
+ createMany: {
2616
+ args: Prisma.InviteCreateManyArgs<ExtArgs>
2617
+ result: BatchPayload
2618
+ }
2619
+ createManyAndReturn: {
2620
+ args: Prisma.InviteCreateManyAndReturnArgs<ExtArgs>
2621
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$InvitePayload>[]
2622
+ }
2623
+ delete: {
2624
+ args: Prisma.InviteDeleteArgs<ExtArgs>
2625
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$InvitePayload>
2626
+ }
2627
+ update: {
2628
+ args: Prisma.InviteUpdateArgs<ExtArgs>
2629
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$InvitePayload>
2630
+ }
2631
+ deleteMany: {
2632
+ args: Prisma.InviteDeleteManyArgs<ExtArgs>
2633
+ result: BatchPayload
2634
+ }
2635
+ updateMany: {
2636
+ args: Prisma.InviteUpdateManyArgs<ExtArgs>
2637
+ result: BatchPayload
2638
+ }
2639
+ updateManyAndReturn: {
2640
+ args: Prisma.InviteUpdateManyAndReturnArgs<ExtArgs>
2641
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$InvitePayload>[]
2642
+ }
2643
+ upsert: {
2644
+ args: Prisma.InviteUpsertArgs<ExtArgs>
2645
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$InvitePayload>
2646
+ }
2647
+ aggregate: {
2648
+ args: Prisma.InviteAggregateArgs<ExtArgs>
2649
+ result: runtime.Types.Utils.Optional<Prisma.AggregateInvite>
2650
+ }
2651
+ groupBy: {
2652
+ args: Prisma.InviteGroupByArgs<ExtArgs>
2653
+ result: runtime.Types.Utils.Optional<Prisma.InviteGroupByOutputType>[]
2654
+ }
2655
+ count: {
2656
+ args: Prisma.InviteCountArgs<ExtArgs>
2657
+ result: runtime.Types.Utils.Optional<Prisma.InviteCountAggregateOutputType> | number
2658
+ }
2659
+ }
2660
+ }
2661
+ ScriptTag: {
2662
+ payload: Prisma.$ScriptTagPayload<ExtArgs>
2663
+ fields: Prisma.ScriptTagFieldRefs
2664
+ operations: {
2665
+ findUnique: {
2666
+ args: Prisma.ScriptTagFindUniqueArgs<ExtArgs>
2667
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ScriptTagPayload> | null
2668
+ }
2669
+ findUniqueOrThrow: {
2670
+ args: Prisma.ScriptTagFindUniqueOrThrowArgs<ExtArgs>
2671
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ScriptTagPayload>
2672
+ }
2673
+ findFirst: {
2674
+ args: Prisma.ScriptTagFindFirstArgs<ExtArgs>
2675
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ScriptTagPayload> | null
2676
+ }
2677
+ findFirstOrThrow: {
2678
+ args: Prisma.ScriptTagFindFirstOrThrowArgs<ExtArgs>
2679
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ScriptTagPayload>
2680
+ }
2681
+ findMany: {
2682
+ args: Prisma.ScriptTagFindManyArgs<ExtArgs>
2683
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ScriptTagPayload>[]
2684
+ }
2685
+ create: {
2686
+ args: Prisma.ScriptTagCreateArgs<ExtArgs>
2687
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ScriptTagPayload>
2688
+ }
2689
+ createMany: {
2690
+ args: Prisma.ScriptTagCreateManyArgs<ExtArgs>
2691
+ result: BatchPayload
2692
+ }
2693
+ createManyAndReturn: {
2694
+ args: Prisma.ScriptTagCreateManyAndReturnArgs<ExtArgs>
2695
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ScriptTagPayload>[]
2696
+ }
2697
+ delete: {
2698
+ args: Prisma.ScriptTagDeleteArgs<ExtArgs>
2699
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ScriptTagPayload>
2700
+ }
2701
+ update: {
2702
+ args: Prisma.ScriptTagUpdateArgs<ExtArgs>
2703
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ScriptTagPayload>
2704
+ }
2705
+ deleteMany: {
2706
+ args: Prisma.ScriptTagDeleteManyArgs<ExtArgs>
2707
+ result: BatchPayload
2708
+ }
2709
+ updateMany: {
2710
+ args: Prisma.ScriptTagUpdateManyArgs<ExtArgs>
2711
+ result: BatchPayload
2712
+ }
2713
+ updateManyAndReturn: {
2714
+ args: Prisma.ScriptTagUpdateManyAndReturnArgs<ExtArgs>
2715
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ScriptTagPayload>[]
2716
+ }
2717
+ upsert: {
2718
+ args: Prisma.ScriptTagUpsertArgs<ExtArgs>
2719
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ScriptTagPayload>
2720
+ }
2721
+ aggregate: {
2722
+ args: Prisma.ScriptTagAggregateArgs<ExtArgs>
2723
+ result: runtime.Types.Utils.Optional<Prisma.AggregateScriptTag>
2724
+ }
2725
+ groupBy: {
2726
+ args: Prisma.ScriptTagGroupByArgs<ExtArgs>
2727
+ result: runtime.Types.Utils.Optional<Prisma.ScriptTagGroupByOutputType>[]
2728
+ }
2729
+ count: {
2730
+ args: Prisma.ScriptTagCountArgs<ExtArgs>
2731
+ result: runtime.Types.Utils.Optional<Prisma.ScriptTagCountAggregateOutputType> | number
2732
+ }
2733
+ }
2734
+ }
2735
+ PageTemplate: {
2736
+ payload: Prisma.$PageTemplatePayload<ExtArgs>
2737
+ fields: Prisma.PageTemplateFieldRefs
2738
+ operations: {
2739
+ findUnique: {
2740
+ args: Prisma.PageTemplateFindUniqueArgs<ExtArgs>
2741
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$PageTemplatePayload> | null
2742
+ }
2743
+ findUniqueOrThrow: {
2744
+ args: Prisma.PageTemplateFindUniqueOrThrowArgs<ExtArgs>
2745
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$PageTemplatePayload>
2746
+ }
2747
+ findFirst: {
2748
+ args: Prisma.PageTemplateFindFirstArgs<ExtArgs>
2749
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$PageTemplatePayload> | null
2750
+ }
2751
+ findFirstOrThrow: {
2752
+ args: Prisma.PageTemplateFindFirstOrThrowArgs<ExtArgs>
2753
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$PageTemplatePayload>
2754
+ }
2755
+ findMany: {
2756
+ args: Prisma.PageTemplateFindManyArgs<ExtArgs>
2757
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$PageTemplatePayload>[]
2758
+ }
2759
+ create: {
2760
+ args: Prisma.PageTemplateCreateArgs<ExtArgs>
2761
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$PageTemplatePayload>
2762
+ }
2763
+ createMany: {
2764
+ args: Prisma.PageTemplateCreateManyArgs<ExtArgs>
2765
+ result: BatchPayload
2766
+ }
2767
+ createManyAndReturn: {
2768
+ args: Prisma.PageTemplateCreateManyAndReturnArgs<ExtArgs>
2769
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$PageTemplatePayload>[]
2770
+ }
2771
+ delete: {
2772
+ args: Prisma.PageTemplateDeleteArgs<ExtArgs>
2773
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$PageTemplatePayload>
2774
+ }
2775
+ update: {
2776
+ args: Prisma.PageTemplateUpdateArgs<ExtArgs>
2777
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$PageTemplatePayload>
2778
+ }
2779
+ deleteMany: {
2780
+ args: Prisma.PageTemplateDeleteManyArgs<ExtArgs>
2781
+ result: BatchPayload
2782
+ }
2783
+ updateMany: {
2784
+ args: Prisma.PageTemplateUpdateManyArgs<ExtArgs>
2785
+ result: BatchPayload
2786
+ }
2787
+ updateManyAndReturn: {
2788
+ args: Prisma.PageTemplateUpdateManyAndReturnArgs<ExtArgs>
2789
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$PageTemplatePayload>[]
2790
+ }
2791
+ upsert: {
2792
+ args: Prisma.PageTemplateUpsertArgs<ExtArgs>
2793
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$PageTemplatePayload>
2794
+ }
2795
+ aggregate: {
2796
+ args: Prisma.PageTemplateAggregateArgs<ExtArgs>
2797
+ result: runtime.Types.Utils.Optional<Prisma.AggregatePageTemplate>
2798
+ }
2799
+ groupBy: {
2800
+ args: Prisma.PageTemplateGroupByArgs<ExtArgs>
2801
+ result: runtime.Types.Utils.Optional<Prisma.PageTemplateGroupByOutputType>[]
2802
+ }
2803
+ count: {
2804
+ args: Prisma.PageTemplateCountArgs<ExtArgs>
2805
+ result: runtime.Types.Utils.Optional<Prisma.PageTemplateCountAggregateOutputType> | number
2806
+ }
2807
+ }
2808
+ }
2809
+ SavedSection: {
2810
+ payload: Prisma.$SavedSectionPayload<ExtArgs>
2811
+ fields: Prisma.SavedSectionFieldRefs
2812
+ operations: {
2813
+ findUnique: {
2814
+ args: Prisma.SavedSectionFindUniqueArgs<ExtArgs>
2815
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SavedSectionPayload> | null
2816
+ }
2817
+ findUniqueOrThrow: {
2818
+ args: Prisma.SavedSectionFindUniqueOrThrowArgs<ExtArgs>
2819
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SavedSectionPayload>
2820
+ }
2821
+ findFirst: {
2822
+ args: Prisma.SavedSectionFindFirstArgs<ExtArgs>
2823
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SavedSectionPayload> | null
2824
+ }
2825
+ findFirstOrThrow: {
2826
+ args: Prisma.SavedSectionFindFirstOrThrowArgs<ExtArgs>
2827
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SavedSectionPayload>
2828
+ }
2829
+ findMany: {
2830
+ args: Prisma.SavedSectionFindManyArgs<ExtArgs>
2831
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SavedSectionPayload>[]
2832
+ }
2833
+ create: {
2834
+ args: Prisma.SavedSectionCreateArgs<ExtArgs>
2835
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SavedSectionPayload>
2836
+ }
2837
+ createMany: {
2838
+ args: Prisma.SavedSectionCreateManyArgs<ExtArgs>
2839
+ result: BatchPayload
2840
+ }
2841
+ createManyAndReturn: {
2842
+ args: Prisma.SavedSectionCreateManyAndReturnArgs<ExtArgs>
2843
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SavedSectionPayload>[]
2844
+ }
2845
+ delete: {
2846
+ args: Prisma.SavedSectionDeleteArgs<ExtArgs>
2847
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SavedSectionPayload>
2848
+ }
2849
+ update: {
2850
+ args: Prisma.SavedSectionUpdateArgs<ExtArgs>
2851
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SavedSectionPayload>
2852
+ }
2853
+ deleteMany: {
2854
+ args: Prisma.SavedSectionDeleteManyArgs<ExtArgs>
2855
+ result: BatchPayload
2856
+ }
2857
+ updateMany: {
2858
+ args: Prisma.SavedSectionUpdateManyArgs<ExtArgs>
2859
+ result: BatchPayload
2860
+ }
2861
+ updateManyAndReturn: {
2862
+ args: Prisma.SavedSectionUpdateManyAndReturnArgs<ExtArgs>
2863
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SavedSectionPayload>[]
2864
+ }
2865
+ upsert: {
2866
+ args: Prisma.SavedSectionUpsertArgs<ExtArgs>
2867
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$SavedSectionPayload>
2868
+ }
2869
+ aggregate: {
2870
+ args: Prisma.SavedSectionAggregateArgs<ExtArgs>
2871
+ result: runtime.Types.Utils.Optional<Prisma.AggregateSavedSection>
2872
+ }
2873
+ groupBy: {
2874
+ args: Prisma.SavedSectionGroupByArgs<ExtArgs>
2875
+ result: runtime.Types.Utils.Optional<Prisma.SavedSectionGroupByOutputType>[]
2876
+ }
2877
+ count: {
2878
+ args: Prisma.SavedSectionCountArgs<ExtArgs>
2879
+ result: runtime.Types.Utils.Optional<Prisma.SavedSectionCountAggregateOutputType> | number
2880
+ }
2881
+ }
2882
+ }
2883
+ ApiRequestMetric: {
2884
+ payload: Prisma.$ApiRequestMetricPayload<ExtArgs>
2885
+ fields: Prisma.ApiRequestMetricFieldRefs
2886
+ operations: {
2887
+ findUnique: {
2888
+ args: Prisma.ApiRequestMetricFindUniqueArgs<ExtArgs>
2889
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiRequestMetricPayload> | null
2890
+ }
2891
+ findUniqueOrThrow: {
2892
+ args: Prisma.ApiRequestMetricFindUniqueOrThrowArgs<ExtArgs>
2893
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiRequestMetricPayload>
2894
+ }
2895
+ findFirst: {
2896
+ args: Prisma.ApiRequestMetricFindFirstArgs<ExtArgs>
2897
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiRequestMetricPayload> | null
2898
+ }
2899
+ findFirstOrThrow: {
2900
+ args: Prisma.ApiRequestMetricFindFirstOrThrowArgs<ExtArgs>
2901
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiRequestMetricPayload>
2902
+ }
2903
+ findMany: {
2904
+ args: Prisma.ApiRequestMetricFindManyArgs<ExtArgs>
2905
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiRequestMetricPayload>[]
2906
+ }
2907
+ create: {
2908
+ args: Prisma.ApiRequestMetricCreateArgs<ExtArgs>
2909
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiRequestMetricPayload>
2910
+ }
2911
+ createMany: {
2912
+ args: Prisma.ApiRequestMetricCreateManyArgs<ExtArgs>
2913
+ result: BatchPayload
2914
+ }
2915
+ createManyAndReturn: {
2916
+ args: Prisma.ApiRequestMetricCreateManyAndReturnArgs<ExtArgs>
2917
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiRequestMetricPayload>[]
2918
+ }
2919
+ delete: {
2920
+ args: Prisma.ApiRequestMetricDeleteArgs<ExtArgs>
2921
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiRequestMetricPayload>
2922
+ }
2923
+ update: {
2924
+ args: Prisma.ApiRequestMetricUpdateArgs<ExtArgs>
2925
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiRequestMetricPayload>
2926
+ }
2927
+ deleteMany: {
2928
+ args: Prisma.ApiRequestMetricDeleteManyArgs<ExtArgs>
2929
+ result: BatchPayload
2930
+ }
2931
+ updateMany: {
2932
+ args: Prisma.ApiRequestMetricUpdateManyArgs<ExtArgs>
2933
+ result: BatchPayload
2934
+ }
2935
+ updateManyAndReturn: {
2936
+ args: Prisma.ApiRequestMetricUpdateManyAndReturnArgs<ExtArgs>
2937
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiRequestMetricPayload>[]
2938
+ }
2939
+ upsert: {
2940
+ args: Prisma.ApiRequestMetricUpsertArgs<ExtArgs>
2941
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiRequestMetricPayload>
2942
+ }
2943
+ aggregate: {
2944
+ args: Prisma.ApiRequestMetricAggregateArgs<ExtArgs>
2945
+ result: runtime.Types.Utils.Optional<Prisma.AggregateApiRequestMetric>
2946
+ }
2947
+ groupBy: {
2948
+ args: Prisma.ApiRequestMetricGroupByArgs<ExtArgs>
2949
+ result: runtime.Types.Utils.Optional<Prisma.ApiRequestMetricGroupByOutputType>[]
2950
+ }
2951
+ count: {
2952
+ args: Prisma.ApiRequestMetricCountArgs<ExtArgs>
2953
+ result: runtime.Types.Utils.Optional<Prisma.ApiRequestMetricCountAggregateOutputType> | number
2954
+ }
2955
+ }
2956
+ }
2957
+ ContentIssue: {
2958
+ payload: Prisma.$ContentIssuePayload<ExtArgs>
2959
+ fields: Prisma.ContentIssueFieldRefs
2960
+ operations: {
2961
+ findUnique: {
2962
+ args: Prisma.ContentIssueFindUniqueArgs<ExtArgs>
2963
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentIssuePayload> | null
2964
+ }
2965
+ findUniqueOrThrow: {
2966
+ args: Prisma.ContentIssueFindUniqueOrThrowArgs<ExtArgs>
2967
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentIssuePayload>
2968
+ }
2969
+ findFirst: {
2970
+ args: Prisma.ContentIssueFindFirstArgs<ExtArgs>
2971
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentIssuePayload> | null
2972
+ }
2973
+ findFirstOrThrow: {
2974
+ args: Prisma.ContentIssueFindFirstOrThrowArgs<ExtArgs>
2975
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentIssuePayload>
2976
+ }
2977
+ findMany: {
2978
+ args: Prisma.ContentIssueFindManyArgs<ExtArgs>
2979
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentIssuePayload>[]
2980
+ }
2981
+ create: {
2982
+ args: Prisma.ContentIssueCreateArgs<ExtArgs>
2983
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentIssuePayload>
2984
+ }
2985
+ createMany: {
2986
+ args: Prisma.ContentIssueCreateManyArgs<ExtArgs>
2987
+ result: BatchPayload
2988
+ }
2989
+ createManyAndReturn: {
2990
+ args: Prisma.ContentIssueCreateManyAndReturnArgs<ExtArgs>
2991
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentIssuePayload>[]
2992
+ }
2993
+ delete: {
2994
+ args: Prisma.ContentIssueDeleteArgs<ExtArgs>
2995
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentIssuePayload>
2996
+ }
2997
+ update: {
2998
+ args: Prisma.ContentIssueUpdateArgs<ExtArgs>
2999
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentIssuePayload>
3000
+ }
3001
+ deleteMany: {
3002
+ args: Prisma.ContentIssueDeleteManyArgs<ExtArgs>
3003
+ result: BatchPayload
3004
+ }
3005
+ updateMany: {
3006
+ args: Prisma.ContentIssueUpdateManyArgs<ExtArgs>
3007
+ result: BatchPayload
3008
+ }
3009
+ updateManyAndReturn: {
3010
+ args: Prisma.ContentIssueUpdateManyAndReturnArgs<ExtArgs>
3011
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentIssuePayload>[]
3012
+ }
3013
+ upsert: {
3014
+ args: Prisma.ContentIssueUpsertArgs<ExtArgs>
3015
+ result: runtime.Types.Utils.PayloadToResult<Prisma.$ContentIssuePayload>
3016
+ }
3017
+ aggregate: {
3018
+ args: Prisma.ContentIssueAggregateArgs<ExtArgs>
3019
+ result: runtime.Types.Utils.Optional<Prisma.AggregateContentIssue>
3020
+ }
3021
+ groupBy: {
3022
+ args: Prisma.ContentIssueGroupByArgs<ExtArgs>
3023
+ result: runtime.Types.Utils.Optional<Prisma.ContentIssueGroupByOutputType>[]
3024
+ }
3025
+ count: {
3026
+ args: Prisma.ContentIssueCountArgs<ExtArgs>
3027
+ result: runtime.Types.Utils.Optional<Prisma.ContentIssueCountAggregateOutputType> | number
3028
+ }
3029
+ }
3030
+ }
3031
+ }
3032
+ } & {
3033
+ other: {
3034
+ payload: any
3035
+ operations: {
3036
+ $executeRaw: {
3037
+ args: [query: TemplateStringsArray | Sql, ...values: any[]],
3038
+ result: any
3039
+ }
3040
+ $executeRawUnsafe: {
3041
+ args: [query: string, ...values: any[]],
3042
+ result: any
3043
+ }
3044
+ $queryRaw: {
3045
+ args: [query: TemplateStringsArray | Sql, ...values: any[]],
3046
+ result: any
3047
+ }
3048
+ $queryRawUnsafe: {
3049
+ args: [query: string, ...values: any[]],
3050
+ result: any
3051
+ }
3052
+ }
3053
+ }
3054
+ }
3055
+
3056
+ /**
3057
+ * Enums
3058
+ */
3059
+
3060
+ export const TransactionIsolationLevel = runtime.makeStrictEnum({
3061
+ ReadUncommitted: 'ReadUncommitted',
3062
+ ReadCommitted: 'ReadCommitted',
3063
+ RepeatableRead: 'RepeatableRead',
3064
+ Serializable: 'Serializable'
3065
+ } as const)
3066
+
3067
+ export type TransactionIsolationLevel = (typeof TransactionIsolationLevel)[keyof typeof TransactionIsolationLevel]
3068
+
3069
+
3070
+ export const UserScalarFieldEnum = {
3071
+ id: 'id',
3072
+ email: 'email',
3073
+ name: 'name',
3074
+ avatarUrl: 'avatarUrl',
3075
+ role: 'role',
3076
+ passwordHash: 'passwordHash',
3077
+ totpSecret: 'totpSecret',
3078
+ totpEnabled: 'totpEnabled',
3079
+ backupCodes: 'backupCodes',
3080
+ authProvider: 'authProvider',
3081
+ isActive: 'isActive',
3082
+ isApproved: 'isApproved',
3083
+ emailVerified: 'emailVerified',
3084
+ lastLoginAt: 'lastLoginAt',
3085
+ createdAt: 'createdAt',
3086
+ updatedAt: 'updatedAt',
3087
+ suspendedAt: 'suspendedAt',
3088
+ lockedAt: 'lockedAt',
3089
+ forcePasswordReset: 'forcePasswordReset',
3090
+ mfaRequired: 'mfaRequired',
3091
+ failedLoginCount: 'failedLoginCount',
3092
+ lastActiveAt: 'lastActiveAt',
3093
+ invitedById: 'invitedById',
3094
+ acceptedInviteAt: 'acceptedInviteAt'
3095
+ } as const
3096
+
3097
+ export type UserScalarFieldEnum = (typeof UserScalarFieldEnum)[keyof typeof UserScalarFieldEnum]
3098
+
3099
+
3100
+ export const RelationLoadStrategy = {
3101
+ query: 'query',
3102
+ join: 'join'
3103
+ } as const
3104
+
3105
+ export type RelationLoadStrategy = (typeof RelationLoadStrategy)[keyof typeof RelationLoadStrategy]
3106
+
3107
+
3108
+ export const OAuthAccountScalarFieldEnum = {
3109
+ id: 'id',
3110
+ userId: 'userId',
3111
+ provider: 'provider',
3112
+ providerAccountId: 'providerAccountId',
3113
+ accessToken: 'accessToken',
3114
+ refreshToken: 'refreshToken',
3115
+ expiresAt: 'expiresAt',
3116
+ createdAt: 'createdAt'
3117
+ } as const
3118
+
3119
+ export type OAuthAccountScalarFieldEnum = (typeof OAuthAccountScalarFieldEnum)[keyof typeof OAuthAccountScalarFieldEnum]
3120
+
3121
+
3122
+ export const SessionScalarFieldEnum = {
3123
+ id: 'id',
3124
+ userId: 'userId',
3125
+ token: 'token',
3126
+ expiresAt: 'expiresAt',
3127
+ revokedAt: 'revokedAt',
3128
+ ipAddress: 'ipAddress',
3129
+ userAgent: 'userAgent',
3130
+ fingerprintHash: 'fingerprintHash',
3131
+ createdAt: 'createdAt'
3132
+ } as const
3133
+
3134
+ export type SessionScalarFieldEnum = (typeof SessionScalarFieldEnum)[keyof typeof SessionScalarFieldEnum]
3135
+
3136
+
3137
+ export const ApiKeyScalarFieldEnum = {
3138
+ id: 'id',
3139
+ name: 'name',
3140
+ keyHash: 'keyHash',
3141
+ keyPrefix: 'keyPrefix',
3142
+ userId: 'userId',
3143
+ scopes: 'scopes',
3144
+ ipRestrictions: 'ipRestrictions',
3145
+ expiresAt: 'expiresAt',
3146
+ lastUsedAt: 'lastUsedAt',
3147
+ revokedAt: 'revokedAt',
3148
+ createdAt: 'createdAt'
3149
+ } as const
3150
+
3151
+ export type ApiKeyScalarFieldEnum = (typeof ApiKeyScalarFieldEnum)[keyof typeof ApiKeyScalarFieldEnum]
3152
+
3153
+
3154
+ export const AuditLogScalarFieldEnum = {
3155
+ id: 'id',
3156
+ event: 'event',
3157
+ userId: 'userId',
3158
+ ipAddress: 'ipAddress',
3159
+ userAgent: 'userAgent',
3160
+ details: 'details',
3161
+ timestamp: 'timestamp'
3162
+ } as const
3163
+
3164
+ export type AuditLogScalarFieldEnum = (typeof AuditLogScalarFieldEnum)[keyof typeof AuditLogScalarFieldEnum]
3165
+
3166
+
3167
+ export const FolderScalarFieldEnum = {
3168
+ id: 'id',
3169
+ name: 'name',
3170
+ scope: 'scope',
3171
+ parentId: 'parentId',
3172
+ position: 'position',
3173
+ createdAt: 'createdAt',
3174
+ updatedAt: 'updatedAt'
3175
+ } as const
3176
+
3177
+ export type FolderScalarFieldEnum = (typeof FolderScalarFieldEnum)[keyof typeof FolderScalarFieldEnum]
3178
+
3179
+
3180
+ export const DocumentScalarFieldEnum = {
3181
+ id: 'id',
3182
+ collection: 'collection',
3183
+ title: 'title',
3184
+ slug: 'slug',
3185
+ data: 'data',
3186
+ status: 'status',
3187
+ locale: 'locale',
3188
+ localeGroupId: 'localeGroupId',
3189
+ createdById: 'createdById',
3190
+ updatedById: 'updatedById',
3191
+ publishedAt: 'publishedAt',
3192
+ scheduledAt: 'scheduledAt',
3193
+ scheduledUnpublishAt: 'scheduledUnpublishAt',
3194
+ deletedAt: 'deletedAt',
3195
+ plainText: 'plainText',
3196
+ contentHash: 'contentHash',
3197
+ structuredData: 'structuredData',
3198
+ contentGraph: 'contentGraph',
3199
+ siteId: 'siteId',
3200
+ templateId: 'templateId',
3201
+ workflowStage: 'workflowStage',
3202
+ reviewerId: 'reviewerId',
3203
+ reviewNote: 'reviewNote',
3204
+ folderId: 'folderId',
3205
+ createdAt: 'createdAt',
3206
+ updatedAt: 'updatedAt'
3207
+ } as const
3208
+
3209
+ export type DocumentScalarFieldEnum = (typeof DocumentScalarFieldEnum)[keyof typeof DocumentScalarFieldEnum]
3210
+
3211
+
3212
+ export const VersionScalarFieldEnum = {
3213
+ id: 'id',
3214
+ documentId: 'documentId',
3215
+ data: 'data',
3216
+ changedById: 'changedById',
3217
+ changeType: 'changeType',
3218
+ createdAt: 'createdAt'
3219
+ } as const
3220
+
3221
+ export type VersionScalarFieldEnum = (typeof VersionScalarFieldEnum)[keyof typeof VersionScalarFieldEnum]
3222
+
3223
+
3224
+ export const MediaScalarFieldEnum = {
3225
+ id: 'id',
3226
+ filename: 'filename',
3227
+ storageKey: 'storageKey',
3228
+ mimeType: 'mimeType',
3229
+ fileSize: 'fileSize',
3230
+ width: 'width',
3231
+ height: 'height',
3232
+ altText: 'altText',
3233
+ title: 'title',
3234
+ uploadedById: 'uploadedById',
3235
+ focalPointX: 'focalPointX',
3236
+ focalPointY: 'focalPointY',
3237
+ blurHash: 'blurHash',
3238
+ aiAltText: 'aiAltText',
3239
+ aiTags: 'aiTags',
3240
+ aiDescription: 'aiDescription',
3241
+ folderId: 'folderId',
3242
+ createdAt: 'createdAt',
3243
+ updatedAt: 'updatedAt',
3244
+ originalFileName: 'originalFileName',
3245
+ caption: 'caption',
3246
+ description: 'description',
3247
+ focusKeyword: 'focusKeyword',
3248
+ tags: 'tags',
3249
+ publicUrl: 'publicUrl',
3250
+ storageProvider: 'storageProvider',
3251
+ durationSeconds: 'durationSeconds',
3252
+ thumbnailUrl: 'thumbnailUrl',
3253
+ responsiveVariants: 'responsiveVariants',
3254
+ status: 'status',
3255
+ deletedAt: 'deletedAt'
3256
+ } as const
3257
+
3258
+ export type MediaScalarFieldEnum = (typeof MediaScalarFieldEnum)[keyof typeof MediaScalarFieldEnum]
3259
+
3260
+
3261
+ export const MediaUsageScalarFieldEnum = {
3262
+ id: 'id',
3263
+ mediaId: 'mediaId',
3264
+ documentId: 'documentId',
3265
+ fieldPath: 'fieldPath',
3266
+ createdAt: 'createdAt'
3267
+ } as const
3268
+
3269
+ export type MediaUsageScalarFieldEnum = (typeof MediaUsageScalarFieldEnum)[keyof typeof MediaUsageScalarFieldEnum]
3270
+
3271
+
3272
+ export const ContentLockScalarFieldEnum = {
3273
+ id: 'id',
3274
+ documentId: 'documentId',
3275
+ userId: 'userId',
3276
+ lockedAt: 'lockedAt',
3277
+ expiresAt: 'expiresAt'
3278
+ } as const
3279
+
3280
+ export type ContentLockScalarFieldEnum = (typeof ContentLockScalarFieldEnum)[keyof typeof ContentLockScalarFieldEnum]
3281
+
3282
+
3283
+ export const InAppNotificationScalarFieldEnum = {
3284
+ id: 'id',
3285
+ userId: 'userId',
3286
+ type: 'type',
3287
+ title: 'title',
3288
+ message: 'message',
3289
+ link: 'link',
3290
+ read: 'read',
3291
+ createdAt: 'createdAt'
3292
+ } as const
3293
+
3294
+ export type InAppNotificationScalarFieldEnum = (typeof InAppNotificationScalarFieldEnum)[keyof typeof InAppNotificationScalarFieldEnum]
3295
+
3296
+
3297
+ export const ContentTemplateScalarFieldEnum = {
3298
+ id: 'id',
3299
+ name: 'name',
3300
+ collection: 'collection',
3301
+ templateData: 'templateData',
3302
+ createdById: 'createdById',
3303
+ createdAt: 'createdAt',
3304
+ updatedAt: 'updatedAt'
3305
+ } as const
3306
+
3307
+ export type ContentTemplateScalarFieldEnum = (typeof ContentTemplateScalarFieldEnum)[keyof typeof ContentTemplateScalarFieldEnum]
3308
+
3309
+
3310
+ export const SiteScalarFieldEnum = {
3311
+ id: 'id',
3312
+ domain: 'domain',
3313
+ name: 'name',
3314
+ configOverrides: 'configOverrides',
3315
+ isDefault: 'isDefault',
3316
+ createdAt: 'createdAt',
3317
+ updatedAt: 'updatedAt'
3318
+ } as const
3319
+
3320
+ export type SiteScalarFieldEnum = (typeof SiteScalarFieldEnum)[keyof typeof SiteScalarFieldEnum]
3321
+
3322
+
3323
+ export const WorkflowStateScalarFieldEnum = {
3324
+ id: 'id',
3325
+ documentId: 'documentId',
3326
+ currentStep: 'currentStep',
3327
+ assignedToId: 'assignedToId',
3328
+ status: 'status',
3329
+ definition: 'definition',
3330
+ createdAt: 'createdAt',
3331
+ updatedAt: 'updatedAt'
3332
+ } as const
3333
+
3334
+ export type WorkflowStateScalarFieldEnum = (typeof WorkflowStateScalarFieldEnum)[keyof typeof WorkflowStateScalarFieldEnum]
3335
+
3336
+
3337
+ export const RedirectScalarFieldEnum = {
3338
+ id: 'id',
3339
+ source: 'source',
3340
+ destination: 'destination',
3341
+ statusCode: 'statusCode',
3342
+ isRegex: 'isRegex',
3343
+ notes: 'notes',
3344
+ enabled: 'enabled',
3345
+ priority: 'priority',
3346
+ preserveQuery: 'preserveQuery',
3347
+ source_kind: 'source_kind',
3348
+ hits: 'hits',
3349
+ lastHitAt: 'lastHitAt',
3350
+ createdById: 'createdById',
3351
+ createdAt: 'createdAt',
3352
+ updatedAt: 'updatedAt'
3353
+ } as const
3354
+
3355
+ export type RedirectScalarFieldEnum = (typeof RedirectScalarFieldEnum)[keyof typeof RedirectScalarFieldEnum]
3356
+
3357
+
3358
+ export const SeoAuditRunScalarFieldEnum = {
3359
+ id: 'id',
3360
+ status: 'status',
3361
+ scope: 'scope',
3362
+ startedById: 'startedById',
3363
+ startedAt: 'startedAt',
3364
+ finishedAt: 'finishedAt',
3365
+ siteScoreBefore: 'siteScoreBefore',
3366
+ siteScoreAfter: 'siteScoreAfter',
3367
+ pagesScanned: 'pagesScanned',
3368
+ issuesFound: 'issuesFound',
3369
+ criticalCount: 'criticalCount',
3370
+ warningCount: 'warningCount',
3371
+ infoCount: 'infoCount',
3372
+ errorMessage: 'errorMessage',
3373
+ metadata: 'metadata'
3374
+ } as const
3375
+
3376
+ export type SeoAuditRunScalarFieldEnum = (typeof SeoAuditRunScalarFieldEnum)[keyof typeof SeoAuditRunScalarFieldEnum]
3377
+
3378
+
3379
+ export const SeoIssueScalarFieldEnum = {
3380
+ id: 'id',
3381
+ auditRunId: 'auditRunId',
3382
+ issueKey: 'issueKey',
3383
+ entityType: 'entityType',
3384
+ entityId: 'entityId',
3385
+ entityTitle: 'entityTitle',
3386
+ url: 'url',
3387
+ severity: 'severity',
3388
+ category: 'category',
3389
+ type: 'type',
3390
+ title: 'title',
3391
+ description: 'description',
3392
+ impact: 'impact',
3393
+ recommendation: 'recommendation',
3394
+ status: 'status',
3395
+ fixable: 'fixable',
3396
+ fixActionType: 'fixActionType',
3397
+ relatedEntityIds: 'relatedEntityIds',
3398
+ source: 'source',
3399
+ firstDetectedAt: 'firstDetectedAt',
3400
+ lastDetectedAt: 'lastDetectedAt',
3401
+ resolvedAt: 'resolvedAt',
3402
+ resolvedById: 'resolvedById',
3403
+ metadata: 'metadata'
3404
+ } as const
3405
+
3406
+ export type SeoIssueScalarFieldEnum = (typeof SeoIssueScalarFieldEnum)[keyof typeof SeoIssueScalarFieldEnum]
3407
+
3408
+
3409
+ export const Redirect404HitScalarFieldEnum = {
3410
+ id: 'id',
3411
+ path: 'path',
3412
+ hits: 'hits',
3413
+ referrer: 'referrer',
3414
+ resolvedAt: 'resolvedAt',
3415
+ firstSeenAt: 'firstSeenAt',
3416
+ lastSeenAt: 'lastSeenAt'
3417
+ } as const
3418
+
3419
+ export type Redirect404HitScalarFieldEnum = (typeof Redirect404HitScalarFieldEnum)[keyof typeof Redirect404HitScalarFieldEnum]
3420
+
3421
+
3422
+ export const AiCrawlerHitScalarFieldEnum = {
3423
+ id: 'id',
3424
+ bot: 'bot',
3425
+ surface: 'surface',
3426
+ category: 'category',
3427
+ hits: 'hits',
3428
+ firstSeenAt: 'firstSeenAt',
3429
+ lastSeenAt: 'lastSeenAt'
3430
+ } as const
3431
+
3432
+ export type AiCrawlerHitScalarFieldEnum = (typeof AiCrawlerHitScalarFieldEnum)[keyof typeof AiCrawlerHitScalarFieldEnum]
3433
+
3434
+
3435
+ export const RedirectSuggestionScalarFieldEnum = {
3436
+ id: 'id',
3437
+ fromPath: 'fromPath',
3438
+ toPath: 'toPath',
3439
+ confidence: 'confidence',
3440
+ reason: 'reason',
3441
+ status: 'status',
3442
+ source: 'source',
3443
+ metadata: 'metadata',
3444
+ createdAt: 'createdAt',
3445
+ updatedAt: 'updatedAt'
3446
+ } as const
3447
+
3448
+ export type RedirectSuggestionScalarFieldEnum = (typeof RedirectSuggestionScalarFieldEnum)[keyof typeof RedirectSuggestionScalarFieldEnum]
3449
+
3450
+
3451
+ export const FormSchemaVersionScalarFieldEnum = {
3452
+ id: 'id',
3453
+ formId: 'formId',
3454
+ version: 'version',
3455
+ fields: 'fields',
3456
+ notes: 'notes',
3457
+ createdById: 'createdById',
3458
+ createdAt: 'createdAt'
3459
+ } as const
3460
+
3461
+ export type FormSchemaVersionScalarFieldEnum = (typeof FormSchemaVersionScalarFieldEnum)[keyof typeof FormSchemaVersionScalarFieldEnum]
3462
+
3463
+
3464
+ export const FormSubmissionScalarFieldEnum = {
3465
+ id: 'id',
3466
+ entryNumber: 'entryNumber',
3467
+ formId: 'formId',
3468
+ schemaVersionId: 'schemaVersionId',
3469
+ data: 'data',
3470
+ normalizedData: 'normalizedData',
3471
+ attribution: 'attribution',
3472
+ senderName: 'senderName',
3473
+ senderEmail: 'senderEmail',
3474
+ senderPhone: 'senderPhone',
3475
+ preview: 'preview',
3476
+ status: 'status',
3477
+ unread: 'unread',
3478
+ starred: 'starred',
3479
+ archived: 'archived',
3480
+ spamStatus: 'spamStatus',
3481
+ ipAddressHash: 'ipAddressHash',
3482
+ userAgent: 'userAgent',
3483
+ referrer: 'referrer',
3484
+ pageUrl: 'pageUrl',
3485
+ utmSource: 'utmSource',
3486
+ utmMedium: 'utmMedium',
3487
+ utmCampaign: 'utmCampaign',
3488
+ submittedAt: 'submittedAt',
3489
+ readAt: 'readAt',
3490
+ archivedAt: 'archivedAt',
3491
+ createdAt: 'createdAt',
3492
+ updatedAt: 'updatedAt'
3493
+ } as const
3494
+
3495
+ export type FormSubmissionScalarFieldEnum = (typeof FormSubmissionScalarFieldEnum)[keyof typeof FormSubmissionScalarFieldEnum]
3496
+
3497
+
3498
+ export const FormSubmissionFileScalarFieldEnum = {
3499
+ id: 'id',
3500
+ submissionId: 'submissionId',
3501
+ fieldKey: 'fieldKey',
3502
+ mediaAssetId: 'mediaAssetId',
3503
+ fileName: 'fileName',
3504
+ mimeType: 'mimeType',
3505
+ sizeBytes: 'sizeBytes',
3506
+ storageKey: 'storageKey',
3507
+ publicUrl: 'publicUrl',
3508
+ secureDownloadUrl: 'secureDownloadUrl',
3509
+ createdAt: 'createdAt'
3510
+ } as const
3511
+
3512
+ export type FormSubmissionFileScalarFieldEnum = (typeof FormSubmissionFileScalarFieldEnum)[keyof typeof FormSubmissionFileScalarFieldEnum]
3513
+
3514
+
3515
+ export const FormWebhookScalarFieldEnum = {
3516
+ id: 'id',
3517
+ formId: 'formId',
3518
+ url: 'url',
3519
+ secret: 'secret',
3520
+ enabled: 'enabled',
3521
+ events: 'events',
3522
+ retryCount: 'retryCount',
3523
+ lastDeliveryAt: 'lastDeliveryAt',
3524
+ lastDeliveryStatus: 'lastDeliveryStatus',
3525
+ createdAt: 'createdAt',
3526
+ updatedAt: 'updatedAt'
3527
+ } as const
3528
+
3529
+ export type FormWebhookScalarFieldEnum = (typeof FormWebhookScalarFieldEnum)[keyof typeof FormWebhookScalarFieldEnum]
3530
+
3531
+
3532
+ export const BackupRecordScalarFieldEnum = {
3533
+ id: 'id',
3534
+ filename: 'filename',
3535
+ storageKey: 'storageKey',
3536
+ sizeBytes: 'sizeBytes',
3537
+ type: 'type',
3538
+ metadata: 'metadata',
3539
+ createdAt: 'createdAt'
3540
+ } as const
3541
+
3542
+ export type BackupRecordScalarFieldEnum = (typeof BackupRecordScalarFieldEnum)[keyof typeof BackupRecordScalarFieldEnum]
3543
+
3544
+
3545
+ export const WebhookEndpointScalarFieldEnum = {
3546
+ id: 'id',
3547
+ url: 'url',
3548
+ events: 'events',
3549
+ secret: 'secret',
3550
+ active: 'active',
3551
+ name: 'name',
3552
+ createdAt: 'createdAt',
3553
+ updatedAt: 'updatedAt'
3554
+ } as const
3555
+
3556
+ export type WebhookEndpointScalarFieldEnum = (typeof WebhookEndpointScalarFieldEnum)[keyof typeof WebhookEndpointScalarFieldEnum]
3557
+
3558
+
3559
+ export const WebhookDeliveryLogScalarFieldEnum = {
3560
+ id: 'id',
3561
+ endpointId: 'endpointId',
3562
+ event: 'event',
3563
+ payload: 'payload',
3564
+ status: 'status',
3565
+ attempts: 'attempts',
3566
+ maxAttempts: 'maxAttempts',
3567
+ lastAttemptAt: 'lastAttemptAt',
3568
+ nextRetryAt: 'nextRetryAt',
3569
+ responseStatus: 'responseStatus',
3570
+ responseBody: 'responseBody',
3571
+ createdAt: 'createdAt'
3572
+ } as const
3573
+
3574
+ export type WebhookDeliveryLogScalarFieldEnum = (typeof WebhookDeliveryLogScalarFieldEnum)[keyof typeof WebhookDeliveryLogScalarFieldEnum]
3575
+
3576
+
3577
+ export const PasswordResetTokenScalarFieldEnum = {
3578
+ id: 'id',
3579
+ userId: 'userId',
3580
+ tokenHash: 'tokenHash',
3581
+ expiresAt: 'expiresAt',
3582
+ usedAt: 'usedAt',
3583
+ createdAt: 'createdAt'
3584
+ } as const
3585
+
3586
+ export type PasswordResetTokenScalarFieldEnum = (typeof PasswordResetTokenScalarFieldEnum)[keyof typeof PasswordResetTokenScalarFieldEnum]
3587
+
3588
+
3589
+ export const InviteScalarFieldEnum = {
3590
+ id: 'id',
3591
+ email: 'email',
3592
+ role: 'role',
3593
+ status: 'status',
3594
+ tokenHash: 'tokenHash',
3595
+ message: 'message',
3596
+ invitedByUserId: 'invitedByUserId',
3597
+ acceptedUserId: 'acceptedUserId',
3598
+ expiresAt: 'expiresAt',
3599
+ acceptedAt: 'acceptedAt',
3600
+ cancelledAt: 'cancelledAt',
3601
+ createdAt: 'createdAt',
3602
+ updatedAt: 'updatedAt'
3603
+ } as const
3604
+
3605
+ export type InviteScalarFieldEnum = (typeof InviteScalarFieldEnum)[keyof typeof InviteScalarFieldEnum]
3606
+
3607
+
3608
+ export const ScriptTagScalarFieldEnum = {
3609
+ id: 'id',
3610
+ name: 'name',
3611
+ code: 'code',
3612
+ placement: 'placement',
3613
+ scope: 'scope',
3614
+ targetPaths: 'targetPaths',
3615
+ priority: 'priority',
3616
+ enabled: 'enabled',
3617
+ loadAsync: 'loadAsync',
3618
+ disableInPreview: 'disableInPreview',
3619
+ consentCategory: 'consentCategory',
3620
+ createdAt: 'createdAt',
3621
+ updatedAt: 'updatedAt'
3622
+ } as const
3623
+
3624
+ export type ScriptTagScalarFieldEnum = (typeof ScriptTagScalarFieldEnum)[keyof typeof ScriptTagScalarFieldEnum]
3625
+
3626
+
3627
+ export const PageTemplateScalarFieldEnum = {
3628
+ id: 'id',
3629
+ name: 'name',
3630
+ description: 'description',
3631
+ category: 'category',
3632
+ tree: 'tree',
3633
+ thumbnail: 'thumbnail',
3634
+ builtIn: 'builtIn',
3635
+ createdAt: 'createdAt',
3636
+ updatedAt: 'updatedAt'
3637
+ } as const
3638
+
3639
+ export type PageTemplateScalarFieldEnum = (typeof PageTemplateScalarFieldEnum)[keyof typeof PageTemplateScalarFieldEnum]
3640
+
3641
+
3642
+ export const SavedSectionScalarFieldEnum = {
3643
+ id: 'id',
3644
+ name: 'name',
3645
+ description: 'description',
3646
+ category: 'category',
3647
+ tree: 'tree',
3648
+ thumbnail: 'thumbnail',
3649
+ usageCount: 'usageCount',
3650
+ createdAt: 'createdAt',
3651
+ updatedAt: 'updatedAt'
3652
+ } as const
3653
+
3654
+ export type SavedSectionScalarFieldEnum = (typeof SavedSectionScalarFieldEnum)[keyof typeof SavedSectionScalarFieldEnum]
3655
+
3656
+
3657
+ export const ApiRequestMetricScalarFieldEnum = {
3658
+ id: 'id',
3659
+ bucketStart: 'bucketStart',
3660
+ route: 'route',
3661
+ statusBucket: 'statusBucket',
3662
+ count: 'count',
3663
+ sumLatencyMs: 'sumLatencyMs',
3664
+ maxLatencyMs: 'maxLatencyMs',
3665
+ latencyHistogram: 'latencyHistogram',
3666
+ updatedAt: 'updatedAt'
3667
+ } as const
3668
+
3669
+ export type ApiRequestMetricScalarFieldEnum = (typeof ApiRequestMetricScalarFieldEnum)[keyof typeof ApiRequestMetricScalarFieldEnum]
3670
+
3671
+
3672
+ export const ContentIssueScalarFieldEnum = {
3673
+ id: 'id',
3674
+ documentId: 'documentId',
3675
+ type: 'type',
3676
+ count: 'count',
3677
+ details: 'details',
3678
+ firstSeenAt: 'firstSeenAt',
3679
+ lastSeenAt: 'lastSeenAt'
3680
+ } as const
3681
+
3682
+ export type ContentIssueScalarFieldEnum = (typeof ContentIssueScalarFieldEnum)[keyof typeof ContentIssueScalarFieldEnum]
3683
+
3684
+
3685
+ export const SortOrder = {
3686
+ asc: 'asc',
3687
+ desc: 'desc'
3688
+ } as const
3689
+
3690
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder]
3691
+
3692
+
3693
+ export const NullableJsonNullValueInput = {
3694
+ DbNull: DbNull,
3695
+ JsonNull: JsonNull
3696
+ } as const
3697
+
3698
+ export type NullableJsonNullValueInput = (typeof NullableJsonNullValueInput)[keyof typeof NullableJsonNullValueInput]
3699
+
3700
+
3701
+ export const JsonNullValueInput = {
3702
+ JsonNull: JsonNull
3703
+ } as const
3704
+
3705
+ export type JsonNullValueInput = (typeof JsonNullValueInput)[keyof typeof JsonNullValueInput]
3706
+
3707
+
3708
+ export const QueryMode = {
3709
+ default: 'default',
3710
+ insensitive: 'insensitive'
3711
+ } as const
3712
+
3713
+ export type QueryMode = (typeof QueryMode)[keyof typeof QueryMode]
3714
+
3715
+
3716
+ export const JsonNullValueFilter = {
3717
+ DbNull: DbNull,
3718
+ JsonNull: JsonNull,
3719
+ AnyNull: AnyNull
3720
+ } as const
3721
+
3722
+ export type JsonNullValueFilter = (typeof JsonNullValueFilter)[keyof typeof JsonNullValueFilter]
3723
+
3724
+
3725
+ export const NullsOrder = {
3726
+ first: 'first',
3727
+ last: 'last'
3728
+ } as const
3729
+
3730
+ export type NullsOrder = (typeof NullsOrder)[keyof typeof NullsOrder]
3731
+
3732
+
3733
+ export const UserOrderByRelevanceFieldEnum = {
3734
+ id: 'id',
3735
+ email: 'email',
3736
+ name: 'name',
3737
+ avatarUrl: 'avatarUrl',
3738
+ passwordHash: 'passwordHash',
3739
+ totpSecret: 'totpSecret',
3740
+ authProvider: 'authProvider',
3741
+ invitedById: 'invitedById'
3742
+ } as const
3743
+
3744
+ export type UserOrderByRelevanceFieldEnum = (typeof UserOrderByRelevanceFieldEnum)[keyof typeof UserOrderByRelevanceFieldEnum]
3745
+
3746
+
3747
+ export const OAuthAccountOrderByRelevanceFieldEnum = {
3748
+ id: 'id',
3749
+ userId: 'userId',
3750
+ provider: 'provider',
3751
+ providerAccountId: 'providerAccountId',
3752
+ accessToken: 'accessToken',
3753
+ refreshToken: 'refreshToken'
3754
+ } as const
3755
+
3756
+ export type OAuthAccountOrderByRelevanceFieldEnum = (typeof OAuthAccountOrderByRelevanceFieldEnum)[keyof typeof OAuthAccountOrderByRelevanceFieldEnum]
3757
+
3758
+
3759
+ export const SessionOrderByRelevanceFieldEnum = {
3760
+ id: 'id',
3761
+ userId: 'userId',
3762
+ token: 'token',
3763
+ ipAddress: 'ipAddress',
3764
+ userAgent: 'userAgent',
3765
+ fingerprintHash: 'fingerprintHash'
3766
+ } as const
3767
+
3768
+ export type SessionOrderByRelevanceFieldEnum = (typeof SessionOrderByRelevanceFieldEnum)[keyof typeof SessionOrderByRelevanceFieldEnum]
3769
+
3770
+
3771
+ export const ApiKeyOrderByRelevanceFieldEnum = {
3772
+ id: 'id',
3773
+ name: 'name',
3774
+ keyHash: 'keyHash',
3775
+ keyPrefix: 'keyPrefix',
3776
+ userId: 'userId'
3777
+ } as const
3778
+
3779
+ export type ApiKeyOrderByRelevanceFieldEnum = (typeof ApiKeyOrderByRelevanceFieldEnum)[keyof typeof ApiKeyOrderByRelevanceFieldEnum]
3780
+
3781
+
3782
+ export const AuditLogOrderByRelevanceFieldEnum = {
3783
+ id: 'id',
3784
+ event: 'event',
3785
+ userId: 'userId',
3786
+ ipAddress: 'ipAddress',
3787
+ userAgent: 'userAgent'
3788
+ } as const
3789
+
3790
+ export type AuditLogOrderByRelevanceFieldEnum = (typeof AuditLogOrderByRelevanceFieldEnum)[keyof typeof AuditLogOrderByRelevanceFieldEnum]
3791
+
3792
+
3793
+ export const FolderOrderByRelevanceFieldEnum = {
3794
+ id: 'id',
3795
+ name: 'name',
3796
+ scope: 'scope',
3797
+ parentId: 'parentId'
3798
+ } as const
3799
+
3800
+ export type FolderOrderByRelevanceFieldEnum = (typeof FolderOrderByRelevanceFieldEnum)[keyof typeof FolderOrderByRelevanceFieldEnum]
3801
+
3802
+
3803
+ export const DocumentOrderByRelevanceFieldEnum = {
3804
+ id: 'id',
3805
+ collection: 'collection',
3806
+ title: 'title',
3807
+ slug: 'slug',
3808
+ locale: 'locale',
3809
+ localeGroupId: 'localeGroupId',
3810
+ createdById: 'createdById',
3811
+ updatedById: 'updatedById',
3812
+ plainText: 'plainText',
3813
+ contentHash: 'contentHash',
3814
+ siteId: 'siteId',
3815
+ templateId: 'templateId',
3816
+ reviewerId: 'reviewerId',
3817
+ reviewNote: 'reviewNote',
3818
+ folderId: 'folderId'
3819
+ } as const
3820
+
3821
+ export type DocumentOrderByRelevanceFieldEnum = (typeof DocumentOrderByRelevanceFieldEnum)[keyof typeof DocumentOrderByRelevanceFieldEnum]
3822
+
3823
+
3824
+ export const VersionOrderByRelevanceFieldEnum = {
3825
+ id: 'id',
3826
+ documentId: 'documentId',
3827
+ changedById: 'changedById'
3828
+ } as const
3829
+
3830
+ export type VersionOrderByRelevanceFieldEnum = (typeof VersionOrderByRelevanceFieldEnum)[keyof typeof VersionOrderByRelevanceFieldEnum]
3831
+
3832
+
3833
+ export const MediaOrderByRelevanceFieldEnum = {
3834
+ id: 'id',
3835
+ filename: 'filename',
3836
+ storageKey: 'storageKey',
3837
+ mimeType: 'mimeType',
3838
+ altText: 'altText',
3839
+ title: 'title',
3840
+ uploadedById: 'uploadedById',
3841
+ blurHash: 'blurHash',
3842
+ aiAltText: 'aiAltText',
3843
+ aiDescription: 'aiDescription',
3844
+ folderId: 'folderId',
3845
+ originalFileName: 'originalFileName',
3846
+ caption: 'caption',
3847
+ description: 'description',
3848
+ focusKeyword: 'focusKeyword',
3849
+ publicUrl: 'publicUrl',
3850
+ storageProvider: 'storageProvider',
3851
+ thumbnailUrl: 'thumbnailUrl'
3852
+ } as const
3853
+
3854
+ export type MediaOrderByRelevanceFieldEnum = (typeof MediaOrderByRelevanceFieldEnum)[keyof typeof MediaOrderByRelevanceFieldEnum]
3855
+
3856
+
3857
+ export const MediaUsageOrderByRelevanceFieldEnum = {
3858
+ id: 'id',
3859
+ mediaId: 'mediaId',
3860
+ documentId: 'documentId',
3861
+ fieldPath: 'fieldPath'
3862
+ } as const
3863
+
3864
+ export type MediaUsageOrderByRelevanceFieldEnum = (typeof MediaUsageOrderByRelevanceFieldEnum)[keyof typeof MediaUsageOrderByRelevanceFieldEnum]
3865
+
3866
+
3867
+ export const ContentLockOrderByRelevanceFieldEnum = {
3868
+ id: 'id',
3869
+ documentId: 'documentId',
3870
+ userId: 'userId'
3871
+ } as const
3872
+
3873
+ export type ContentLockOrderByRelevanceFieldEnum = (typeof ContentLockOrderByRelevanceFieldEnum)[keyof typeof ContentLockOrderByRelevanceFieldEnum]
3874
+
3875
+
3876
+ export const InAppNotificationOrderByRelevanceFieldEnum = {
3877
+ id: 'id',
3878
+ userId: 'userId',
3879
+ type: 'type',
3880
+ title: 'title',
3881
+ message: 'message',
3882
+ link: 'link'
3883
+ } as const
3884
+
3885
+ export type InAppNotificationOrderByRelevanceFieldEnum = (typeof InAppNotificationOrderByRelevanceFieldEnum)[keyof typeof InAppNotificationOrderByRelevanceFieldEnum]
3886
+
3887
+
3888
+ export const ContentTemplateOrderByRelevanceFieldEnum = {
3889
+ id: 'id',
3890
+ name: 'name',
3891
+ collection: 'collection',
3892
+ createdById: 'createdById'
3893
+ } as const
3894
+
3895
+ export type ContentTemplateOrderByRelevanceFieldEnum = (typeof ContentTemplateOrderByRelevanceFieldEnum)[keyof typeof ContentTemplateOrderByRelevanceFieldEnum]
3896
+
3897
+
3898
+ export const SiteOrderByRelevanceFieldEnum = {
3899
+ id: 'id',
3900
+ domain: 'domain',
3901
+ name: 'name'
3902
+ } as const
3903
+
3904
+ export type SiteOrderByRelevanceFieldEnum = (typeof SiteOrderByRelevanceFieldEnum)[keyof typeof SiteOrderByRelevanceFieldEnum]
3905
+
3906
+
3907
+ export const WorkflowStateOrderByRelevanceFieldEnum = {
3908
+ id: 'id',
3909
+ documentId: 'documentId',
3910
+ assignedToId: 'assignedToId',
3911
+ status: 'status'
3912
+ } as const
3913
+
3914
+ export type WorkflowStateOrderByRelevanceFieldEnum = (typeof WorkflowStateOrderByRelevanceFieldEnum)[keyof typeof WorkflowStateOrderByRelevanceFieldEnum]
3915
+
3916
+
3917
+ export const RedirectOrderByRelevanceFieldEnum = {
3918
+ id: 'id',
3919
+ source: 'source',
3920
+ destination: 'destination',
3921
+ notes: 'notes',
3922
+ source_kind: 'source_kind',
3923
+ createdById: 'createdById'
3924
+ } as const
3925
+
3926
+ export type RedirectOrderByRelevanceFieldEnum = (typeof RedirectOrderByRelevanceFieldEnum)[keyof typeof RedirectOrderByRelevanceFieldEnum]
3927
+
3928
+
3929
+ export const SeoAuditRunOrderByRelevanceFieldEnum = {
3930
+ id: 'id',
3931
+ scope: 'scope',
3932
+ startedById: 'startedById',
3933
+ errorMessage: 'errorMessage'
3934
+ } as const
3935
+
3936
+ export type SeoAuditRunOrderByRelevanceFieldEnum = (typeof SeoAuditRunOrderByRelevanceFieldEnum)[keyof typeof SeoAuditRunOrderByRelevanceFieldEnum]
3937
+
3938
+
3939
+ export const SeoIssueOrderByRelevanceFieldEnum = {
3940
+ id: 'id',
3941
+ auditRunId: 'auditRunId',
3942
+ issueKey: 'issueKey',
3943
+ entityType: 'entityType',
3944
+ entityId: 'entityId',
3945
+ entityTitle: 'entityTitle',
3946
+ url: 'url',
3947
+ type: 'type',
3948
+ title: 'title',
3949
+ description: 'description',
3950
+ impact: 'impact',
3951
+ recommendation: 'recommendation',
3952
+ fixActionType: 'fixActionType',
3953
+ source: 'source',
3954
+ resolvedById: 'resolvedById'
3955
+ } as const
3956
+
3957
+ export type SeoIssueOrderByRelevanceFieldEnum = (typeof SeoIssueOrderByRelevanceFieldEnum)[keyof typeof SeoIssueOrderByRelevanceFieldEnum]
3958
+
3959
+
3960
+ export const Redirect404HitOrderByRelevanceFieldEnum = {
3961
+ id: 'id',
3962
+ path: 'path',
3963
+ referrer: 'referrer'
3964
+ } as const
3965
+
3966
+ export type Redirect404HitOrderByRelevanceFieldEnum = (typeof Redirect404HitOrderByRelevanceFieldEnum)[keyof typeof Redirect404HitOrderByRelevanceFieldEnum]
3967
+
3968
+
3969
+ export const AiCrawlerHitOrderByRelevanceFieldEnum = {
3970
+ id: 'id',
3971
+ bot: 'bot',
3972
+ surface: 'surface',
3973
+ category: 'category'
3974
+ } as const
3975
+
3976
+ export type AiCrawlerHitOrderByRelevanceFieldEnum = (typeof AiCrawlerHitOrderByRelevanceFieldEnum)[keyof typeof AiCrawlerHitOrderByRelevanceFieldEnum]
3977
+
3978
+
3979
+ export const RedirectSuggestionOrderByRelevanceFieldEnum = {
3980
+ id: 'id',
3981
+ fromPath: 'fromPath',
3982
+ toPath: 'toPath',
3983
+ reason: 'reason',
3984
+ status: 'status',
3985
+ source: 'source'
3986
+ } as const
3987
+
3988
+ export type RedirectSuggestionOrderByRelevanceFieldEnum = (typeof RedirectSuggestionOrderByRelevanceFieldEnum)[keyof typeof RedirectSuggestionOrderByRelevanceFieldEnum]
3989
+
3990
+
3991
+ export const FormSchemaVersionOrderByRelevanceFieldEnum = {
3992
+ id: 'id',
3993
+ formId: 'formId',
3994
+ notes: 'notes',
3995
+ createdById: 'createdById'
3996
+ } as const
3997
+
3998
+ export type FormSchemaVersionOrderByRelevanceFieldEnum = (typeof FormSchemaVersionOrderByRelevanceFieldEnum)[keyof typeof FormSchemaVersionOrderByRelevanceFieldEnum]
3999
+
4000
+
4001
+ export const FormSubmissionOrderByRelevanceFieldEnum = {
4002
+ id: 'id',
4003
+ formId: 'formId',
4004
+ schemaVersionId: 'schemaVersionId',
4005
+ senderName: 'senderName',
4006
+ senderEmail: 'senderEmail',
4007
+ senderPhone: 'senderPhone',
4008
+ preview: 'preview',
4009
+ status: 'status',
4010
+ spamStatus: 'spamStatus',
4011
+ ipAddressHash: 'ipAddressHash',
4012
+ userAgent: 'userAgent',
4013
+ referrer: 'referrer',
4014
+ pageUrl: 'pageUrl',
4015
+ utmSource: 'utmSource',
4016
+ utmMedium: 'utmMedium',
4017
+ utmCampaign: 'utmCampaign'
4018
+ } as const
4019
+
4020
+ export type FormSubmissionOrderByRelevanceFieldEnum = (typeof FormSubmissionOrderByRelevanceFieldEnum)[keyof typeof FormSubmissionOrderByRelevanceFieldEnum]
4021
+
4022
+
4023
+ export const FormSubmissionFileOrderByRelevanceFieldEnum = {
4024
+ id: 'id',
4025
+ submissionId: 'submissionId',
4026
+ fieldKey: 'fieldKey',
4027
+ mediaAssetId: 'mediaAssetId',
4028
+ fileName: 'fileName',
4029
+ mimeType: 'mimeType',
4030
+ storageKey: 'storageKey',
4031
+ publicUrl: 'publicUrl',
4032
+ secureDownloadUrl: 'secureDownloadUrl'
4033
+ } as const
4034
+
4035
+ export type FormSubmissionFileOrderByRelevanceFieldEnum = (typeof FormSubmissionFileOrderByRelevanceFieldEnum)[keyof typeof FormSubmissionFileOrderByRelevanceFieldEnum]
4036
+
4037
+
4038
+ export const FormWebhookOrderByRelevanceFieldEnum = {
4039
+ id: 'id',
4040
+ formId: 'formId',
4041
+ url: 'url',
4042
+ secret: 'secret',
4043
+ lastDeliveryStatus: 'lastDeliveryStatus'
4044
+ } as const
4045
+
4046
+ export type FormWebhookOrderByRelevanceFieldEnum = (typeof FormWebhookOrderByRelevanceFieldEnum)[keyof typeof FormWebhookOrderByRelevanceFieldEnum]
4047
+
4048
+
4049
+ export const BackupRecordOrderByRelevanceFieldEnum = {
4050
+ id: 'id',
4051
+ filename: 'filename',
4052
+ storageKey: 'storageKey',
4053
+ type: 'type'
4054
+ } as const
4055
+
4056
+ export type BackupRecordOrderByRelevanceFieldEnum = (typeof BackupRecordOrderByRelevanceFieldEnum)[keyof typeof BackupRecordOrderByRelevanceFieldEnum]
4057
+
4058
+
4059
+ export const WebhookEndpointOrderByRelevanceFieldEnum = {
4060
+ id: 'id',
4061
+ url: 'url',
4062
+ secret: 'secret',
4063
+ name: 'name'
4064
+ } as const
4065
+
4066
+ export type WebhookEndpointOrderByRelevanceFieldEnum = (typeof WebhookEndpointOrderByRelevanceFieldEnum)[keyof typeof WebhookEndpointOrderByRelevanceFieldEnum]
4067
+
4068
+
4069
+ export const WebhookDeliveryLogOrderByRelevanceFieldEnum = {
4070
+ id: 'id',
4071
+ endpointId: 'endpointId',
4072
+ event: 'event',
4073
+ status: 'status',
4074
+ responseBody: 'responseBody'
4075
+ } as const
4076
+
4077
+ export type WebhookDeliveryLogOrderByRelevanceFieldEnum = (typeof WebhookDeliveryLogOrderByRelevanceFieldEnum)[keyof typeof WebhookDeliveryLogOrderByRelevanceFieldEnum]
4078
+
4079
+
4080
+ export const PasswordResetTokenOrderByRelevanceFieldEnum = {
4081
+ id: 'id',
4082
+ userId: 'userId',
4083
+ tokenHash: 'tokenHash'
4084
+ } as const
4085
+
4086
+ export type PasswordResetTokenOrderByRelevanceFieldEnum = (typeof PasswordResetTokenOrderByRelevanceFieldEnum)[keyof typeof PasswordResetTokenOrderByRelevanceFieldEnum]
4087
+
4088
+
4089
+ export const InviteOrderByRelevanceFieldEnum = {
4090
+ id: 'id',
4091
+ email: 'email',
4092
+ tokenHash: 'tokenHash',
4093
+ message: 'message',
4094
+ invitedByUserId: 'invitedByUserId',
4095
+ acceptedUserId: 'acceptedUserId'
4096
+ } as const
4097
+
4098
+ export type InviteOrderByRelevanceFieldEnum = (typeof InviteOrderByRelevanceFieldEnum)[keyof typeof InviteOrderByRelevanceFieldEnum]
4099
+
4100
+
4101
+ export const ScriptTagOrderByRelevanceFieldEnum = {
4102
+ id: 'id',
4103
+ name: 'name',
4104
+ code: 'code',
4105
+ placement: 'placement',
4106
+ scope: 'scope',
4107
+ targetPaths: 'targetPaths',
4108
+ consentCategory: 'consentCategory'
4109
+ } as const
4110
+
4111
+ export type ScriptTagOrderByRelevanceFieldEnum = (typeof ScriptTagOrderByRelevanceFieldEnum)[keyof typeof ScriptTagOrderByRelevanceFieldEnum]
4112
+
4113
+
4114
+ export const PageTemplateOrderByRelevanceFieldEnum = {
4115
+ id: 'id',
4116
+ name: 'name',
4117
+ description: 'description',
4118
+ category: 'category',
4119
+ thumbnail: 'thumbnail'
4120
+ } as const
4121
+
4122
+ export type PageTemplateOrderByRelevanceFieldEnum = (typeof PageTemplateOrderByRelevanceFieldEnum)[keyof typeof PageTemplateOrderByRelevanceFieldEnum]
4123
+
4124
+
4125
+ export const SavedSectionOrderByRelevanceFieldEnum = {
4126
+ id: 'id',
4127
+ name: 'name',
4128
+ description: 'description',
4129
+ category: 'category',
4130
+ thumbnail: 'thumbnail'
4131
+ } as const
4132
+
4133
+ export type SavedSectionOrderByRelevanceFieldEnum = (typeof SavedSectionOrderByRelevanceFieldEnum)[keyof typeof SavedSectionOrderByRelevanceFieldEnum]
4134
+
4135
+
4136
+ export const ApiRequestMetricOrderByRelevanceFieldEnum = {
4137
+ id: 'id',
4138
+ route: 'route',
4139
+ statusBucket: 'statusBucket'
4140
+ } as const
4141
+
4142
+ export type ApiRequestMetricOrderByRelevanceFieldEnum = (typeof ApiRequestMetricOrderByRelevanceFieldEnum)[keyof typeof ApiRequestMetricOrderByRelevanceFieldEnum]
4143
+
4144
+
4145
+ export const ContentIssueOrderByRelevanceFieldEnum = {
4146
+ id: 'id',
4147
+ documentId: 'documentId'
4148
+ } as const
4149
+
4150
+ export type ContentIssueOrderByRelevanceFieldEnum = (typeof ContentIssueOrderByRelevanceFieldEnum)[keyof typeof ContentIssueOrderByRelevanceFieldEnum]
4151
+
4152
+
4153
+
4154
+ /**
4155
+ * Field references
4156
+ */
4157
+
4158
+
4159
+ /**
4160
+ * Reference to a field of type 'String'
4161
+ */
4162
+ export type StringFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'String'>
4163
+
4164
+
4165
+
4166
+ /**
4167
+ * Reference to a field of type 'String[]'
4168
+ */
4169
+ export type ListStringFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'String[]'>
4170
+
4171
+
4172
+
4173
+ /**
4174
+ * Reference to a field of type 'UserRole'
4175
+ */
4176
+ export type EnumUserRoleFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'UserRole'>
4177
+
4178
+
4179
+
4180
+ /**
4181
+ * Reference to a field of type 'UserRole[]'
4182
+ */
4183
+ export type ListEnumUserRoleFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'UserRole[]'>
4184
+
4185
+
4186
+
4187
+ /**
4188
+ * Reference to a field of type 'Boolean'
4189
+ */
4190
+ export type BooleanFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Boolean'>
4191
+
4192
+
4193
+
4194
+ /**
4195
+ * Reference to a field of type 'Json'
4196
+ */
4197
+ export type JsonFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Json'>
4198
+
4199
+
4200
+
4201
+ /**
4202
+ * Reference to a field of type 'QueryMode'
4203
+ */
4204
+ export type EnumQueryModeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'QueryMode'>
4205
+
4206
+
4207
+
4208
+ /**
4209
+ * Reference to a field of type 'DateTime'
4210
+ */
4211
+ export type DateTimeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'DateTime'>
4212
+
4213
+
4214
+
4215
+ /**
4216
+ * Reference to a field of type 'DateTime[]'
4217
+ */
4218
+ export type ListDateTimeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'DateTime[]'>
4219
+
4220
+
4221
+
4222
+ /**
4223
+ * Reference to a field of type 'Int'
4224
+ */
4225
+ export type IntFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Int'>
4226
+
4227
+
4228
+
4229
+ /**
4230
+ * Reference to a field of type 'Int[]'
4231
+ */
4232
+ export type ListIntFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Int[]'>
4233
+
4234
+
4235
+
4236
+ /**
4237
+ * Reference to a field of type 'DocumentStatus'
4238
+ */
4239
+ export type EnumDocumentStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'DocumentStatus'>
4240
+
4241
+
4242
+
4243
+ /**
4244
+ * Reference to a field of type 'DocumentStatus[]'
4245
+ */
4246
+ export type ListEnumDocumentStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'DocumentStatus[]'>
4247
+
4248
+
4249
+
4250
+ /**
4251
+ * Reference to a field of type 'WorkflowStage'
4252
+ */
4253
+ export type EnumWorkflowStageFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'WorkflowStage'>
4254
+
4255
+
4256
+
4257
+ /**
4258
+ * Reference to a field of type 'WorkflowStage[]'
4259
+ */
4260
+ export type ListEnumWorkflowStageFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'WorkflowStage[]'>
4261
+
4262
+
4263
+
4264
+ /**
4265
+ * Reference to a field of type 'ChangeType'
4266
+ */
4267
+ export type EnumChangeTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'ChangeType'>
4268
+
4269
+
4270
+
4271
+ /**
4272
+ * Reference to a field of type 'ChangeType[]'
4273
+ */
4274
+ export type ListEnumChangeTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'ChangeType[]'>
4275
+
4276
+
4277
+
4278
+ /**
4279
+ * Reference to a field of type 'Float'
4280
+ */
4281
+ export type FloatFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Float'>
4282
+
4283
+
4284
+
4285
+ /**
4286
+ * Reference to a field of type 'Float[]'
4287
+ */
4288
+ export type ListFloatFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Float[]'>
4289
+
4290
+
4291
+
4292
+ /**
4293
+ * Reference to a field of type 'MediaStatus'
4294
+ */
4295
+ export type EnumMediaStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'MediaStatus'>
4296
+
4297
+
4298
+
4299
+ /**
4300
+ * Reference to a field of type 'MediaStatus[]'
4301
+ */
4302
+ export type ListEnumMediaStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'MediaStatus[]'>
4303
+
4304
+
4305
+
4306
+ /**
4307
+ * Reference to a field of type 'SeoAuditStatus'
4308
+ */
4309
+ export type EnumSeoAuditStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'SeoAuditStatus'>
4310
+
4311
+
4312
+
4313
+ /**
4314
+ * Reference to a field of type 'SeoAuditStatus[]'
4315
+ */
4316
+ export type ListEnumSeoAuditStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'SeoAuditStatus[]'>
4317
+
4318
+
4319
+
4320
+ /**
4321
+ * Reference to a field of type 'SeoIssueSeverity'
4322
+ */
4323
+ export type EnumSeoIssueSeverityFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'SeoIssueSeverity'>
4324
+
4325
+
4326
+
4327
+ /**
4328
+ * Reference to a field of type 'SeoIssueSeverity[]'
4329
+ */
4330
+ export type ListEnumSeoIssueSeverityFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'SeoIssueSeverity[]'>
4331
+
4332
+
4333
+
4334
+ /**
4335
+ * Reference to a field of type 'SeoIssueCategory'
4336
+ */
4337
+ export type EnumSeoIssueCategoryFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'SeoIssueCategory'>
4338
+
4339
+
4340
+
4341
+ /**
4342
+ * Reference to a field of type 'SeoIssueCategory[]'
4343
+ */
4344
+ export type ListEnumSeoIssueCategoryFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'SeoIssueCategory[]'>
4345
+
4346
+
4347
+
4348
+ /**
4349
+ * Reference to a field of type 'SeoIssueStatus'
4350
+ */
4351
+ export type EnumSeoIssueStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'SeoIssueStatus'>
4352
+
4353
+
4354
+
4355
+ /**
4356
+ * Reference to a field of type 'SeoIssueStatus[]'
4357
+ */
4358
+ export type ListEnumSeoIssueStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'SeoIssueStatus[]'>
4359
+
4360
+
4361
+
4362
+ /**
4363
+ * Reference to a field of type 'InviteStatus'
4364
+ */
4365
+ export type EnumInviteStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'InviteStatus'>
4366
+
4367
+
4368
+
4369
+ /**
4370
+ * Reference to a field of type 'InviteStatus[]'
4371
+ */
4372
+ export type ListEnumInviteStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'InviteStatus[]'>
4373
+
4374
+
4375
+
4376
+ /**
4377
+ * Reference to a field of type 'ContentIssueType'
4378
+ */
4379
+ export type EnumContentIssueTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'ContentIssueType'>
4380
+
4381
+
4382
+
4383
+ /**
4384
+ * Reference to a field of type 'ContentIssueType[]'
4385
+ */
4386
+ export type ListEnumContentIssueTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'ContentIssueType[]'>
4387
+
4388
+
4389
+ /**
4390
+ * Batch Payload for updateMany & deleteMany & createMany
4391
+ */
4392
+ export type BatchPayload = {
4393
+ count: number
4394
+ }
4395
+
4396
+ export const defineExtension = runtime.Extensions.defineExtension as unknown as runtime.Types.Extensions.ExtendsHook<"define", TypeMapCb, runtime.Types.Extensions.DefaultArgs>
4397
+ export type DefaultPrismaClient = PrismaClient
4398
+ export type ErrorFormat = 'pretty' | 'colorless' | 'minimal'
4399
+ export type PrismaClientOptions = ({
4400
+ /**
4401
+ * Instance of a Driver Adapter, e.g., like one provided by `@prisma/adapter-pg`.
4402
+ */
4403
+ adapter: runtime.SqlDriverAdapterFactory
4404
+ accelerateUrl?: never
4405
+ } | {
4406
+ /**
4407
+ * Prisma Accelerate URL allowing the client to connect through Accelerate instead of a direct database.
4408
+ */
4409
+ accelerateUrl: string
4410
+ adapter?: never
4411
+ }) & {
4412
+ /**
4413
+ * @default "colorless"
4414
+ */
4415
+ errorFormat?: ErrorFormat
4416
+ /**
4417
+ * @example
4418
+ * ```
4419
+ * // Shorthand for `emit: 'stdout'`
4420
+ * log: ['query', 'info', 'warn', 'error']
4421
+ *
4422
+ * // Emit as events only
4423
+ * log: [
4424
+ * { emit: 'event', level: 'query' },
4425
+ * { emit: 'event', level: 'info' },
4426
+ * { emit: 'event', level: 'warn' }
4427
+ * { emit: 'event', level: 'error' }
4428
+ * ]
4429
+ *
4430
+ * / Emit as events and log to stdout
4431
+ * og: [
4432
+ * { emit: 'stdout', level: 'query' },
4433
+ * { emit: 'stdout', level: 'info' },
4434
+ * { emit: 'stdout', level: 'warn' }
4435
+ * { emit: 'stdout', level: 'error' }
4436
+ *
4437
+ * ```
4438
+ * Read more in our [docs](https://pris.ly/d/logging).
4439
+ */
4440
+ log?: (LogLevel | LogDefinition)[]
4441
+ /**
4442
+ * The default values for transactionOptions
4443
+ * maxWait ?= 2000
4444
+ * timeout ?= 5000
4445
+ */
4446
+ transactionOptions?: {
4447
+ maxWait?: number
4448
+ timeout?: number
4449
+ isolationLevel?: TransactionIsolationLevel
4450
+ }
4451
+ /**
4452
+ * Global configuration for omitting model fields by default.
4453
+ *
4454
+ * @example
4455
+ * ```
4456
+ * const prisma = new PrismaClient({
4457
+ * omit: {
4458
+ * user: {
4459
+ * password: true
4460
+ * }
4461
+ * }
4462
+ * })
4463
+ * ```
4464
+ */
4465
+ omit?: GlobalOmitConfig
4466
+ /**
4467
+ * SQL commenter plugins that add metadata to SQL queries as comments.
4468
+ * Comments follow the sqlcommenter format: https://google.github.io/sqlcommenter/
4469
+ *
4470
+ * @example
4471
+ * ```
4472
+ * const prisma = new PrismaClient({
4473
+ * adapter,
4474
+ * comments: [
4475
+ * traceContext(),
4476
+ * queryInsights(),
4477
+ * ],
4478
+ * })
4479
+ * ```
4480
+ */
4481
+ comments?: runtime.SqlCommenterPlugin[]
4482
+ /**
4483
+ * Optional maximum size for the query plan cache. If not provided, a default size will be used.
4484
+ * A value of `0` can be used to disable the cache entirely. A higher cache size can improve
4485
+ * performance for applications that execute a large number of unique queries, while a smaller
4486
+ * cache size can reduce memory usage.
4487
+ *
4488
+ * @example
4489
+ * ```
4490
+ * const prisma = new PrismaClient({
4491
+ * adapter,
4492
+ * queryPlanCacheMaxSize: 100,
4493
+ * })
4494
+ * ```
4495
+ */
4496
+ queryPlanCacheMaxSize?: number
4497
+ }
4498
+ export type GlobalOmitConfig = {
4499
+ user?: Prisma.UserOmit
4500
+ oAuthAccount?: Prisma.OAuthAccountOmit
4501
+ session?: Prisma.SessionOmit
4502
+ apiKey?: Prisma.ApiKeyOmit
4503
+ auditLog?: Prisma.AuditLogOmit
4504
+ folder?: Prisma.FolderOmit
4505
+ document?: Prisma.DocumentOmit
4506
+ version?: Prisma.VersionOmit
4507
+ media?: Prisma.MediaOmit
4508
+ mediaUsage?: Prisma.MediaUsageOmit
4509
+ contentLock?: Prisma.ContentLockOmit
4510
+ inAppNotification?: Prisma.InAppNotificationOmit
4511
+ contentTemplate?: Prisma.ContentTemplateOmit
4512
+ site?: Prisma.SiteOmit
4513
+ workflowState?: Prisma.WorkflowStateOmit
4514
+ redirect?: Prisma.RedirectOmit
4515
+ seoAuditRun?: Prisma.SeoAuditRunOmit
4516
+ seoIssue?: Prisma.SeoIssueOmit
4517
+ redirect404Hit?: Prisma.Redirect404HitOmit
4518
+ aiCrawlerHit?: Prisma.AiCrawlerHitOmit
4519
+ redirectSuggestion?: Prisma.RedirectSuggestionOmit
4520
+ formSchemaVersion?: Prisma.FormSchemaVersionOmit
4521
+ formSubmission?: Prisma.FormSubmissionOmit
4522
+ formSubmissionFile?: Prisma.FormSubmissionFileOmit
4523
+ formWebhook?: Prisma.FormWebhookOmit
4524
+ backupRecord?: Prisma.BackupRecordOmit
4525
+ webhookEndpoint?: Prisma.WebhookEndpointOmit
4526
+ webhookDeliveryLog?: Prisma.WebhookDeliveryLogOmit
4527
+ passwordResetToken?: Prisma.PasswordResetTokenOmit
4528
+ invite?: Prisma.InviteOmit
4529
+ scriptTag?: Prisma.ScriptTagOmit
4530
+ pageTemplate?: Prisma.PageTemplateOmit
4531
+ savedSection?: Prisma.SavedSectionOmit
4532
+ apiRequestMetric?: Prisma.ApiRequestMetricOmit
4533
+ contentIssue?: Prisma.ContentIssueOmit
4534
+ }
4535
+
4536
+ /* Types for Logging */
4537
+ export type LogLevel = 'info' | 'query' | 'warn' | 'error'
4538
+ export type LogDefinition = {
4539
+ level: LogLevel
4540
+ emit: 'stdout' | 'event'
4541
+ }
4542
+
4543
+ export type CheckIsLogLevel<T> = T extends LogLevel ? T : never;
4544
+
4545
+ export type GetLogType<T> = CheckIsLogLevel<
4546
+ T extends LogDefinition ? T['level'] : T
4547
+ >;
4548
+
4549
+ export type GetEvents<T extends any[]> = T extends Array<LogLevel | LogDefinition>
4550
+ ? GetLogType<T[number]>
4551
+ : never;
4552
+
4553
+ export type QueryEvent = {
4554
+ timestamp: Date
4555
+ query: string
4556
+ params: string
4557
+ duration: number
4558
+ target: string
4559
+ }
4560
+
4561
+ export type LogEvent = {
4562
+ timestamp: Date
4563
+ message: string
4564
+ target: string
4565
+ }
4566
+ /* End Types for Logging */
4567
+
4568
+
4569
+ export type PrismaAction =
4570
+ | 'findUnique'
4571
+ | 'findUniqueOrThrow'
4572
+ | 'findMany'
4573
+ | 'findFirst'
4574
+ | 'findFirstOrThrow'
4575
+ | 'create'
4576
+ | 'createMany'
4577
+ | 'createManyAndReturn'
4578
+ | 'update'
4579
+ | 'updateMany'
4580
+ | 'updateManyAndReturn'
4581
+ | 'upsert'
4582
+ | 'delete'
4583
+ | 'deleteMany'
4584
+ | 'executeRaw'
4585
+ | 'queryRaw'
4586
+ | 'aggregate'
4587
+ | 'count'
4588
+ | 'runCommandRaw'
4589
+ | 'findRaw'
4590
+ | 'groupBy'
4591
+
4592
+ /**
4593
+ * `PrismaClient` proxy available in interactive transactions.
4594
+ */
4595
+ export type TransactionClient = Omit<DefaultPrismaClient, runtime.ITXClientDenyList>
4596
+