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