@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,1745 @@
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
+ * This file exports the `SeoAuditRun` model and its related types.
8
+ *
9
+ * 🟢 You can import this file directly.
10
+ */
11
+ import type * as runtime from "@prisma/client/runtime/client"
12
+ import type * as $Enums from "../enums.js"
13
+ import type * as Prisma from "../internal/prismaNamespace.js"
14
+
15
+ /**
16
+ * Model SeoAuditRun
17
+ * One execution of the SEO audit engine. Holds a snapshot of the site
18
+ * score and issue counts so the Audit tab can show run history without
19
+ * recomputing. Issues belong to a run via SEOIssue.auditRunId.
20
+ */
21
+ export type SeoAuditRunModel = runtime.Types.Result.DefaultSelection<Prisma.$SeoAuditRunPayload>
22
+
23
+ export type AggregateSeoAuditRun = {
24
+ _count: SeoAuditRunCountAggregateOutputType | null
25
+ _avg: SeoAuditRunAvgAggregateOutputType | null
26
+ _sum: SeoAuditRunSumAggregateOutputType | null
27
+ _min: SeoAuditRunMinAggregateOutputType | null
28
+ _max: SeoAuditRunMaxAggregateOutputType | null
29
+ }
30
+
31
+ export type SeoAuditRunAvgAggregateOutputType = {
32
+ siteScoreBefore: number | null
33
+ siteScoreAfter: number | null
34
+ pagesScanned: number | null
35
+ issuesFound: number | null
36
+ criticalCount: number | null
37
+ warningCount: number | null
38
+ infoCount: number | null
39
+ }
40
+
41
+ export type SeoAuditRunSumAggregateOutputType = {
42
+ siteScoreBefore: number | null
43
+ siteScoreAfter: number | null
44
+ pagesScanned: number | null
45
+ issuesFound: number | null
46
+ criticalCount: number | null
47
+ warningCount: number | null
48
+ infoCount: number | null
49
+ }
50
+
51
+ export type SeoAuditRunMinAggregateOutputType = {
52
+ id: string | null
53
+ status: $Enums.SeoAuditStatus | null
54
+ scope: string | null
55
+ startedById: string | null
56
+ startedAt: Date | null
57
+ finishedAt: Date | null
58
+ siteScoreBefore: number | null
59
+ siteScoreAfter: number | null
60
+ pagesScanned: number | null
61
+ issuesFound: number | null
62
+ criticalCount: number | null
63
+ warningCount: number | null
64
+ infoCount: number | null
65
+ errorMessage: string | null
66
+ }
67
+
68
+ export type SeoAuditRunMaxAggregateOutputType = {
69
+ id: string | null
70
+ status: $Enums.SeoAuditStatus | null
71
+ scope: string | null
72
+ startedById: string | null
73
+ startedAt: Date | null
74
+ finishedAt: Date | null
75
+ siteScoreBefore: number | null
76
+ siteScoreAfter: number | null
77
+ pagesScanned: number | null
78
+ issuesFound: number | null
79
+ criticalCount: number | null
80
+ warningCount: number | null
81
+ infoCount: number | null
82
+ errorMessage: string | null
83
+ }
84
+
85
+ export type SeoAuditRunCountAggregateOutputType = {
86
+ id: number
87
+ status: number
88
+ scope: number
89
+ startedById: number
90
+ startedAt: number
91
+ finishedAt: number
92
+ siteScoreBefore: number
93
+ siteScoreAfter: number
94
+ pagesScanned: number
95
+ issuesFound: number
96
+ criticalCount: number
97
+ warningCount: number
98
+ infoCount: number
99
+ errorMessage: number
100
+ metadata: number
101
+ _all: number
102
+ }
103
+
104
+
105
+ export type SeoAuditRunAvgAggregateInputType = {
106
+ siteScoreBefore?: true
107
+ siteScoreAfter?: true
108
+ pagesScanned?: true
109
+ issuesFound?: true
110
+ criticalCount?: true
111
+ warningCount?: true
112
+ infoCount?: true
113
+ }
114
+
115
+ export type SeoAuditRunSumAggregateInputType = {
116
+ siteScoreBefore?: true
117
+ siteScoreAfter?: true
118
+ pagesScanned?: true
119
+ issuesFound?: true
120
+ criticalCount?: true
121
+ warningCount?: true
122
+ infoCount?: true
123
+ }
124
+
125
+ export type SeoAuditRunMinAggregateInputType = {
126
+ id?: true
127
+ status?: true
128
+ scope?: true
129
+ startedById?: true
130
+ startedAt?: true
131
+ finishedAt?: true
132
+ siteScoreBefore?: true
133
+ siteScoreAfter?: true
134
+ pagesScanned?: true
135
+ issuesFound?: true
136
+ criticalCount?: true
137
+ warningCount?: true
138
+ infoCount?: true
139
+ errorMessage?: true
140
+ }
141
+
142
+ export type SeoAuditRunMaxAggregateInputType = {
143
+ id?: true
144
+ status?: true
145
+ scope?: true
146
+ startedById?: true
147
+ startedAt?: true
148
+ finishedAt?: true
149
+ siteScoreBefore?: true
150
+ siteScoreAfter?: true
151
+ pagesScanned?: true
152
+ issuesFound?: true
153
+ criticalCount?: true
154
+ warningCount?: true
155
+ infoCount?: true
156
+ errorMessage?: true
157
+ }
158
+
159
+ export type SeoAuditRunCountAggregateInputType = {
160
+ id?: true
161
+ status?: true
162
+ scope?: true
163
+ startedById?: true
164
+ startedAt?: true
165
+ finishedAt?: true
166
+ siteScoreBefore?: true
167
+ siteScoreAfter?: true
168
+ pagesScanned?: true
169
+ issuesFound?: true
170
+ criticalCount?: true
171
+ warningCount?: true
172
+ infoCount?: true
173
+ errorMessage?: true
174
+ metadata?: true
175
+ _all?: true
176
+ }
177
+
178
+ export type SeoAuditRunAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
179
+ /**
180
+ * Filter which SeoAuditRun to aggregate.
181
+ */
182
+ where?: Prisma.SeoAuditRunWhereInput
183
+ /**
184
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
185
+ *
186
+ * Determine the order of SeoAuditRuns to fetch.
187
+ */
188
+ orderBy?: Prisma.SeoAuditRunOrderByWithRelationInput | Prisma.SeoAuditRunOrderByWithRelationInput[]
189
+ /**
190
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
191
+ *
192
+ * Sets the start position
193
+ */
194
+ cursor?: Prisma.SeoAuditRunWhereUniqueInput
195
+ /**
196
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
197
+ *
198
+ * Take `±n` SeoAuditRuns from the position of the cursor.
199
+ */
200
+ take?: number
201
+ /**
202
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
203
+ *
204
+ * Skip the first `n` SeoAuditRuns.
205
+ */
206
+ skip?: number
207
+ /**
208
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
209
+ *
210
+ * Count returned SeoAuditRuns
211
+ **/
212
+ _count?: true | SeoAuditRunCountAggregateInputType
213
+ /**
214
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
215
+ *
216
+ * Select which fields to average
217
+ **/
218
+ _avg?: SeoAuditRunAvgAggregateInputType
219
+ /**
220
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
221
+ *
222
+ * Select which fields to sum
223
+ **/
224
+ _sum?: SeoAuditRunSumAggregateInputType
225
+ /**
226
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
227
+ *
228
+ * Select which fields to find the minimum value
229
+ **/
230
+ _min?: SeoAuditRunMinAggregateInputType
231
+ /**
232
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
233
+ *
234
+ * Select which fields to find the maximum value
235
+ **/
236
+ _max?: SeoAuditRunMaxAggregateInputType
237
+ }
238
+
239
+ export type GetSeoAuditRunAggregateType<T extends SeoAuditRunAggregateArgs> = {
240
+ [P in keyof T & keyof AggregateSeoAuditRun]: P extends '_count' | 'count'
241
+ ? T[P] extends true
242
+ ? number
243
+ : Prisma.GetScalarType<T[P], AggregateSeoAuditRun[P]>
244
+ : Prisma.GetScalarType<T[P], AggregateSeoAuditRun[P]>
245
+ }
246
+
247
+
248
+
249
+
250
+ export type SeoAuditRunGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
251
+ where?: Prisma.SeoAuditRunWhereInput
252
+ orderBy?: Prisma.SeoAuditRunOrderByWithAggregationInput | Prisma.SeoAuditRunOrderByWithAggregationInput[]
253
+ by: Prisma.SeoAuditRunScalarFieldEnum[] | Prisma.SeoAuditRunScalarFieldEnum
254
+ having?: Prisma.SeoAuditRunScalarWhereWithAggregatesInput
255
+ take?: number
256
+ skip?: number
257
+ _count?: SeoAuditRunCountAggregateInputType | true
258
+ _avg?: SeoAuditRunAvgAggregateInputType
259
+ _sum?: SeoAuditRunSumAggregateInputType
260
+ _min?: SeoAuditRunMinAggregateInputType
261
+ _max?: SeoAuditRunMaxAggregateInputType
262
+ }
263
+
264
+ export type SeoAuditRunGroupByOutputType = {
265
+ id: string
266
+ status: $Enums.SeoAuditStatus
267
+ scope: string
268
+ startedById: string | null
269
+ startedAt: Date
270
+ finishedAt: Date | null
271
+ siteScoreBefore: number | null
272
+ siteScoreAfter: number | null
273
+ pagesScanned: number
274
+ issuesFound: number
275
+ criticalCount: number
276
+ warningCount: number
277
+ infoCount: number
278
+ errorMessage: string | null
279
+ metadata: runtime.JsonValue | null
280
+ _count: SeoAuditRunCountAggregateOutputType | null
281
+ _avg: SeoAuditRunAvgAggregateOutputType | null
282
+ _sum: SeoAuditRunSumAggregateOutputType | null
283
+ _min: SeoAuditRunMinAggregateOutputType | null
284
+ _max: SeoAuditRunMaxAggregateOutputType | null
285
+ }
286
+
287
+ export type GetSeoAuditRunGroupByPayload<T extends SeoAuditRunGroupByArgs> = Prisma.PrismaPromise<
288
+ Array<
289
+ Prisma.PickEnumerable<SeoAuditRunGroupByOutputType, T['by']> &
290
+ {
291
+ [P in ((keyof T) & (keyof SeoAuditRunGroupByOutputType))]: P extends '_count'
292
+ ? T[P] extends boolean
293
+ ? number
294
+ : Prisma.GetScalarType<T[P], SeoAuditRunGroupByOutputType[P]>
295
+ : Prisma.GetScalarType<T[P], SeoAuditRunGroupByOutputType[P]>
296
+ }
297
+ >
298
+ >
299
+
300
+
301
+
302
+ export type SeoAuditRunWhereInput = {
303
+ AND?: Prisma.SeoAuditRunWhereInput | Prisma.SeoAuditRunWhereInput[]
304
+ OR?: Prisma.SeoAuditRunWhereInput[]
305
+ NOT?: Prisma.SeoAuditRunWhereInput | Prisma.SeoAuditRunWhereInput[]
306
+ id?: Prisma.StringFilter<"SeoAuditRun"> | string
307
+ status?: Prisma.EnumSeoAuditStatusFilter<"SeoAuditRun"> | $Enums.SeoAuditStatus
308
+ scope?: Prisma.StringFilter<"SeoAuditRun"> | string
309
+ startedById?: Prisma.StringNullableFilter<"SeoAuditRun"> | string | null
310
+ startedAt?: Prisma.DateTimeFilter<"SeoAuditRun"> | Date | string
311
+ finishedAt?: Prisma.DateTimeNullableFilter<"SeoAuditRun"> | Date | string | null
312
+ siteScoreBefore?: Prisma.IntNullableFilter<"SeoAuditRun"> | number | null
313
+ siteScoreAfter?: Prisma.IntNullableFilter<"SeoAuditRun"> | number | null
314
+ pagesScanned?: Prisma.IntFilter<"SeoAuditRun"> | number
315
+ issuesFound?: Prisma.IntFilter<"SeoAuditRun"> | number
316
+ criticalCount?: Prisma.IntFilter<"SeoAuditRun"> | number
317
+ warningCount?: Prisma.IntFilter<"SeoAuditRun"> | number
318
+ infoCount?: Prisma.IntFilter<"SeoAuditRun"> | number
319
+ errorMessage?: Prisma.StringNullableFilter<"SeoAuditRun"> | string | null
320
+ metadata?: Prisma.JsonNullableFilter<"SeoAuditRun">
321
+ issues?: Prisma.SeoIssueListRelationFilter
322
+ }
323
+
324
+ export type SeoAuditRunOrderByWithRelationInput = {
325
+ id?: Prisma.SortOrder
326
+ status?: Prisma.SortOrder
327
+ scope?: Prisma.SortOrder
328
+ startedById?: Prisma.SortOrderInput | Prisma.SortOrder
329
+ startedAt?: Prisma.SortOrder
330
+ finishedAt?: Prisma.SortOrderInput | Prisma.SortOrder
331
+ siteScoreBefore?: Prisma.SortOrderInput | Prisma.SortOrder
332
+ siteScoreAfter?: Prisma.SortOrderInput | Prisma.SortOrder
333
+ pagesScanned?: Prisma.SortOrder
334
+ issuesFound?: Prisma.SortOrder
335
+ criticalCount?: Prisma.SortOrder
336
+ warningCount?: Prisma.SortOrder
337
+ infoCount?: Prisma.SortOrder
338
+ errorMessage?: Prisma.SortOrderInput | Prisma.SortOrder
339
+ metadata?: Prisma.SortOrderInput | Prisma.SortOrder
340
+ issues?: Prisma.SeoIssueOrderByRelationAggregateInput
341
+ _relevance?: Prisma.SeoAuditRunOrderByRelevanceInput
342
+ }
343
+
344
+ export type SeoAuditRunWhereUniqueInput = Prisma.AtLeast<{
345
+ id?: string
346
+ AND?: Prisma.SeoAuditRunWhereInput | Prisma.SeoAuditRunWhereInput[]
347
+ OR?: Prisma.SeoAuditRunWhereInput[]
348
+ NOT?: Prisma.SeoAuditRunWhereInput | Prisma.SeoAuditRunWhereInput[]
349
+ status?: Prisma.EnumSeoAuditStatusFilter<"SeoAuditRun"> | $Enums.SeoAuditStatus
350
+ scope?: Prisma.StringFilter<"SeoAuditRun"> | string
351
+ startedById?: Prisma.StringNullableFilter<"SeoAuditRun"> | string | null
352
+ startedAt?: Prisma.DateTimeFilter<"SeoAuditRun"> | Date | string
353
+ finishedAt?: Prisma.DateTimeNullableFilter<"SeoAuditRun"> | Date | string | null
354
+ siteScoreBefore?: Prisma.IntNullableFilter<"SeoAuditRun"> | number | null
355
+ siteScoreAfter?: Prisma.IntNullableFilter<"SeoAuditRun"> | number | null
356
+ pagesScanned?: Prisma.IntFilter<"SeoAuditRun"> | number
357
+ issuesFound?: Prisma.IntFilter<"SeoAuditRun"> | number
358
+ criticalCount?: Prisma.IntFilter<"SeoAuditRun"> | number
359
+ warningCount?: Prisma.IntFilter<"SeoAuditRun"> | number
360
+ infoCount?: Prisma.IntFilter<"SeoAuditRun"> | number
361
+ errorMessage?: Prisma.StringNullableFilter<"SeoAuditRun"> | string | null
362
+ metadata?: Prisma.JsonNullableFilter<"SeoAuditRun">
363
+ issues?: Prisma.SeoIssueListRelationFilter
364
+ }, "id">
365
+
366
+ export type SeoAuditRunOrderByWithAggregationInput = {
367
+ id?: Prisma.SortOrder
368
+ status?: Prisma.SortOrder
369
+ scope?: Prisma.SortOrder
370
+ startedById?: Prisma.SortOrderInput | Prisma.SortOrder
371
+ startedAt?: Prisma.SortOrder
372
+ finishedAt?: Prisma.SortOrderInput | Prisma.SortOrder
373
+ siteScoreBefore?: Prisma.SortOrderInput | Prisma.SortOrder
374
+ siteScoreAfter?: Prisma.SortOrderInput | Prisma.SortOrder
375
+ pagesScanned?: Prisma.SortOrder
376
+ issuesFound?: Prisma.SortOrder
377
+ criticalCount?: Prisma.SortOrder
378
+ warningCount?: Prisma.SortOrder
379
+ infoCount?: Prisma.SortOrder
380
+ errorMessage?: Prisma.SortOrderInput | Prisma.SortOrder
381
+ metadata?: Prisma.SortOrderInput | Prisma.SortOrder
382
+ _count?: Prisma.SeoAuditRunCountOrderByAggregateInput
383
+ _avg?: Prisma.SeoAuditRunAvgOrderByAggregateInput
384
+ _max?: Prisma.SeoAuditRunMaxOrderByAggregateInput
385
+ _min?: Prisma.SeoAuditRunMinOrderByAggregateInput
386
+ _sum?: Prisma.SeoAuditRunSumOrderByAggregateInput
387
+ }
388
+
389
+ export type SeoAuditRunScalarWhereWithAggregatesInput = {
390
+ AND?: Prisma.SeoAuditRunScalarWhereWithAggregatesInput | Prisma.SeoAuditRunScalarWhereWithAggregatesInput[]
391
+ OR?: Prisma.SeoAuditRunScalarWhereWithAggregatesInput[]
392
+ NOT?: Prisma.SeoAuditRunScalarWhereWithAggregatesInput | Prisma.SeoAuditRunScalarWhereWithAggregatesInput[]
393
+ id?: Prisma.StringWithAggregatesFilter<"SeoAuditRun"> | string
394
+ status?: Prisma.EnumSeoAuditStatusWithAggregatesFilter<"SeoAuditRun"> | $Enums.SeoAuditStatus
395
+ scope?: Prisma.StringWithAggregatesFilter<"SeoAuditRun"> | string
396
+ startedById?: Prisma.StringNullableWithAggregatesFilter<"SeoAuditRun"> | string | null
397
+ startedAt?: Prisma.DateTimeWithAggregatesFilter<"SeoAuditRun"> | Date | string
398
+ finishedAt?: Prisma.DateTimeNullableWithAggregatesFilter<"SeoAuditRun"> | Date | string | null
399
+ siteScoreBefore?: Prisma.IntNullableWithAggregatesFilter<"SeoAuditRun"> | number | null
400
+ siteScoreAfter?: Prisma.IntNullableWithAggregatesFilter<"SeoAuditRun"> | number | null
401
+ pagesScanned?: Prisma.IntWithAggregatesFilter<"SeoAuditRun"> | number
402
+ issuesFound?: Prisma.IntWithAggregatesFilter<"SeoAuditRun"> | number
403
+ criticalCount?: Prisma.IntWithAggregatesFilter<"SeoAuditRun"> | number
404
+ warningCount?: Prisma.IntWithAggregatesFilter<"SeoAuditRun"> | number
405
+ infoCount?: Prisma.IntWithAggregatesFilter<"SeoAuditRun"> | number
406
+ errorMessage?: Prisma.StringNullableWithAggregatesFilter<"SeoAuditRun"> | string | null
407
+ metadata?: Prisma.JsonNullableWithAggregatesFilter<"SeoAuditRun">
408
+ }
409
+
410
+ export type SeoAuditRunCreateInput = {
411
+ id?: string
412
+ status?: $Enums.SeoAuditStatus
413
+ scope?: string
414
+ startedById?: string | null
415
+ startedAt?: Date | string
416
+ finishedAt?: Date | string | null
417
+ siteScoreBefore?: number | null
418
+ siteScoreAfter?: number | null
419
+ pagesScanned?: number
420
+ issuesFound?: number
421
+ criticalCount?: number
422
+ warningCount?: number
423
+ infoCount?: number
424
+ errorMessage?: string | null
425
+ metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
426
+ issues?: Prisma.SeoIssueCreateNestedManyWithoutAuditRunInput
427
+ }
428
+
429
+ export type SeoAuditRunUncheckedCreateInput = {
430
+ id?: string
431
+ status?: $Enums.SeoAuditStatus
432
+ scope?: string
433
+ startedById?: string | null
434
+ startedAt?: Date | string
435
+ finishedAt?: Date | string | null
436
+ siteScoreBefore?: number | null
437
+ siteScoreAfter?: number | null
438
+ pagesScanned?: number
439
+ issuesFound?: number
440
+ criticalCount?: number
441
+ warningCount?: number
442
+ infoCount?: number
443
+ errorMessage?: string | null
444
+ metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
445
+ issues?: Prisma.SeoIssueUncheckedCreateNestedManyWithoutAuditRunInput
446
+ }
447
+
448
+ export type SeoAuditRunUpdateInput = {
449
+ id?: Prisma.StringFieldUpdateOperationsInput | string
450
+ status?: Prisma.EnumSeoAuditStatusFieldUpdateOperationsInput | $Enums.SeoAuditStatus
451
+ scope?: Prisma.StringFieldUpdateOperationsInput | string
452
+ startedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
453
+ startedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
454
+ finishedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
455
+ siteScoreBefore?: Prisma.NullableIntFieldUpdateOperationsInput | number | null
456
+ siteScoreAfter?: Prisma.NullableIntFieldUpdateOperationsInput | number | null
457
+ pagesScanned?: Prisma.IntFieldUpdateOperationsInput | number
458
+ issuesFound?: Prisma.IntFieldUpdateOperationsInput | number
459
+ criticalCount?: Prisma.IntFieldUpdateOperationsInput | number
460
+ warningCount?: Prisma.IntFieldUpdateOperationsInput | number
461
+ infoCount?: Prisma.IntFieldUpdateOperationsInput | number
462
+ errorMessage?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
463
+ metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
464
+ issues?: Prisma.SeoIssueUpdateManyWithoutAuditRunNestedInput
465
+ }
466
+
467
+ export type SeoAuditRunUncheckedUpdateInput = {
468
+ id?: Prisma.StringFieldUpdateOperationsInput | string
469
+ status?: Prisma.EnumSeoAuditStatusFieldUpdateOperationsInput | $Enums.SeoAuditStatus
470
+ scope?: Prisma.StringFieldUpdateOperationsInput | string
471
+ startedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
472
+ startedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
473
+ finishedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
474
+ siteScoreBefore?: Prisma.NullableIntFieldUpdateOperationsInput | number | null
475
+ siteScoreAfter?: Prisma.NullableIntFieldUpdateOperationsInput | number | null
476
+ pagesScanned?: Prisma.IntFieldUpdateOperationsInput | number
477
+ issuesFound?: Prisma.IntFieldUpdateOperationsInput | number
478
+ criticalCount?: Prisma.IntFieldUpdateOperationsInput | number
479
+ warningCount?: Prisma.IntFieldUpdateOperationsInput | number
480
+ infoCount?: Prisma.IntFieldUpdateOperationsInput | number
481
+ errorMessage?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
482
+ metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
483
+ issues?: Prisma.SeoIssueUncheckedUpdateManyWithoutAuditRunNestedInput
484
+ }
485
+
486
+ export type SeoAuditRunCreateManyInput = {
487
+ id?: string
488
+ status?: $Enums.SeoAuditStatus
489
+ scope?: string
490
+ startedById?: string | null
491
+ startedAt?: Date | string
492
+ finishedAt?: Date | string | null
493
+ siteScoreBefore?: number | null
494
+ siteScoreAfter?: number | null
495
+ pagesScanned?: number
496
+ issuesFound?: number
497
+ criticalCount?: number
498
+ warningCount?: number
499
+ infoCount?: number
500
+ errorMessage?: string | null
501
+ metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
502
+ }
503
+
504
+ export type SeoAuditRunUpdateManyMutationInput = {
505
+ id?: Prisma.StringFieldUpdateOperationsInput | string
506
+ status?: Prisma.EnumSeoAuditStatusFieldUpdateOperationsInput | $Enums.SeoAuditStatus
507
+ scope?: Prisma.StringFieldUpdateOperationsInput | string
508
+ startedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
509
+ startedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
510
+ finishedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
511
+ siteScoreBefore?: Prisma.NullableIntFieldUpdateOperationsInput | number | null
512
+ siteScoreAfter?: Prisma.NullableIntFieldUpdateOperationsInput | number | null
513
+ pagesScanned?: Prisma.IntFieldUpdateOperationsInput | number
514
+ issuesFound?: Prisma.IntFieldUpdateOperationsInput | number
515
+ criticalCount?: Prisma.IntFieldUpdateOperationsInput | number
516
+ warningCount?: Prisma.IntFieldUpdateOperationsInput | number
517
+ infoCount?: Prisma.IntFieldUpdateOperationsInput | number
518
+ errorMessage?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
519
+ metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
520
+ }
521
+
522
+ export type SeoAuditRunUncheckedUpdateManyInput = {
523
+ id?: Prisma.StringFieldUpdateOperationsInput | string
524
+ status?: Prisma.EnumSeoAuditStatusFieldUpdateOperationsInput | $Enums.SeoAuditStatus
525
+ scope?: Prisma.StringFieldUpdateOperationsInput | string
526
+ startedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
527
+ startedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
528
+ finishedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
529
+ siteScoreBefore?: Prisma.NullableIntFieldUpdateOperationsInput | number | null
530
+ siteScoreAfter?: Prisma.NullableIntFieldUpdateOperationsInput | number | null
531
+ pagesScanned?: Prisma.IntFieldUpdateOperationsInput | number
532
+ issuesFound?: Prisma.IntFieldUpdateOperationsInput | number
533
+ criticalCount?: Prisma.IntFieldUpdateOperationsInput | number
534
+ warningCount?: Prisma.IntFieldUpdateOperationsInput | number
535
+ infoCount?: Prisma.IntFieldUpdateOperationsInput | number
536
+ errorMessage?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
537
+ metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
538
+ }
539
+
540
+ export type SeoAuditRunOrderByRelevanceInput = {
541
+ fields: Prisma.SeoAuditRunOrderByRelevanceFieldEnum | Prisma.SeoAuditRunOrderByRelevanceFieldEnum[]
542
+ sort: Prisma.SortOrder
543
+ search: string
544
+ }
545
+
546
+ export type SeoAuditRunCountOrderByAggregateInput = {
547
+ id?: Prisma.SortOrder
548
+ status?: Prisma.SortOrder
549
+ scope?: Prisma.SortOrder
550
+ startedById?: Prisma.SortOrder
551
+ startedAt?: Prisma.SortOrder
552
+ finishedAt?: Prisma.SortOrder
553
+ siteScoreBefore?: Prisma.SortOrder
554
+ siteScoreAfter?: Prisma.SortOrder
555
+ pagesScanned?: Prisma.SortOrder
556
+ issuesFound?: Prisma.SortOrder
557
+ criticalCount?: Prisma.SortOrder
558
+ warningCount?: Prisma.SortOrder
559
+ infoCount?: Prisma.SortOrder
560
+ errorMessage?: Prisma.SortOrder
561
+ metadata?: Prisma.SortOrder
562
+ }
563
+
564
+ export type SeoAuditRunAvgOrderByAggregateInput = {
565
+ siteScoreBefore?: Prisma.SortOrder
566
+ siteScoreAfter?: Prisma.SortOrder
567
+ pagesScanned?: Prisma.SortOrder
568
+ issuesFound?: Prisma.SortOrder
569
+ criticalCount?: Prisma.SortOrder
570
+ warningCount?: Prisma.SortOrder
571
+ infoCount?: Prisma.SortOrder
572
+ }
573
+
574
+ export type SeoAuditRunMaxOrderByAggregateInput = {
575
+ id?: Prisma.SortOrder
576
+ status?: Prisma.SortOrder
577
+ scope?: Prisma.SortOrder
578
+ startedById?: Prisma.SortOrder
579
+ startedAt?: Prisma.SortOrder
580
+ finishedAt?: Prisma.SortOrder
581
+ siteScoreBefore?: Prisma.SortOrder
582
+ siteScoreAfter?: Prisma.SortOrder
583
+ pagesScanned?: Prisma.SortOrder
584
+ issuesFound?: Prisma.SortOrder
585
+ criticalCount?: Prisma.SortOrder
586
+ warningCount?: Prisma.SortOrder
587
+ infoCount?: Prisma.SortOrder
588
+ errorMessage?: Prisma.SortOrder
589
+ }
590
+
591
+ export type SeoAuditRunMinOrderByAggregateInput = {
592
+ id?: Prisma.SortOrder
593
+ status?: Prisma.SortOrder
594
+ scope?: Prisma.SortOrder
595
+ startedById?: Prisma.SortOrder
596
+ startedAt?: Prisma.SortOrder
597
+ finishedAt?: Prisma.SortOrder
598
+ siteScoreBefore?: Prisma.SortOrder
599
+ siteScoreAfter?: Prisma.SortOrder
600
+ pagesScanned?: Prisma.SortOrder
601
+ issuesFound?: Prisma.SortOrder
602
+ criticalCount?: Prisma.SortOrder
603
+ warningCount?: Prisma.SortOrder
604
+ infoCount?: Prisma.SortOrder
605
+ errorMessage?: Prisma.SortOrder
606
+ }
607
+
608
+ export type SeoAuditRunSumOrderByAggregateInput = {
609
+ siteScoreBefore?: Prisma.SortOrder
610
+ siteScoreAfter?: Prisma.SortOrder
611
+ pagesScanned?: Prisma.SortOrder
612
+ issuesFound?: Prisma.SortOrder
613
+ criticalCount?: Prisma.SortOrder
614
+ warningCount?: Prisma.SortOrder
615
+ infoCount?: Prisma.SortOrder
616
+ }
617
+
618
+ export type SeoAuditRunNullableScalarRelationFilter = {
619
+ is?: Prisma.SeoAuditRunWhereInput | null
620
+ isNot?: Prisma.SeoAuditRunWhereInput | null
621
+ }
622
+
623
+ export type EnumSeoAuditStatusFieldUpdateOperationsInput = {
624
+ set?: $Enums.SeoAuditStatus
625
+ }
626
+
627
+ export type SeoAuditRunCreateNestedOneWithoutIssuesInput = {
628
+ create?: Prisma.XOR<Prisma.SeoAuditRunCreateWithoutIssuesInput, Prisma.SeoAuditRunUncheckedCreateWithoutIssuesInput>
629
+ connectOrCreate?: Prisma.SeoAuditRunCreateOrConnectWithoutIssuesInput
630
+ connect?: Prisma.SeoAuditRunWhereUniqueInput
631
+ }
632
+
633
+ export type SeoAuditRunUpdateOneWithoutIssuesNestedInput = {
634
+ create?: Prisma.XOR<Prisma.SeoAuditRunCreateWithoutIssuesInput, Prisma.SeoAuditRunUncheckedCreateWithoutIssuesInput>
635
+ connectOrCreate?: Prisma.SeoAuditRunCreateOrConnectWithoutIssuesInput
636
+ upsert?: Prisma.SeoAuditRunUpsertWithoutIssuesInput
637
+ disconnect?: Prisma.SeoAuditRunWhereInput | boolean
638
+ delete?: Prisma.SeoAuditRunWhereInput | boolean
639
+ connect?: Prisma.SeoAuditRunWhereUniqueInput
640
+ update?: Prisma.XOR<Prisma.XOR<Prisma.SeoAuditRunUpdateToOneWithWhereWithoutIssuesInput, Prisma.SeoAuditRunUpdateWithoutIssuesInput>, Prisma.SeoAuditRunUncheckedUpdateWithoutIssuesInput>
641
+ }
642
+
643
+ export type SeoAuditRunCreateWithoutIssuesInput = {
644
+ id?: string
645
+ status?: $Enums.SeoAuditStatus
646
+ scope?: string
647
+ startedById?: string | null
648
+ startedAt?: Date | string
649
+ finishedAt?: Date | string | null
650
+ siteScoreBefore?: number | null
651
+ siteScoreAfter?: number | null
652
+ pagesScanned?: number
653
+ issuesFound?: number
654
+ criticalCount?: number
655
+ warningCount?: number
656
+ infoCount?: number
657
+ errorMessage?: string | null
658
+ metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
659
+ }
660
+
661
+ export type SeoAuditRunUncheckedCreateWithoutIssuesInput = {
662
+ id?: string
663
+ status?: $Enums.SeoAuditStatus
664
+ scope?: string
665
+ startedById?: string | null
666
+ startedAt?: Date | string
667
+ finishedAt?: Date | string | null
668
+ siteScoreBefore?: number | null
669
+ siteScoreAfter?: number | null
670
+ pagesScanned?: number
671
+ issuesFound?: number
672
+ criticalCount?: number
673
+ warningCount?: number
674
+ infoCount?: number
675
+ errorMessage?: string | null
676
+ metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
677
+ }
678
+
679
+ export type SeoAuditRunCreateOrConnectWithoutIssuesInput = {
680
+ where: Prisma.SeoAuditRunWhereUniqueInput
681
+ create: Prisma.XOR<Prisma.SeoAuditRunCreateWithoutIssuesInput, Prisma.SeoAuditRunUncheckedCreateWithoutIssuesInput>
682
+ }
683
+
684
+ export type SeoAuditRunUpsertWithoutIssuesInput = {
685
+ update: Prisma.XOR<Prisma.SeoAuditRunUpdateWithoutIssuesInput, Prisma.SeoAuditRunUncheckedUpdateWithoutIssuesInput>
686
+ create: Prisma.XOR<Prisma.SeoAuditRunCreateWithoutIssuesInput, Prisma.SeoAuditRunUncheckedCreateWithoutIssuesInput>
687
+ where?: Prisma.SeoAuditRunWhereInput
688
+ }
689
+
690
+ export type SeoAuditRunUpdateToOneWithWhereWithoutIssuesInput = {
691
+ where?: Prisma.SeoAuditRunWhereInput
692
+ data: Prisma.XOR<Prisma.SeoAuditRunUpdateWithoutIssuesInput, Prisma.SeoAuditRunUncheckedUpdateWithoutIssuesInput>
693
+ }
694
+
695
+ export type SeoAuditRunUpdateWithoutIssuesInput = {
696
+ id?: Prisma.StringFieldUpdateOperationsInput | string
697
+ status?: Prisma.EnumSeoAuditStatusFieldUpdateOperationsInput | $Enums.SeoAuditStatus
698
+ scope?: Prisma.StringFieldUpdateOperationsInput | string
699
+ startedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
700
+ startedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
701
+ finishedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
702
+ siteScoreBefore?: Prisma.NullableIntFieldUpdateOperationsInput | number | null
703
+ siteScoreAfter?: Prisma.NullableIntFieldUpdateOperationsInput | number | null
704
+ pagesScanned?: Prisma.IntFieldUpdateOperationsInput | number
705
+ issuesFound?: Prisma.IntFieldUpdateOperationsInput | number
706
+ criticalCount?: Prisma.IntFieldUpdateOperationsInput | number
707
+ warningCount?: Prisma.IntFieldUpdateOperationsInput | number
708
+ infoCount?: Prisma.IntFieldUpdateOperationsInput | number
709
+ errorMessage?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
710
+ metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
711
+ }
712
+
713
+ export type SeoAuditRunUncheckedUpdateWithoutIssuesInput = {
714
+ id?: Prisma.StringFieldUpdateOperationsInput | string
715
+ status?: Prisma.EnumSeoAuditStatusFieldUpdateOperationsInput | $Enums.SeoAuditStatus
716
+ scope?: Prisma.StringFieldUpdateOperationsInput | string
717
+ startedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
718
+ startedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
719
+ finishedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
720
+ siteScoreBefore?: Prisma.NullableIntFieldUpdateOperationsInput | number | null
721
+ siteScoreAfter?: Prisma.NullableIntFieldUpdateOperationsInput | number | null
722
+ pagesScanned?: Prisma.IntFieldUpdateOperationsInput | number
723
+ issuesFound?: Prisma.IntFieldUpdateOperationsInput | number
724
+ criticalCount?: Prisma.IntFieldUpdateOperationsInput | number
725
+ warningCount?: Prisma.IntFieldUpdateOperationsInput | number
726
+ infoCount?: Prisma.IntFieldUpdateOperationsInput | number
727
+ errorMessage?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
728
+ metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
729
+ }
730
+
731
+
732
+ /**
733
+ * Count Type SeoAuditRunCountOutputType
734
+ */
735
+
736
+ export type SeoAuditRunCountOutputType = {
737
+ issues: number
738
+ }
739
+
740
+ export type SeoAuditRunCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
741
+ issues?: boolean | SeoAuditRunCountOutputTypeCountIssuesArgs
742
+ }
743
+
744
+ /**
745
+ * SeoAuditRunCountOutputType without action
746
+ */
747
+ export type SeoAuditRunCountOutputTypeDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
748
+ /**
749
+ * Select specific fields to fetch from the SeoAuditRunCountOutputType
750
+ */
751
+ select?: Prisma.SeoAuditRunCountOutputTypeSelect<ExtArgs> | null
752
+ }
753
+
754
+ /**
755
+ * SeoAuditRunCountOutputType without action
756
+ */
757
+ export type SeoAuditRunCountOutputTypeCountIssuesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
758
+ where?: Prisma.SeoIssueWhereInput
759
+ }
760
+
761
+
762
+ export type SeoAuditRunSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
763
+ id?: boolean
764
+ status?: boolean
765
+ scope?: boolean
766
+ startedById?: boolean
767
+ startedAt?: boolean
768
+ finishedAt?: boolean
769
+ siteScoreBefore?: boolean
770
+ siteScoreAfter?: boolean
771
+ pagesScanned?: boolean
772
+ issuesFound?: boolean
773
+ criticalCount?: boolean
774
+ warningCount?: boolean
775
+ infoCount?: boolean
776
+ errorMessage?: boolean
777
+ metadata?: boolean
778
+ issues?: boolean | Prisma.SeoAuditRun$issuesArgs<ExtArgs>
779
+ _count?: boolean | Prisma.SeoAuditRunCountOutputTypeDefaultArgs<ExtArgs>
780
+ }, ExtArgs["result"]["seoAuditRun"]>
781
+
782
+ export type SeoAuditRunSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
783
+ id?: boolean
784
+ status?: boolean
785
+ scope?: boolean
786
+ startedById?: boolean
787
+ startedAt?: boolean
788
+ finishedAt?: boolean
789
+ siteScoreBefore?: boolean
790
+ siteScoreAfter?: boolean
791
+ pagesScanned?: boolean
792
+ issuesFound?: boolean
793
+ criticalCount?: boolean
794
+ warningCount?: boolean
795
+ infoCount?: boolean
796
+ errorMessage?: boolean
797
+ metadata?: boolean
798
+ }, ExtArgs["result"]["seoAuditRun"]>
799
+
800
+ export type SeoAuditRunSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
801
+ id?: boolean
802
+ status?: boolean
803
+ scope?: boolean
804
+ startedById?: boolean
805
+ startedAt?: boolean
806
+ finishedAt?: boolean
807
+ siteScoreBefore?: boolean
808
+ siteScoreAfter?: boolean
809
+ pagesScanned?: boolean
810
+ issuesFound?: boolean
811
+ criticalCount?: boolean
812
+ warningCount?: boolean
813
+ infoCount?: boolean
814
+ errorMessage?: boolean
815
+ metadata?: boolean
816
+ }, ExtArgs["result"]["seoAuditRun"]>
817
+
818
+ export type SeoAuditRunSelectScalar = {
819
+ id?: boolean
820
+ status?: boolean
821
+ scope?: boolean
822
+ startedById?: boolean
823
+ startedAt?: boolean
824
+ finishedAt?: boolean
825
+ siteScoreBefore?: boolean
826
+ siteScoreAfter?: boolean
827
+ pagesScanned?: boolean
828
+ issuesFound?: boolean
829
+ criticalCount?: boolean
830
+ warningCount?: boolean
831
+ infoCount?: boolean
832
+ errorMessage?: boolean
833
+ metadata?: boolean
834
+ }
835
+
836
+ export type SeoAuditRunOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "status" | "scope" | "startedById" | "startedAt" | "finishedAt" | "siteScoreBefore" | "siteScoreAfter" | "pagesScanned" | "issuesFound" | "criticalCount" | "warningCount" | "infoCount" | "errorMessage" | "metadata", ExtArgs["result"]["seoAuditRun"]>
837
+ export type SeoAuditRunInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
838
+ issues?: boolean | Prisma.SeoAuditRun$issuesArgs<ExtArgs>
839
+ _count?: boolean | Prisma.SeoAuditRunCountOutputTypeDefaultArgs<ExtArgs>
840
+ }
841
+ export type SeoAuditRunIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {}
842
+ export type SeoAuditRunIncludeUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {}
843
+
844
+ export type $SeoAuditRunPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
845
+ name: "SeoAuditRun"
846
+ objects: {
847
+ issues: Prisma.$SeoIssuePayload<ExtArgs>[]
848
+ }
849
+ scalars: runtime.Types.Extensions.GetPayloadResult<{
850
+ id: string
851
+ status: $Enums.SeoAuditStatus
852
+ scope: string
853
+ startedById: string | null
854
+ startedAt: Date
855
+ finishedAt: Date | null
856
+ siteScoreBefore: number | null
857
+ siteScoreAfter: number | null
858
+ pagesScanned: number
859
+ issuesFound: number
860
+ criticalCount: number
861
+ warningCount: number
862
+ infoCount: number
863
+ errorMessage: string | null
864
+ metadata: runtime.JsonValue | null
865
+ }, ExtArgs["result"]["seoAuditRun"]>
866
+ composites: {}
867
+ }
868
+
869
+ export type SeoAuditRunGetPayload<S extends boolean | null | undefined | SeoAuditRunDefaultArgs> = runtime.Types.Result.GetResult<Prisma.$SeoAuditRunPayload, S>
870
+
871
+ export type SeoAuditRunCountArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> =
872
+ Omit<SeoAuditRunFindManyArgs, 'select' | 'include' | 'distinct' | 'omit' | 'relationLoadStrategy'> & {
873
+ select?: SeoAuditRunCountAggregateInputType | true
874
+ }
875
+
876
+ export interface SeoAuditRunDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
877
+ [K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['SeoAuditRun'], meta: { name: 'SeoAuditRun' } }
878
+ /**
879
+ * Find zero or one SeoAuditRun that matches the filter.
880
+ * @param {SeoAuditRunFindUniqueArgs} args - Arguments to find a SeoAuditRun
881
+ * @example
882
+ * // Get one SeoAuditRun
883
+ * const seoAuditRun = await prisma.seoAuditRun.findUnique({
884
+ * where: {
885
+ * // ... provide filter here
886
+ * }
887
+ * })
888
+ */
889
+ findUnique<T extends SeoAuditRunFindUniqueArgs>(args: Prisma.SelectSubset<T, SeoAuditRunFindUniqueArgs<ExtArgs>>): Prisma.Prisma__SeoAuditRunClient<runtime.Types.Result.GetResult<Prisma.$SeoAuditRunPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
890
+
891
+ /**
892
+ * Find one SeoAuditRun that matches the filter or throw an error with `error.code='P2025'`
893
+ * if no matches were found.
894
+ * @param {SeoAuditRunFindUniqueOrThrowArgs} args - Arguments to find a SeoAuditRun
895
+ * @example
896
+ * // Get one SeoAuditRun
897
+ * const seoAuditRun = await prisma.seoAuditRun.findUniqueOrThrow({
898
+ * where: {
899
+ * // ... provide filter here
900
+ * }
901
+ * })
902
+ */
903
+ findUniqueOrThrow<T extends SeoAuditRunFindUniqueOrThrowArgs>(args: Prisma.SelectSubset<T, SeoAuditRunFindUniqueOrThrowArgs<ExtArgs>>): Prisma.Prisma__SeoAuditRunClient<runtime.Types.Result.GetResult<Prisma.$SeoAuditRunPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
904
+
905
+ /**
906
+ * Find the first SeoAuditRun that matches the filter.
907
+ * Note, that providing `undefined` is treated as the value not being there.
908
+ * Read more here: https://pris.ly/d/null-undefined
909
+ * @param {SeoAuditRunFindFirstArgs} args - Arguments to find a SeoAuditRun
910
+ * @example
911
+ * // Get one SeoAuditRun
912
+ * const seoAuditRun = await prisma.seoAuditRun.findFirst({
913
+ * where: {
914
+ * // ... provide filter here
915
+ * }
916
+ * })
917
+ */
918
+ findFirst<T extends SeoAuditRunFindFirstArgs>(args?: Prisma.SelectSubset<T, SeoAuditRunFindFirstArgs<ExtArgs>>): Prisma.Prisma__SeoAuditRunClient<runtime.Types.Result.GetResult<Prisma.$SeoAuditRunPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
919
+
920
+ /**
921
+ * Find the first SeoAuditRun that matches the filter or
922
+ * throw `PrismaKnownClientError` with `P2025` code if no matches were found.
923
+ * Note, that providing `undefined` is treated as the value not being there.
924
+ * Read more here: https://pris.ly/d/null-undefined
925
+ * @param {SeoAuditRunFindFirstOrThrowArgs} args - Arguments to find a SeoAuditRun
926
+ * @example
927
+ * // Get one SeoAuditRun
928
+ * const seoAuditRun = await prisma.seoAuditRun.findFirstOrThrow({
929
+ * where: {
930
+ * // ... provide filter here
931
+ * }
932
+ * })
933
+ */
934
+ findFirstOrThrow<T extends SeoAuditRunFindFirstOrThrowArgs>(args?: Prisma.SelectSubset<T, SeoAuditRunFindFirstOrThrowArgs<ExtArgs>>): Prisma.Prisma__SeoAuditRunClient<runtime.Types.Result.GetResult<Prisma.$SeoAuditRunPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
935
+
936
+ /**
937
+ * Find zero or more SeoAuditRuns that matches the filter.
938
+ * Note, that providing `undefined` is treated as the value not being there.
939
+ * Read more here: https://pris.ly/d/null-undefined
940
+ * @param {SeoAuditRunFindManyArgs} args - Arguments to filter and select certain fields only.
941
+ * @example
942
+ * // Get all SeoAuditRuns
943
+ * const seoAuditRuns = await prisma.seoAuditRun.findMany()
944
+ *
945
+ * // Get first 10 SeoAuditRuns
946
+ * const seoAuditRuns = await prisma.seoAuditRun.findMany({ take: 10 })
947
+ *
948
+ * // Only select the `id`
949
+ * const seoAuditRunWithIdOnly = await prisma.seoAuditRun.findMany({ select: { id: true } })
950
+ *
951
+ */
952
+ findMany<T extends SeoAuditRunFindManyArgs>(args?: Prisma.SelectSubset<T, SeoAuditRunFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$SeoAuditRunPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>
953
+
954
+ /**
955
+ * Create a SeoAuditRun.
956
+ * @param {SeoAuditRunCreateArgs} args - Arguments to create a SeoAuditRun.
957
+ * @example
958
+ * // Create one SeoAuditRun
959
+ * const SeoAuditRun = await prisma.seoAuditRun.create({
960
+ * data: {
961
+ * // ... data to create a SeoAuditRun
962
+ * }
963
+ * })
964
+ *
965
+ */
966
+ create<T extends SeoAuditRunCreateArgs>(args: Prisma.SelectSubset<T, SeoAuditRunCreateArgs<ExtArgs>>): Prisma.Prisma__SeoAuditRunClient<runtime.Types.Result.GetResult<Prisma.$SeoAuditRunPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
967
+
968
+ /**
969
+ * Create many SeoAuditRuns.
970
+ * @param {SeoAuditRunCreateManyArgs} args - Arguments to create many SeoAuditRuns.
971
+ * @example
972
+ * // Create many SeoAuditRuns
973
+ * const seoAuditRun = await prisma.seoAuditRun.createMany({
974
+ * data: [
975
+ * // ... provide data here
976
+ * ]
977
+ * })
978
+ *
979
+ */
980
+ createMany<T extends SeoAuditRunCreateManyArgs>(args?: Prisma.SelectSubset<T, SeoAuditRunCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>
981
+
982
+ /**
983
+ * Create many SeoAuditRuns and returns the data saved in the database.
984
+ * @param {SeoAuditRunCreateManyAndReturnArgs} args - Arguments to create many SeoAuditRuns.
985
+ * @example
986
+ * // Create many SeoAuditRuns
987
+ * const seoAuditRun = await prisma.seoAuditRun.createManyAndReturn({
988
+ * data: [
989
+ * // ... provide data here
990
+ * ]
991
+ * })
992
+ *
993
+ * // Create many SeoAuditRuns and only return the `id`
994
+ * const seoAuditRunWithIdOnly = await prisma.seoAuditRun.createManyAndReturn({
995
+ * select: { id: true },
996
+ * data: [
997
+ * // ... provide data here
998
+ * ]
999
+ * })
1000
+ * Note, that providing `undefined` is treated as the value not being there.
1001
+ * Read more here: https://pris.ly/d/null-undefined
1002
+ *
1003
+ */
1004
+ createManyAndReturn<T extends SeoAuditRunCreateManyAndReturnArgs>(args?: Prisma.SelectSubset<T, SeoAuditRunCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$SeoAuditRunPayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>
1005
+
1006
+ /**
1007
+ * Delete a SeoAuditRun.
1008
+ * @param {SeoAuditRunDeleteArgs} args - Arguments to delete one SeoAuditRun.
1009
+ * @example
1010
+ * // Delete one SeoAuditRun
1011
+ * const SeoAuditRun = await prisma.seoAuditRun.delete({
1012
+ * where: {
1013
+ * // ... filter to delete one SeoAuditRun
1014
+ * }
1015
+ * })
1016
+ *
1017
+ */
1018
+ delete<T extends SeoAuditRunDeleteArgs>(args: Prisma.SelectSubset<T, SeoAuditRunDeleteArgs<ExtArgs>>): Prisma.Prisma__SeoAuditRunClient<runtime.Types.Result.GetResult<Prisma.$SeoAuditRunPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
1019
+
1020
+ /**
1021
+ * Update one SeoAuditRun.
1022
+ * @param {SeoAuditRunUpdateArgs} args - Arguments to update one SeoAuditRun.
1023
+ * @example
1024
+ * // Update one SeoAuditRun
1025
+ * const seoAuditRun = await prisma.seoAuditRun.update({
1026
+ * where: {
1027
+ * // ... provide filter here
1028
+ * },
1029
+ * data: {
1030
+ * // ... provide data here
1031
+ * }
1032
+ * })
1033
+ *
1034
+ */
1035
+ update<T extends SeoAuditRunUpdateArgs>(args: Prisma.SelectSubset<T, SeoAuditRunUpdateArgs<ExtArgs>>): Prisma.Prisma__SeoAuditRunClient<runtime.Types.Result.GetResult<Prisma.$SeoAuditRunPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
1036
+
1037
+ /**
1038
+ * Delete zero or more SeoAuditRuns.
1039
+ * @param {SeoAuditRunDeleteManyArgs} args - Arguments to filter SeoAuditRuns to delete.
1040
+ * @example
1041
+ * // Delete a few SeoAuditRuns
1042
+ * const { count } = await prisma.seoAuditRun.deleteMany({
1043
+ * where: {
1044
+ * // ... provide filter here
1045
+ * }
1046
+ * })
1047
+ *
1048
+ */
1049
+ deleteMany<T extends SeoAuditRunDeleteManyArgs>(args?: Prisma.SelectSubset<T, SeoAuditRunDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>
1050
+
1051
+ /**
1052
+ * Update zero or more SeoAuditRuns.
1053
+ * Note, that providing `undefined` is treated as the value not being there.
1054
+ * Read more here: https://pris.ly/d/null-undefined
1055
+ * @param {SeoAuditRunUpdateManyArgs} args - Arguments to update one or more rows.
1056
+ * @example
1057
+ * // Update many SeoAuditRuns
1058
+ * const seoAuditRun = await prisma.seoAuditRun.updateMany({
1059
+ * where: {
1060
+ * // ... provide filter here
1061
+ * },
1062
+ * data: {
1063
+ * // ... provide data here
1064
+ * }
1065
+ * })
1066
+ *
1067
+ */
1068
+ updateMany<T extends SeoAuditRunUpdateManyArgs>(args: Prisma.SelectSubset<T, SeoAuditRunUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>
1069
+
1070
+ /**
1071
+ * Update zero or more SeoAuditRuns and returns the data updated in the database.
1072
+ * @param {SeoAuditRunUpdateManyAndReturnArgs} args - Arguments to update many SeoAuditRuns.
1073
+ * @example
1074
+ * // Update many SeoAuditRuns
1075
+ * const seoAuditRun = await prisma.seoAuditRun.updateManyAndReturn({
1076
+ * where: {
1077
+ * // ... provide filter here
1078
+ * },
1079
+ * data: [
1080
+ * // ... provide data here
1081
+ * ]
1082
+ * })
1083
+ *
1084
+ * // Update zero or more SeoAuditRuns and only return the `id`
1085
+ * const seoAuditRunWithIdOnly = await prisma.seoAuditRun.updateManyAndReturn({
1086
+ * select: { id: true },
1087
+ * where: {
1088
+ * // ... provide filter here
1089
+ * },
1090
+ * data: [
1091
+ * // ... provide data here
1092
+ * ]
1093
+ * })
1094
+ * Note, that providing `undefined` is treated as the value not being there.
1095
+ * Read more here: https://pris.ly/d/null-undefined
1096
+ *
1097
+ */
1098
+ updateManyAndReturn<T extends SeoAuditRunUpdateManyAndReturnArgs>(args: Prisma.SelectSubset<T, SeoAuditRunUpdateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$SeoAuditRunPayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>
1099
+
1100
+ /**
1101
+ * Create or update one SeoAuditRun.
1102
+ * @param {SeoAuditRunUpsertArgs} args - Arguments to update or create a SeoAuditRun.
1103
+ * @example
1104
+ * // Update or create a SeoAuditRun
1105
+ * const seoAuditRun = await prisma.seoAuditRun.upsert({
1106
+ * create: {
1107
+ * // ... data to create a SeoAuditRun
1108
+ * },
1109
+ * update: {
1110
+ * // ... in case it already exists, update
1111
+ * },
1112
+ * where: {
1113
+ * // ... the filter for the SeoAuditRun we want to update
1114
+ * }
1115
+ * })
1116
+ */
1117
+ upsert<T extends SeoAuditRunUpsertArgs>(args: Prisma.SelectSubset<T, SeoAuditRunUpsertArgs<ExtArgs>>): Prisma.Prisma__SeoAuditRunClient<runtime.Types.Result.GetResult<Prisma.$SeoAuditRunPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
1118
+
1119
+
1120
+ /**
1121
+ * Count the number of SeoAuditRuns.
1122
+ * Note, that providing `undefined` is treated as the value not being there.
1123
+ * Read more here: https://pris.ly/d/null-undefined
1124
+ * @param {SeoAuditRunCountArgs} args - Arguments to filter SeoAuditRuns to count.
1125
+ * @example
1126
+ * // Count the number of SeoAuditRuns
1127
+ * const count = await prisma.seoAuditRun.count({
1128
+ * where: {
1129
+ * // ... the filter for the SeoAuditRuns we want to count
1130
+ * }
1131
+ * })
1132
+ **/
1133
+ count<T extends SeoAuditRunCountArgs>(
1134
+ args?: Prisma.Subset<T, SeoAuditRunCountArgs>,
1135
+ ): Prisma.PrismaPromise<
1136
+ T extends runtime.Types.Utils.Record<'select', any>
1137
+ ? T['select'] extends true
1138
+ ? number
1139
+ : Prisma.GetScalarType<T['select'], SeoAuditRunCountAggregateOutputType>
1140
+ : number
1141
+ >
1142
+
1143
+ /**
1144
+ * Allows you to perform aggregations operations on a SeoAuditRun.
1145
+ * Note, that providing `undefined` is treated as the value not being there.
1146
+ * Read more here: https://pris.ly/d/null-undefined
1147
+ * @param {SeoAuditRunAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
1148
+ * @example
1149
+ * // Ordered by age ascending
1150
+ * // Where email contains prisma.io
1151
+ * // Limited to the 10 users
1152
+ * const aggregations = await prisma.user.aggregate({
1153
+ * _avg: {
1154
+ * age: true,
1155
+ * },
1156
+ * where: {
1157
+ * email: {
1158
+ * contains: "prisma.io",
1159
+ * },
1160
+ * },
1161
+ * orderBy: {
1162
+ * age: "asc",
1163
+ * },
1164
+ * take: 10,
1165
+ * })
1166
+ **/
1167
+ aggregate<T extends SeoAuditRunAggregateArgs>(args: Prisma.Subset<T, SeoAuditRunAggregateArgs>): Prisma.PrismaPromise<GetSeoAuditRunAggregateType<T>>
1168
+
1169
+ /**
1170
+ * Group by SeoAuditRun.
1171
+ * Note, that providing `undefined` is treated as the value not being there.
1172
+ * Read more here: https://pris.ly/d/null-undefined
1173
+ * @param {SeoAuditRunGroupByArgs} args - Group by arguments.
1174
+ * @example
1175
+ * // Group by city, order by createdAt, get count
1176
+ * const result = await prisma.user.groupBy({
1177
+ * by: ['city', 'createdAt'],
1178
+ * orderBy: {
1179
+ * createdAt: true
1180
+ * },
1181
+ * _count: {
1182
+ * _all: true
1183
+ * },
1184
+ * })
1185
+ *
1186
+ **/
1187
+ groupBy<
1188
+ T extends SeoAuditRunGroupByArgs,
1189
+ HasSelectOrTake extends Prisma.Or<
1190
+ Prisma.Extends<'skip', Prisma.Keys<T>>,
1191
+ Prisma.Extends<'take', Prisma.Keys<T>>
1192
+ >,
1193
+ OrderByArg extends Prisma.True extends HasSelectOrTake
1194
+ ? { orderBy: SeoAuditRunGroupByArgs['orderBy'] }
1195
+ : { orderBy?: SeoAuditRunGroupByArgs['orderBy'] },
1196
+ OrderFields extends Prisma.ExcludeUnderscoreKeys<Prisma.Keys<Prisma.MaybeTupleToUnion<T['orderBy']>>>,
1197
+ ByFields extends Prisma.MaybeTupleToUnion<T['by']>,
1198
+ ByValid extends Prisma.Has<ByFields, OrderFields>,
1199
+ HavingFields extends Prisma.GetHavingFields<T['having']>,
1200
+ HavingValid extends Prisma.Has<ByFields, HavingFields>,
1201
+ ByEmpty extends T['by'] extends never[] ? Prisma.True : Prisma.False,
1202
+ InputErrors extends ByEmpty extends Prisma.True
1203
+ ? `Error: "by" must not be empty.`
1204
+ : HavingValid extends Prisma.False
1205
+ ? {
1206
+ [P in HavingFields]: P extends ByFields
1207
+ ? never
1208
+ : P extends string
1209
+ ? `Error: Field "${P}" used in "having" needs to be provided in "by".`
1210
+ : [
1211
+ Error,
1212
+ 'Field ',
1213
+ P,
1214
+ ` in "having" needs to be provided in "by"`,
1215
+ ]
1216
+ }[HavingFields]
1217
+ : 'take' extends Prisma.Keys<T>
1218
+ ? 'orderBy' extends Prisma.Keys<T>
1219
+ ? ByValid extends Prisma.True
1220
+ ? {}
1221
+ : {
1222
+ [P in OrderFields]: P extends ByFields
1223
+ ? never
1224
+ : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
1225
+ }[OrderFields]
1226
+ : 'Error: If you provide "take", you also need to provide "orderBy"'
1227
+ : 'skip' extends Prisma.Keys<T>
1228
+ ? 'orderBy' extends Prisma.Keys<T>
1229
+ ? ByValid extends Prisma.True
1230
+ ? {}
1231
+ : {
1232
+ [P in OrderFields]: P extends ByFields
1233
+ ? never
1234
+ : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
1235
+ }[OrderFields]
1236
+ : 'Error: If you provide "skip", you also need to provide "orderBy"'
1237
+ : ByValid extends Prisma.True
1238
+ ? {}
1239
+ : {
1240
+ [P in OrderFields]: P extends ByFields
1241
+ ? never
1242
+ : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
1243
+ }[OrderFields]
1244
+ >(args: Prisma.SubsetIntersection<T, SeoAuditRunGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetSeoAuditRunGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
1245
+ /**
1246
+ * Fields of the SeoAuditRun model
1247
+ */
1248
+ readonly fields: SeoAuditRunFieldRefs;
1249
+ }
1250
+
1251
+ /**
1252
+ * The delegate class that acts as a "Promise-like" for SeoAuditRun.
1253
+ * Why is this prefixed with `Prisma__`?
1254
+ * Because we want to prevent naming conflicts as mentioned in
1255
+ * https://github.com/prisma/prisma-client-js/issues/707
1256
+ */
1257
+ export interface Prisma__SeoAuditRunClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
1258
+ readonly [Symbol.toStringTag]: "PrismaPromise"
1259
+ issues<T extends Prisma.SeoAuditRun$issuesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.SeoAuditRun$issuesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$SeoIssuePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
1260
+ /**
1261
+ * Attaches callbacks for the resolution and/or rejection of the Promise.
1262
+ * @param onfulfilled The callback to execute when the Promise is resolved.
1263
+ * @param onrejected The callback to execute when the Promise is rejected.
1264
+ * @returns A Promise for the completion of which ever callback is executed.
1265
+ */
1266
+ then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): runtime.Types.Utils.JsPromise<TResult1 | TResult2>
1267
+ /**
1268
+ * Attaches a callback for only the rejection of the Promise.
1269
+ * @param onrejected The callback to execute when the Promise is rejected.
1270
+ * @returns A Promise for the completion of the callback.
1271
+ */
1272
+ catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): runtime.Types.Utils.JsPromise<T | TResult>
1273
+ /**
1274
+ * Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
1275
+ * resolved value cannot be modified from the callback.
1276
+ * @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
1277
+ * @returns A Promise for the completion of the callback.
1278
+ */
1279
+ finally(onfinally?: (() => void) | undefined | null): runtime.Types.Utils.JsPromise<T>
1280
+ }
1281
+
1282
+
1283
+
1284
+
1285
+ /**
1286
+ * Fields of the SeoAuditRun model
1287
+ */
1288
+ export interface SeoAuditRunFieldRefs {
1289
+ readonly id: Prisma.FieldRef<"SeoAuditRun", 'String'>
1290
+ readonly status: Prisma.FieldRef<"SeoAuditRun", 'SeoAuditStatus'>
1291
+ readonly scope: Prisma.FieldRef<"SeoAuditRun", 'String'>
1292
+ readonly startedById: Prisma.FieldRef<"SeoAuditRun", 'String'>
1293
+ readonly startedAt: Prisma.FieldRef<"SeoAuditRun", 'DateTime'>
1294
+ readonly finishedAt: Prisma.FieldRef<"SeoAuditRun", 'DateTime'>
1295
+ readonly siteScoreBefore: Prisma.FieldRef<"SeoAuditRun", 'Int'>
1296
+ readonly siteScoreAfter: Prisma.FieldRef<"SeoAuditRun", 'Int'>
1297
+ readonly pagesScanned: Prisma.FieldRef<"SeoAuditRun", 'Int'>
1298
+ readonly issuesFound: Prisma.FieldRef<"SeoAuditRun", 'Int'>
1299
+ readonly criticalCount: Prisma.FieldRef<"SeoAuditRun", 'Int'>
1300
+ readonly warningCount: Prisma.FieldRef<"SeoAuditRun", 'Int'>
1301
+ readonly infoCount: Prisma.FieldRef<"SeoAuditRun", 'Int'>
1302
+ readonly errorMessage: Prisma.FieldRef<"SeoAuditRun", 'String'>
1303
+ readonly metadata: Prisma.FieldRef<"SeoAuditRun", 'Json'>
1304
+ }
1305
+
1306
+
1307
+ // Custom InputTypes
1308
+ /**
1309
+ * SeoAuditRun findUnique
1310
+ */
1311
+ export type SeoAuditRunFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1312
+ /**
1313
+ * Select specific fields to fetch from the SeoAuditRun
1314
+ */
1315
+ select?: Prisma.SeoAuditRunSelect<ExtArgs> | null
1316
+ /**
1317
+ * Omit specific fields from the SeoAuditRun
1318
+ */
1319
+ omit?: Prisma.SeoAuditRunOmit<ExtArgs> | null
1320
+ /**
1321
+ * Choose, which related nodes to fetch as well
1322
+ */
1323
+ include?: Prisma.SeoAuditRunInclude<ExtArgs> | null
1324
+ /**
1325
+ * Filter, which SeoAuditRun to fetch.
1326
+ */
1327
+ where: Prisma.SeoAuditRunWhereUniqueInput
1328
+ relationLoadStrategy?: Prisma.RelationLoadStrategy
1329
+ }
1330
+
1331
+ /**
1332
+ * SeoAuditRun findUniqueOrThrow
1333
+ */
1334
+ export type SeoAuditRunFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1335
+ /**
1336
+ * Select specific fields to fetch from the SeoAuditRun
1337
+ */
1338
+ select?: Prisma.SeoAuditRunSelect<ExtArgs> | null
1339
+ /**
1340
+ * Omit specific fields from the SeoAuditRun
1341
+ */
1342
+ omit?: Prisma.SeoAuditRunOmit<ExtArgs> | null
1343
+ /**
1344
+ * Choose, which related nodes to fetch as well
1345
+ */
1346
+ include?: Prisma.SeoAuditRunInclude<ExtArgs> | null
1347
+ /**
1348
+ * Filter, which SeoAuditRun to fetch.
1349
+ */
1350
+ where: Prisma.SeoAuditRunWhereUniqueInput
1351
+ relationLoadStrategy?: Prisma.RelationLoadStrategy
1352
+ }
1353
+
1354
+ /**
1355
+ * SeoAuditRun findFirst
1356
+ */
1357
+ export type SeoAuditRunFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1358
+ /**
1359
+ * Select specific fields to fetch from the SeoAuditRun
1360
+ */
1361
+ select?: Prisma.SeoAuditRunSelect<ExtArgs> | null
1362
+ /**
1363
+ * Omit specific fields from the SeoAuditRun
1364
+ */
1365
+ omit?: Prisma.SeoAuditRunOmit<ExtArgs> | null
1366
+ /**
1367
+ * Choose, which related nodes to fetch as well
1368
+ */
1369
+ include?: Prisma.SeoAuditRunInclude<ExtArgs> | null
1370
+ /**
1371
+ * Filter, which SeoAuditRun to fetch.
1372
+ */
1373
+ where?: Prisma.SeoAuditRunWhereInput
1374
+ /**
1375
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
1376
+ *
1377
+ * Determine the order of SeoAuditRuns to fetch.
1378
+ */
1379
+ orderBy?: Prisma.SeoAuditRunOrderByWithRelationInput | Prisma.SeoAuditRunOrderByWithRelationInput[]
1380
+ /**
1381
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
1382
+ *
1383
+ * Sets the position for searching for SeoAuditRuns.
1384
+ */
1385
+ cursor?: Prisma.SeoAuditRunWhereUniqueInput
1386
+ /**
1387
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
1388
+ *
1389
+ * Take `±n` SeoAuditRuns from the position of the cursor.
1390
+ */
1391
+ take?: number
1392
+ /**
1393
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
1394
+ *
1395
+ * Skip the first `n` SeoAuditRuns.
1396
+ */
1397
+ skip?: number
1398
+ /**
1399
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
1400
+ *
1401
+ * Filter by unique combinations of SeoAuditRuns.
1402
+ */
1403
+ distinct?: Prisma.SeoAuditRunScalarFieldEnum | Prisma.SeoAuditRunScalarFieldEnum[]
1404
+ relationLoadStrategy?: Prisma.RelationLoadStrategy
1405
+ }
1406
+
1407
+ /**
1408
+ * SeoAuditRun findFirstOrThrow
1409
+ */
1410
+ export type SeoAuditRunFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1411
+ /**
1412
+ * Select specific fields to fetch from the SeoAuditRun
1413
+ */
1414
+ select?: Prisma.SeoAuditRunSelect<ExtArgs> | null
1415
+ /**
1416
+ * Omit specific fields from the SeoAuditRun
1417
+ */
1418
+ omit?: Prisma.SeoAuditRunOmit<ExtArgs> | null
1419
+ /**
1420
+ * Choose, which related nodes to fetch as well
1421
+ */
1422
+ include?: Prisma.SeoAuditRunInclude<ExtArgs> | null
1423
+ /**
1424
+ * Filter, which SeoAuditRun to fetch.
1425
+ */
1426
+ where?: Prisma.SeoAuditRunWhereInput
1427
+ /**
1428
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
1429
+ *
1430
+ * Determine the order of SeoAuditRuns to fetch.
1431
+ */
1432
+ orderBy?: Prisma.SeoAuditRunOrderByWithRelationInput | Prisma.SeoAuditRunOrderByWithRelationInput[]
1433
+ /**
1434
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
1435
+ *
1436
+ * Sets the position for searching for SeoAuditRuns.
1437
+ */
1438
+ cursor?: Prisma.SeoAuditRunWhereUniqueInput
1439
+ /**
1440
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
1441
+ *
1442
+ * Take `±n` SeoAuditRuns from the position of the cursor.
1443
+ */
1444
+ take?: number
1445
+ /**
1446
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
1447
+ *
1448
+ * Skip the first `n` SeoAuditRuns.
1449
+ */
1450
+ skip?: number
1451
+ /**
1452
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
1453
+ *
1454
+ * Filter by unique combinations of SeoAuditRuns.
1455
+ */
1456
+ distinct?: Prisma.SeoAuditRunScalarFieldEnum | Prisma.SeoAuditRunScalarFieldEnum[]
1457
+ relationLoadStrategy?: Prisma.RelationLoadStrategy
1458
+ }
1459
+
1460
+ /**
1461
+ * SeoAuditRun findMany
1462
+ */
1463
+ export type SeoAuditRunFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1464
+ /**
1465
+ * Select specific fields to fetch from the SeoAuditRun
1466
+ */
1467
+ select?: Prisma.SeoAuditRunSelect<ExtArgs> | null
1468
+ /**
1469
+ * Omit specific fields from the SeoAuditRun
1470
+ */
1471
+ omit?: Prisma.SeoAuditRunOmit<ExtArgs> | null
1472
+ /**
1473
+ * Choose, which related nodes to fetch as well
1474
+ */
1475
+ include?: Prisma.SeoAuditRunInclude<ExtArgs> | null
1476
+ /**
1477
+ * Filter, which SeoAuditRuns to fetch.
1478
+ */
1479
+ where?: Prisma.SeoAuditRunWhereInput
1480
+ /**
1481
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
1482
+ *
1483
+ * Determine the order of SeoAuditRuns to fetch.
1484
+ */
1485
+ orderBy?: Prisma.SeoAuditRunOrderByWithRelationInput | Prisma.SeoAuditRunOrderByWithRelationInput[]
1486
+ /**
1487
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
1488
+ *
1489
+ * Sets the position for listing SeoAuditRuns.
1490
+ */
1491
+ cursor?: Prisma.SeoAuditRunWhereUniqueInput
1492
+ /**
1493
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
1494
+ *
1495
+ * Take `±n` SeoAuditRuns from the position of the cursor.
1496
+ */
1497
+ take?: number
1498
+ /**
1499
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
1500
+ *
1501
+ * Skip the first `n` SeoAuditRuns.
1502
+ */
1503
+ skip?: number
1504
+ /**
1505
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
1506
+ *
1507
+ * Filter by unique combinations of SeoAuditRuns.
1508
+ */
1509
+ distinct?: Prisma.SeoAuditRunScalarFieldEnum | Prisma.SeoAuditRunScalarFieldEnum[]
1510
+ relationLoadStrategy?: Prisma.RelationLoadStrategy
1511
+ }
1512
+
1513
+ /**
1514
+ * SeoAuditRun create
1515
+ */
1516
+ export type SeoAuditRunCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1517
+ /**
1518
+ * Select specific fields to fetch from the SeoAuditRun
1519
+ */
1520
+ select?: Prisma.SeoAuditRunSelect<ExtArgs> | null
1521
+ /**
1522
+ * Omit specific fields from the SeoAuditRun
1523
+ */
1524
+ omit?: Prisma.SeoAuditRunOmit<ExtArgs> | null
1525
+ /**
1526
+ * Choose, which related nodes to fetch as well
1527
+ */
1528
+ include?: Prisma.SeoAuditRunInclude<ExtArgs> | null
1529
+ /**
1530
+ * The data needed to create a SeoAuditRun.
1531
+ */
1532
+ data?: Prisma.XOR<Prisma.SeoAuditRunCreateInput, Prisma.SeoAuditRunUncheckedCreateInput>
1533
+ relationLoadStrategy?: Prisma.RelationLoadStrategy
1534
+ }
1535
+
1536
+ /**
1537
+ * SeoAuditRun createMany
1538
+ */
1539
+ export type SeoAuditRunCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1540
+ /**
1541
+ * The data used to create many SeoAuditRuns.
1542
+ */
1543
+ data: Prisma.SeoAuditRunCreateManyInput | Prisma.SeoAuditRunCreateManyInput[]
1544
+ skipDuplicates?: boolean
1545
+ }
1546
+
1547
+ /**
1548
+ * SeoAuditRun createManyAndReturn
1549
+ */
1550
+ export type SeoAuditRunCreateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1551
+ /**
1552
+ * Select specific fields to fetch from the SeoAuditRun
1553
+ */
1554
+ select?: Prisma.SeoAuditRunSelectCreateManyAndReturn<ExtArgs> | null
1555
+ /**
1556
+ * Omit specific fields from the SeoAuditRun
1557
+ */
1558
+ omit?: Prisma.SeoAuditRunOmit<ExtArgs> | null
1559
+ /**
1560
+ * The data used to create many SeoAuditRuns.
1561
+ */
1562
+ data: Prisma.SeoAuditRunCreateManyInput | Prisma.SeoAuditRunCreateManyInput[]
1563
+ skipDuplicates?: boolean
1564
+ }
1565
+
1566
+ /**
1567
+ * SeoAuditRun update
1568
+ */
1569
+ export type SeoAuditRunUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1570
+ /**
1571
+ * Select specific fields to fetch from the SeoAuditRun
1572
+ */
1573
+ select?: Prisma.SeoAuditRunSelect<ExtArgs> | null
1574
+ /**
1575
+ * Omit specific fields from the SeoAuditRun
1576
+ */
1577
+ omit?: Prisma.SeoAuditRunOmit<ExtArgs> | null
1578
+ /**
1579
+ * Choose, which related nodes to fetch as well
1580
+ */
1581
+ include?: Prisma.SeoAuditRunInclude<ExtArgs> | null
1582
+ /**
1583
+ * The data needed to update a SeoAuditRun.
1584
+ */
1585
+ data: Prisma.XOR<Prisma.SeoAuditRunUpdateInput, Prisma.SeoAuditRunUncheckedUpdateInput>
1586
+ /**
1587
+ * Choose, which SeoAuditRun to update.
1588
+ */
1589
+ where: Prisma.SeoAuditRunWhereUniqueInput
1590
+ relationLoadStrategy?: Prisma.RelationLoadStrategy
1591
+ }
1592
+
1593
+ /**
1594
+ * SeoAuditRun updateMany
1595
+ */
1596
+ export type SeoAuditRunUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1597
+ /**
1598
+ * The data used to update SeoAuditRuns.
1599
+ */
1600
+ data: Prisma.XOR<Prisma.SeoAuditRunUpdateManyMutationInput, Prisma.SeoAuditRunUncheckedUpdateManyInput>
1601
+ /**
1602
+ * Filter which SeoAuditRuns to update
1603
+ */
1604
+ where?: Prisma.SeoAuditRunWhereInput
1605
+ /**
1606
+ * Limit how many SeoAuditRuns to update.
1607
+ */
1608
+ limit?: number
1609
+ }
1610
+
1611
+ /**
1612
+ * SeoAuditRun updateManyAndReturn
1613
+ */
1614
+ export type SeoAuditRunUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1615
+ /**
1616
+ * Select specific fields to fetch from the SeoAuditRun
1617
+ */
1618
+ select?: Prisma.SeoAuditRunSelectUpdateManyAndReturn<ExtArgs> | null
1619
+ /**
1620
+ * Omit specific fields from the SeoAuditRun
1621
+ */
1622
+ omit?: Prisma.SeoAuditRunOmit<ExtArgs> | null
1623
+ /**
1624
+ * The data used to update SeoAuditRuns.
1625
+ */
1626
+ data: Prisma.XOR<Prisma.SeoAuditRunUpdateManyMutationInput, Prisma.SeoAuditRunUncheckedUpdateManyInput>
1627
+ /**
1628
+ * Filter which SeoAuditRuns to update
1629
+ */
1630
+ where?: Prisma.SeoAuditRunWhereInput
1631
+ /**
1632
+ * Limit how many SeoAuditRuns to update.
1633
+ */
1634
+ limit?: number
1635
+ }
1636
+
1637
+ /**
1638
+ * SeoAuditRun upsert
1639
+ */
1640
+ export type SeoAuditRunUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1641
+ /**
1642
+ * Select specific fields to fetch from the SeoAuditRun
1643
+ */
1644
+ select?: Prisma.SeoAuditRunSelect<ExtArgs> | null
1645
+ /**
1646
+ * Omit specific fields from the SeoAuditRun
1647
+ */
1648
+ omit?: Prisma.SeoAuditRunOmit<ExtArgs> | null
1649
+ /**
1650
+ * Choose, which related nodes to fetch as well
1651
+ */
1652
+ include?: Prisma.SeoAuditRunInclude<ExtArgs> | null
1653
+ /**
1654
+ * The filter to search for the SeoAuditRun to update in case it exists.
1655
+ */
1656
+ where: Prisma.SeoAuditRunWhereUniqueInput
1657
+ /**
1658
+ * In case the SeoAuditRun found by the `where` argument doesn't exist, create a new SeoAuditRun with this data.
1659
+ */
1660
+ create: Prisma.XOR<Prisma.SeoAuditRunCreateInput, Prisma.SeoAuditRunUncheckedCreateInput>
1661
+ /**
1662
+ * In case the SeoAuditRun was found with the provided `where` argument, update it with this data.
1663
+ */
1664
+ update: Prisma.XOR<Prisma.SeoAuditRunUpdateInput, Prisma.SeoAuditRunUncheckedUpdateInput>
1665
+ relationLoadStrategy?: Prisma.RelationLoadStrategy
1666
+ }
1667
+
1668
+ /**
1669
+ * SeoAuditRun delete
1670
+ */
1671
+ export type SeoAuditRunDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1672
+ /**
1673
+ * Select specific fields to fetch from the SeoAuditRun
1674
+ */
1675
+ select?: Prisma.SeoAuditRunSelect<ExtArgs> | null
1676
+ /**
1677
+ * Omit specific fields from the SeoAuditRun
1678
+ */
1679
+ omit?: Prisma.SeoAuditRunOmit<ExtArgs> | null
1680
+ /**
1681
+ * Choose, which related nodes to fetch as well
1682
+ */
1683
+ include?: Prisma.SeoAuditRunInclude<ExtArgs> | null
1684
+ /**
1685
+ * Filter which SeoAuditRun to delete.
1686
+ */
1687
+ where: Prisma.SeoAuditRunWhereUniqueInput
1688
+ relationLoadStrategy?: Prisma.RelationLoadStrategy
1689
+ }
1690
+
1691
+ /**
1692
+ * SeoAuditRun deleteMany
1693
+ */
1694
+ export type SeoAuditRunDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1695
+ /**
1696
+ * Filter which SeoAuditRuns to delete
1697
+ */
1698
+ where?: Prisma.SeoAuditRunWhereInput
1699
+ /**
1700
+ * Limit how many SeoAuditRuns to delete.
1701
+ */
1702
+ limit?: number
1703
+ }
1704
+
1705
+ /**
1706
+ * SeoAuditRun.issues
1707
+ */
1708
+ export type SeoAuditRun$issuesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1709
+ /**
1710
+ * Select specific fields to fetch from the SeoIssue
1711
+ */
1712
+ select?: Prisma.SeoIssueSelect<ExtArgs> | null
1713
+ /**
1714
+ * Omit specific fields from the SeoIssue
1715
+ */
1716
+ omit?: Prisma.SeoIssueOmit<ExtArgs> | null
1717
+ /**
1718
+ * Choose, which related nodes to fetch as well
1719
+ */
1720
+ include?: Prisma.SeoIssueInclude<ExtArgs> | null
1721
+ where?: Prisma.SeoIssueWhereInput
1722
+ orderBy?: Prisma.SeoIssueOrderByWithRelationInput | Prisma.SeoIssueOrderByWithRelationInput[]
1723
+ cursor?: Prisma.SeoIssueWhereUniqueInput
1724
+ take?: number
1725
+ skip?: number
1726
+ distinct?: Prisma.SeoIssueScalarFieldEnum | Prisma.SeoIssueScalarFieldEnum[]
1727
+ }
1728
+
1729
+ /**
1730
+ * SeoAuditRun without action
1731
+ */
1732
+ export type SeoAuditRunDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1733
+ /**
1734
+ * Select specific fields to fetch from the SeoAuditRun
1735
+ */
1736
+ select?: Prisma.SeoAuditRunSelect<ExtArgs> | null
1737
+ /**
1738
+ * Omit specific fields from the SeoAuditRun
1739
+ */
1740
+ omit?: Prisma.SeoAuditRunOmit<ExtArgs> | null
1741
+ /**
1742
+ * Choose, which related nodes to fetch as well
1743
+ */
1744
+ include?: Prisma.SeoAuditRunInclude<ExtArgs> | null
1745
+ }