@valentine-efagene/qshelter-common 2.0.143 → 2.0.144
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/client/browser.d.ts +32 -0
- package/dist/generated/client/client.d.ts +32 -0
- package/dist/generated/client/commonInputTypes.d.ts +354 -144
- package/dist/generated/client/enums.d.ts +45 -0
- package/dist/generated/client/enums.js +39 -0
- package/dist/generated/client/internal/class.d.ts +66 -0
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +633 -3
- package/dist/generated/client/internal/prismaNamespace.js +193 -1
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +204 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +193 -1
- package/dist/generated/client/models/Application.d.ts +669 -1
- package/dist/generated/client/models/ApplicationDocument.d.ts +577 -1
- package/dist/generated/client/models/ApplicationOrganization.d.ts +2385 -0
- package/dist/generated/client/models/ApplicationOrganization.js +1 -0
- package/dist/generated/client/models/BankDocumentRequirement.d.ts +1932 -0
- package/dist/generated/client/models/BankDocumentRequirement.js +1 -0
- package/dist/generated/client/models/DocumentExpiryWarning.d.ts +1141 -0
- package/dist/generated/client/models/DocumentExpiryWarning.js +1 -0
- package/dist/generated/client/models/Organization.d.ts +390 -0
- package/dist/generated/client/models/PropertyMedia.d.ts +0 -7
- package/dist/generated/client/models/PropertyPaymentMethod.d.ts +192 -3
- package/dist/generated/client/models/PropertyVariant.d.ts +0 -7
- package/dist/generated/client/models/ScheduledJob.d.ts +1317 -0
- package/dist/generated/client/models/ScheduledJob.js +1 -0
- package/dist/generated/client/models/StateTransitionDefinition.d.ts +1104 -0
- package/dist/generated/client/models/StateTransitionDefinition.js +1 -0
- package/dist/generated/client/models/StateTransitionLog.d.ts +1383 -0
- package/dist/generated/client/models/StateTransitionLog.js +1 -0
- package/dist/generated/client/models/Tenant.d.ts +2535 -798
- package/dist/generated/client/models/index.d.ts +6 -0
- package/dist/generated/client/models/index.js +6 -0
- package/dist/generated/client/models.d.ts +6 -0
- package/dist/src/prisma/tenant.js +4 -0
- package/package.json +1 -1
- package/prisma/schema.prisma +423 -2
|
@@ -0,0 +1,1317 @@
|
|
|
1
|
+
import type * as runtime from "@prisma/client/runtime/client";
|
|
2
|
+
import type * as $Enums from "../enums.js";
|
|
3
|
+
import type * as Prisma from "../internal/prismaNamespace.js";
|
|
4
|
+
/**
|
|
5
|
+
* Model ScheduledJob
|
|
6
|
+
* Scheduled Job - Tracks execution of background jobs
|
|
7
|
+
*/
|
|
8
|
+
export type ScheduledJobModel = runtime.Types.Result.DefaultSelection<Prisma.$ScheduledJobPayload>;
|
|
9
|
+
export type AggregateScheduledJob = {
|
|
10
|
+
_count: ScheduledJobCountAggregateOutputType | null;
|
|
11
|
+
_avg: ScheduledJobAvgAggregateOutputType | null;
|
|
12
|
+
_sum: ScheduledJobSumAggregateOutputType | null;
|
|
13
|
+
_min: ScheduledJobMinAggregateOutputType | null;
|
|
14
|
+
_max: ScheduledJobMaxAggregateOutputType | null;
|
|
15
|
+
};
|
|
16
|
+
export type ScheduledJobAvgAggregateOutputType = {
|
|
17
|
+
durationMs: number | null;
|
|
18
|
+
itemsProcessed: number | null;
|
|
19
|
+
itemsAffected: number | null;
|
|
20
|
+
errorCount: number | null;
|
|
21
|
+
attemptNumber: number | null;
|
|
22
|
+
maxAttempts: number | null;
|
|
23
|
+
};
|
|
24
|
+
export type ScheduledJobSumAggregateOutputType = {
|
|
25
|
+
durationMs: number | null;
|
|
26
|
+
itemsProcessed: number | null;
|
|
27
|
+
itemsAffected: number | null;
|
|
28
|
+
errorCount: number | null;
|
|
29
|
+
attemptNumber: number | null;
|
|
30
|
+
maxAttempts: number | null;
|
|
31
|
+
};
|
|
32
|
+
export type ScheduledJobMinAggregateOutputType = {
|
|
33
|
+
id: string | null;
|
|
34
|
+
tenantId: string | null;
|
|
35
|
+
jobType: $Enums.ScheduledJobType | null;
|
|
36
|
+
status: $Enums.ScheduledJobStatus | null;
|
|
37
|
+
scheduledAt: Date | null;
|
|
38
|
+
startedAt: Date | null;
|
|
39
|
+
completedAt: Date | null;
|
|
40
|
+
durationMs: number | null;
|
|
41
|
+
itemsProcessed: number | null;
|
|
42
|
+
itemsAffected: number | null;
|
|
43
|
+
errorCount: number | null;
|
|
44
|
+
summary: string | null;
|
|
45
|
+
attemptNumber: number | null;
|
|
46
|
+
maxAttempts: number | null;
|
|
47
|
+
nextRetryAt: Date | null;
|
|
48
|
+
createdAt: Date | null;
|
|
49
|
+
updatedAt: Date | null;
|
|
50
|
+
};
|
|
51
|
+
export type ScheduledJobMaxAggregateOutputType = {
|
|
52
|
+
id: string | null;
|
|
53
|
+
tenantId: string | null;
|
|
54
|
+
jobType: $Enums.ScheduledJobType | null;
|
|
55
|
+
status: $Enums.ScheduledJobStatus | null;
|
|
56
|
+
scheduledAt: Date | null;
|
|
57
|
+
startedAt: Date | null;
|
|
58
|
+
completedAt: Date | null;
|
|
59
|
+
durationMs: number | null;
|
|
60
|
+
itemsProcessed: number | null;
|
|
61
|
+
itemsAffected: number | null;
|
|
62
|
+
errorCount: number | null;
|
|
63
|
+
summary: string | null;
|
|
64
|
+
attemptNumber: number | null;
|
|
65
|
+
maxAttempts: number | null;
|
|
66
|
+
nextRetryAt: Date | null;
|
|
67
|
+
createdAt: Date | null;
|
|
68
|
+
updatedAt: Date | null;
|
|
69
|
+
};
|
|
70
|
+
export type ScheduledJobCountAggregateOutputType = {
|
|
71
|
+
id: number;
|
|
72
|
+
tenantId: number;
|
|
73
|
+
jobType: number;
|
|
74
|
+
status: number;
|
|
75
|
+
scheduledAt: number;
|
|
76
|
+
startedAt: number;
|
|
77
|
+
completedAt: number;
|
|
78
|
+
durationMs: number;
|
|
79
|
+
parameters: number;
|
|
80
|
+
itemsProcessed: number;
|
|
81
|
+
itemsAffected: number;
|
|
82
|
+
errorCount: number;
|
|
83
|
+
errors: number;
|
|
84
|
+
summary: number;
|
|
85
|
+
attemptNumber: number;
|
|
86
|
+
maxAttempts: number;
|
|
87
|
+
nextRetryAt: number;
|
|
88
|
+
createdAt: number;
|
|
89
|
+
updatedAt: number;
|
|
90
|
+
_all: number;
|
|
91
|
+
};
|
|
92
|
+
export type ScheduledJobAvgAggregateInputType = {
|
|
93
|
+
durationMs?: true;
|
|
94
|
+
itemsProcessed?: true;
|
|
95
|
+
itemsAffected?: true;
|
|
96
|
+
errorCount?: true;
|
|
97
|
+
attemptNumber?: true;
|
|
98
|
+
maxAttempts?: true;
|
|
99
|
+
};
|
|
100
|
+
export type ScheduledJobSumAggregateInputType = {
|
|
101
|
+
durationMs?: true;
|
|
102
|
+
itemsProcessed?: true;
|
|
103
|
+
itemsAffected?: true;
|
|
104
|
+
errorCount?: true;
|
|
105
|
+
attemptNumber?: true;
|
|
106
|
+
maxAttempts?: true;
|
|
107
|
+
};
|
|
108
|
+
export type ScheduledJobMinAggregateInputType = {
|
|
109
|
+
id?: true;
|
|
110
|
+
tenantId?: true;
|
|
111
|
+
jobType?: true;
|
|
112
|
+
status?: true;
|
|
113
|
+
scheduledAt?: true;
|
|
114
|
+
startedAt?: true;
|
|
115
|
+
completedAt?: true;
|
|
116
|
+
durationMs?: true;
|
|
117
|
+
itemsProcessed?: true;
|
|
118
|
+
itemsAffected?: true;
|
|
119
|
+
errorCount?: true;
|
|
120
|
+
summary?: true;
|
|
121
|
+
attemptNumber?: true;
|
|
122
|
+
maxAttempts?: true;
|
|
123
|
+
nextRetryAt?: true;
|
|
124
|
+
createdAt?: true;
|
|
125
|
+
updatedAt?: true;
|
|
126
|
+
};
|
|
127
|
+
export type ScheduledJobMaxAggregateInputType = {
|
|
128
|
+
id?: true;
|
|
129
|
+
tenantId?: true;
|
|
130
|
+
jobType?: true;
|
|
131
|
+
status?: true;
|
|
132
|
+
scheduledAt?: true;
|
|
133
|
+
startedAt?: true;
|
|
134
|
+
completedAt?: true;
|
|
135
|
+
durationMs?: true;
|
|
136
|
+
itemsProcessed?: true;
|
|
137
|
+
itemsAffected?: true;
|
|
138
|
+
errorCount?: true;
|
|
139
|
+
summary?: true;
|
|
140
|
+
attemptNumber?: true;
|
|
141
|
+
maxAttempts?: true;
|
|
142
|
+
nextRetryAt?: true;
|
|
143
|
+
createdAt?: true;
|
|
144
|
+
updatedAt?: true;
|
|
145
|
+
};
|
|
146
|
+
export type ScheduledJobCountAggregateInputType = {
|
|
147
|
+
id?: true;
|
|
148
|
+
tenantId?: true;
|
|
149
|
+
jobType?: true;
|
|
150
|
+
status?: true;
|
|
151
|
+
scheduledAt?: true;
|
|
152
|
+
startedAt?: true;
|
|
153
|
+
completedAt?: true;
|
|
154
|
+
durationMs?: true;
|
|
155
|
+
parameters?: true;
|
|
156
|
+
itemsProcessed?: true;
|
|
157
|
+
itemsAffected?: true;
|
|
158
|
+
errorCount?: true;
|
|
159
|
+
errors?: true;
|
|
160
|
+
summary?: true;
|
|
161
|
+
attemptNumber?: true;
|
|
162
|
+
maxAttempts?: true;
|
|
163
|
+
nextRetryAt?: true;
|
|
164
|
+
createdAt?: true;
|
|
165
|
+
updatedAt?: true;
|
|
166
|
+
_all?: true;
|
|
167
|
+
};
|
|
168
|
+
export type ScheduledJobAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
169
|
+
/**
|
|
170
|
+
* Filter which ScheduledJob to aggregate.
|
|
171
|
+
*/
|
|
172
|
+
where?: Prisma.ScheduledJobWhereInput;
|
|
173
|
+
/**
|
|
174
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
175
|
+
*
|
|
176
|
+
* Determine the order of ScheduledJobs to fetch.
|
|
177
|
+
*/
|
|
178
|
+
orderBy?: Prisma.ScheduledJobOrderByWithRelationInput | Prisma.ScheduledJobOrderByWithRelationInput[];
|
|
179
|
+
/**
|
|
180
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
181
|
+
*
|
|
182
|
+
* Sets the start position
|
|
183
|
+
*/
|
|
184
|
+
cursor?: Prisma.ScheduledJobWhereUniqueInput;
|
|
185
|
+
/**
|
|
186
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
187
|
+
*
|
|
188
|
+
* Take `±n` ScheduledJobs from the position of the cursor.
|
|
189
|
+
*/
|
|
190
|
+
take?: number;
|
|
191
|
+
/**
|
|
192
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
193
|
+
*
|
|
194
|
+
* Skip the first `n` ScheduledJobs.
|
|
195
|
+
*/
|
|
196
|
+
skip?: number;
|
|
197
|
+
/**
|
|
198
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
199
|
+
*
|
|
200
|
+
* Count returned ScheduledJobs
|
|
201
|
+
**/
|
|
202
|
+
_count?: true | ScheduledJobCountAggregateInputType;
|
|
203
|
+
/**
|
|
204
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
205
|
+
*
|
|
206
|
+
* Select which fields to average
|
|
207
|
+
**/
|
|
208
|
+
_avg?: ScheduledJobAvgAggregateInputType;
|
|
209
|
+
/**
|
|
210
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
211
|
+
*
|
|
212
|
+
* Select which fields to sum
|
|
213
|
+
**/
|
|
214
|
+
_sum?: ScheduledJobSumAggregateInputType;
|
|
215
|
+
/**
|
|
216
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
217
|
+
*
|
|
218
|
+
* Select which fields to find the minimum value
|
|
219
|
+
**/
|
|
220
|
+
_min?: ScheduledJobMinAggregateInputType;
|
|
221
|
+
/**
|
|
222
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
223
|
+
*
|
|
224
|
+
* Select which fields to find the maximum value
|
|
225
|
+
**/
|
|
226
|
+
_max?: ScheduledJobMaxAggregateInputType;
|
|
227
|
+
};
|
|
228
|
+
export type GetScheduledJobAggregateType<T extends ScheduledJobAggregateArgs> = {
|
|
229
|
+
[P in keyof T & keyof AggregateScheduledJob]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType<T[P], AggregateScheduledJob[P]> : Prisma.GetScalarType<T[P], AggregateScheduledJob[P]>;
|
|
230
|
+
};
|
|
231
|
+
export type ScheduledJobGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
232
|
+
where?: Prisma.ScheduledJobWhereInput;
|
|
233
|
+
orderBy?: Prisma.ScheduledJobOrderByWithAggregationInput | Prisma.ScheduledJobOrderByWithAggregationInput[];
|
|
234
|
+
by: Prisma.ScheduledJobScalarFieldEnum[] | Prisma.ScheduledJobScalarFieldEnum;
|
|
235
|
+
having?: Prisma.ScheduledJobScalarWhereWithAggregatesInput;
|
|
236
|
+
take?: number;
|
|
237
|
+
skip?: number;
|
|
238
|
+
_count?: ScheduledJobCountAggregateInputType | true;
|
|
239
|
+
_avg?: ScheduledJobAvgAggregateInputType;
|
|
240
|
+
_sum?: ScheduledJobSumAggregateInputType;
|
|
241
|
+
_min?: ScheduledJobMinAggregateInputType;
|
|
242
|
+
_max?: ScheduledJobMaxAggregateInputType;
|
|
243
|
+
};
|
|
244
|
+
export type ScheduledJobGroupByOutputType = {
|
|
245
|
+
id: string;
|
|
246
|
+
tenantId: string | null;
|
|
247
|
+
jobType: $Enums.ScheduledJobType;
|
|
248
|
+
status: $Enums.ScheduledJobStatus;
|
|
249
|
+
scheduledAt: Date;
|
|
250
|
+
startedAt: Date | null;
|
|
251
|
+
completedAt: Date | null;
|
|
252
|
+
durationMs: number | null;
|
|
253
|
+
parameters: runtime.JsonValue | null;
|
|
254
|
+
itemsProcessed: number;
|
|
255
|
+
itemsAffected: number;
|
|
256
|
+
errorCount: number;
|
|
257
|
+
errors: runtime.JsonValue | null;
|
|
258
|
+
summary: string | null;
|
|
259
|
+
attemptNumber: number;
|
|
260
|
+
maxAttempts: number;
|
|
261
|
+
nextRetryAt: Date | null;
|
|
262
|
+
createdAt: Date;
|
|
263
|
+
updatedAt: Date;
|
|
264
|
+
_count: ScheduledJobCountAggregateOutputType | null;
|
|
265
|
+
_avg: ScheduledJobAvgAggregateOutputType | null;
|
|
266
|
+
_sum: ScheduledJobSumAggregateOutputType | null;
|
|
267
|
+
_min: ScheduledJobMinAggregateOutputType | null;
|
|
268
|
+
_max: ScheduledJobMaxAggregateOutputType | null;
|
|
269
|
+
};
|
|
270
|
+
type GetScheduledJobGroupByPayload<T extends ScheduledJobGroupByArgs> = Prisma.PrismaPromise<Array<Prisma.PickEnumerable<ScheduledJobGroupByOutputType, T['by']> & {
|
|
271
|
+
[P in ((keyof T) & (keyof ScheduledJobGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType<T[P], ScheduledJobGroupByOutputType[P]> : Prisma.GetScalarType<T[P], ScheduledJobGroupByOutputType[P]>;
|
|
272
|
+
}>>;
|
|
273
|
+
export type ScheduledJobWhereInput = {
|
|
274
|
+
AND?: Prisma.ScheduledJobWhereInput | Prisma.ScheduledJobWhereInput[];
|
|
275
|
+
OR?: Prisma.ScheduledJobWhereInput[];
|
|
276
|
+
NOT?: Prisma.ScheduledJobWhereInput | Prisma.ScheduledJobWhereInput[];
|
|
277
|
+
id?: Prisma.StringFilter<"ScheduledJob"> | string;
|
|
278
|
+
tenantId?: Prisma.StringNullableFilter<"ScheduledJob"> | string | null;
|
|
279
|
+
jobType?: Prisma.EnumScheduledJobTypeFilter<"ScheduledJob"> | $Enums.ScheduledJobType;
|
|
280
|
+
status?: Prisma.EnumScheduledJobStatusFilter<"ScheduledJob"> | $Enums.ScheduledJobStatus;
|
|
281
|
+
scheduledAt?: Prisma.DateTimeFilter<"ScheduledJob"> | Date | string;
|
|
282
|
+
startedAt?: Prisma.DateTimeNullableFilter<"ScheduledJob"> | Date | string | null;
|
|
283
|
+
completedAt?: Prisma.DateTimeNullableFilter<"ScheduledJob"> | Date | string | null;
|
|
284
|
+
durationMs?: Prisma.IntNullableFilter<"ScheduledJob"> | number | null;
|
|
285
|
+
parameters?: Prisma.JsonNullableFilter<"ScheduledJob">;
|
|
286
|
+
itemsProcessed?: Prisma.IntFilter<"ScheduledJob"> | number;
|
|
287
|
+
itemsAffected?: Prisma.IntFilter<"ScheduledJob"> | number;
|
|
288
|
+
errorCount?: Prisma.IntFilter<"ScheduledJob"> | number;
|
|
289
|
+
errors?: Prisma.JsonNullableFilter<"ScheduledJob">;
|
|
290
|
+
summary?: Prisma.StringNullableFilter<"ScheduledJob"> | string | null;
|
|
291
|
+
attemptNumber?: Prisma.IntFilter<"ScheduledJob"> | number;
|
|
292
|
+
maxAttempts?: Prisma.IntFilter<"ScheduledJob"> | number;
|
|
293
|
+
nextRetryAt?: Prisma.DateTimeNullableFilter<"ScheduledJob"> | Date | string | null;
|
|
294
|
+
createdAt?: Prisma.DateTimeFilter<"ScheduledJob"> | Date | string;
|
|
295
|
+
updatedAt?: Prisma.DateTimeFilter<"ScheduledJob"> | Date | string;
|
|
296
|
+
};
|
|
297
|
+
export type ScheduledJobOrderByWithRelationInput = {
|
|
298
|
+
id?: Prisma.SortOrder;
|
|
299
|
+
tenantId?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
300
|
+
jobType?: Prisma.SortOrder;
|
|
301
|
+
status?: Prisma.SortOrder;
|
|
302
|
+
scheduledAt?: Prisma.SortOrder;
|
|
303
|
+
startedAt?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
304
|
+
completedAt?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
305
|
+
durationMs?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
306
|
+
parameters?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
307
|
+
itemsProcessed?: Prisma.SortOrder;
|
|
308
|
+
itemsAffected?: Prisma.SortOrder;
|
|
309
|
+
errorCount?: Prisma.SortOrder;
|
|
310
|
+
errors?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
311
|
+
summary?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
312
|
+
attemptNumber?: Prisma.SortOrder;
|
|
313
|
+
maxAttempts?: Prisma.SortOrder;
|
|
314
|
+
nextRetryAt?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
315
|
+
createdAt?: Prisma.SortOrder;
|
|
316
|
+
updatedAt?: Prisma.SortOrder;
|
|
317
|
+
_relevance?: Prisma.ScheduledJobOrderByRelevanceInput;
|
|
318
|
+
};
|
|
319
|
+
export type ScheduledJobWhereUniqueInput = Prisma.AtLeast<{
|
|
320
|
+
id?: string;
|
|
321
|
+
AND?: Prisma.ScheduledJobWhereInput | Prisma.ScheduledJobWhereInput[];
|
|
322
|
+
OR?: Prisma.ScheduledJobWhereInput[];
|
|
323
|
+
NOT?: Prisma.ScheduledJobWhereInput | Prisma.ScheduledJobWhereInput[];
|
|
324
|
+
tenantId?: Prisma.StringNullableFilter<"ScheduledJob"> | string | null;
|
|
325
|
+
jobType?: Prisma.EnumScheduledJobTypeFilter<"ScheduledJob"> | $Enums.ScheduledJobType;
|
|
326
|
+
status?: Prisma.EnumScheduledJobStatusFilter<"ScheduledJob"> | $Enums.ScheduledJobStatus;
|
|
327
|
+
scheduledAt?: Prisma.DateTimeFilter<"ScheduledJob"> | Date | string;
|
|
328
|
+
startedAt?: Prisma.DateTimeNullableFilter<"ScheduledJob"> | Date | string | null;
|
|
329
|
+
completedAt?: Prisma.DateTimeNullableFilter<"ScheduledJob"> | Date | string | null;
|
|
330
|
+
durationMs?: Prisma.IntNullableFilter<"ScheduledJob"> | number | null;
|
|
331
|
+
parameters?: Prisma.JsonNullableFilter<"ScheduledJob">;
|
|
332
|
+
itemsProcessed?: Prisma.IntFilter<"ScheduledJob"> | number;
|
|
333
|
+
itemsAffected?: Prisma.IntFilter<"ScheduledJob"> | number;
|
|
334
|
+
errorCount?: Prisma.IntFilter<"ScheduledJob"> | number;
|
|
335
|
+
errors?: Prisma.JsonNullableFilter<"ScheduledJob">;
|
|
336
|
+
summary?: Prisma.StringNullableFilter<"ScheduledJob"> | string | null;
|
|
337
|
+
attemptNumber?: Prisma.IntFilter<"ScheduledJob"> | number;
|
|
338
|
+
maxAttempts?: Prisma.IntFilter<"ScheduledJob"> | number;
|
|
339
|
+
nextRetryAt?: Prisma.DateTimeNullableFilter<"ScheduledJob"> | Date | string | null;
|
|
340
|
+
createdAt?: Prisma.DateTimeFilter<"ScheduledJob"> | Date | string;
|
|
341
|
+
updatedAt?: Prisma.DateTimeFilter<"ScheduledJob"> | Date | string;
|
|
342
|
+
}, "id">;
|
|
343
|
+
export type ScheduledJobOrderByWithAggregationInput = {
|
|
344
|
+
id?: Prisma.SortOrder;
|
|
345
|
+
tenantId?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
346
|
+
jobType?: Prisma.SortOrder;
|
|
347
|
+
status?: Prisma.SortOrder;
|
|
348
|
+
scheduledAt?: Prisma.SortOrder;
|
|
349
|
+
startedAt?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
350
|
+
completedAt?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
351
|
+
durationMs?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
352
|
+
parameters?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
353
|
+
itemsProcessed?: Prisma.SortOrder;
|
|
354
|
+
itemsAffected?: Prisma.SortOrder;
|
|
355
|
+
errorCount?: Prisma.SortOrder;
|
|
356
|
+
errors?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
357
|
+
summary?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
358
|
+
attemptNumber?: Prisma.SortOrder;
|
|
359
|
+
maxAttempts?: Prisma.SortOrder;
|
|
360
|
+
nextRetryAt?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
361
|
+
createdAt?: Prisma.SortOrder;
|
|
362
|
+
updatedAt?: Prisma.SortOrder;
|
|
363
|
+
_count?: Prisma.ScheduledJobCountOrderByAggregateInput;
|
|
364
|
+
_avg?: Prisma.ScheduledJobAvgOrderByAggregateInput;
|
|
365
|
+
_max?: Prisma.ScheduledJobMaxOrderByAggregateInput;
|
|
366
|
+
_min?: Prisma.ScheduledJobMinOrderByAggregateInput;
|
|
367
|
+
_sum?: Prisma.ScheduledJobSumOrderByAggregateInput;
|
|
368
|
+
};
|
|
369
|
+
export type ScheduledJobScalarWhereWithAggregatesInput = {
|
|
370
|
+
AND?: Prisma.ScheduledJobScalarWhereWithAggregatesInput | Prisma.ScheduledJobScalarWhereWithAggregatesInput[];
|
|
371
|
+
OR?: Prisma.ScheduledJobScalarWhereWithAggregatesInput[];
|
|
372
|
+
NOT?: Prisma.ScheduledJobScalarWhereWithAggregatesInput | Prisma.ScheduledJobScalarWhereWithAggregatesInput[];
|
|
373
|
+
id?: Prisma.StringWithAggregatesFilter<"ScheduledJob"> | string;
|
|
374
|
+
tenantId?: Prisma.StringNullableWithAggregatesFilter<"ScheduledJob"> | string | null;
|
|
375
|
+
jobType?: Prisma.EnumScheduledJobTypeWithAggregatesFilter<"ScheduledJob"> | $Enums.ScheduledJobType;
|
|
376
|
+
status?: Prisma.EnumScheduledJobStatusWithAggregatesFilter<"ScheduledJob"> | $Enums.ScheduledJobStatus;
|
|
377
|
+
scheduledAt?: Prisma.DateTimeWithAggregatesFilter<"ScheduledJob"> | Date | string;
|
|
378
|
+
startedAt?: Prisma.DateTimeNullableWithAggregatesFilter<"ScheduledJob"> | Date | string | null;
|
|
379
|
+
completedAt?: Prisma.DateTimeNullableWithAggregatesFilter<"ScheduledJob"> | Date | string | null;
|
|
380
|
+
durationMs?: Prisma.IntNullableWithAggregatesFilter<"ScheduledJob"> | number | null;
|
|
381
|
+
parameters?: Prisma.JsonNullableWithAggregatesFilter<"ScheduledJob">;
|
|
382
|
+
itemsProcessed?: Prisma.IntWithAggregatesFilter<"ScheduledJob"> | number;
|
|
383
|
+
itemsAffected?: Prisma.IntWithAggregatesFilter<"ScheduledJob"> | number;
|
|
384
|
+
errorCount?: Prisma.IntWithAggregatesFilter<"ScheduledJob"> | number;
|
|
385
|
+
errors?: Prisma.JsonNullableWithAggregatesFilter<"ScheduledJob">;
|
|
386
|
+
summary?: Prisma.StringNullableWithAggregatesFilter<"ScheduledJob"> | string | null;
|
|
387
|
+
attemptNumber?: Prisma.IntWithAggregatesFilter<"ScheduledJob"> | number;
|
|
388
|
+
maxAttempts?: Prisma.IntWithAggregatesFilter<"ScheduledJob"> | number;
|
|
389
|
+
nextRetryAt?: Prisma.DateTimeNullableWithAggregatesFilter<"ScheduledJob"> | Date | string | null;
|
|
390
|
+
createdAt?: Prisma.DateTimeWithAggregatesFilter<"ScheduledJob"> | Date | string;
|
|
391
|
+
updatedAt?: Prisma.DateTimeWithAggregatesFilter<"ScheduledJob"> | Date | string;
|
|
392
|
+
};
|
|
393
|
+
export type ScheduledJobCreateInput = {
|
|
394
|
+
id?: string;
|
|
395
|
+
tenantId?: string | null;
|
|
396
|
+
jobType: $Enums.ScheduledJobType;
|
|
397
|
+
status?: $Enums.ScheduledJobStatus;
|
|
398
|
+
scheduledAt: Date | string;
|
|
399
|
+
startedAt?: Date | string | null;
|
|
400
|
+
completedAt?: Date | string | null;
|
|
401
|
+
durationMs?: number | null;
|
|
402
|
+
parameters?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
403
|
+
itemsProcessed?: number;
|
|
404
|
+
itemsAffected?: number;
|
|
405
|
+
errorCount?: number;
|
|
406
|
+
errors?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
407
|
+
summary?: string | null;
|
|
408
|
+
attemptNumber?: number;
|
|
409
|
+
maxAttempts?: number;
|
|
410
|
+
nextRetryAt?: Date | string | null;
|
|
411
|
+
createdAt?: Date | string;
|
|
412
|
+
updatedAt?: Date | string;
|
|
413
|
+
};
|
|
414
|
+
export type ScheduledJobUncheckedCreateInput = {
|
|
415
|
+
id?: string;
|
|
416
|
+
tenantId?: string | null;
|
|
417
|
+
jobType: $Enums.ScheduledJobType;
|
|
418
|
+
status?: $Enums.ScheduledJobStatus;
|
|
419
|
+
scheduledAt: Date | string;
|
|
420
|
+
startedAt?: Date | string | null;
|
|
421
|
+
completedAt?: Date | string | null;
|
|
422
|
+
durationMs?: number | null;
|
|
423
|
+
parameters?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
424
|
+
itemsProcessed?: number;
|
|
425
|
+
itemsAffected?: number;
|
|
426
|
+
errorCount?: number;
|
|
427
|
+
errors?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
428
|
+
summary?: string | null;
|
|
429
|
+
attemptNumber?: number;
|
|
430
|
+
maxAttempts?: number;
|
|
431
|
+
nextRetryAt?: Date | string | null;
|
|
432
|
+
createdAt?: Date | string;
|
|
433
|
+
updatedAt?: Date | string;
|
|
434
|
+
};
|
|
435
|
+
export type ScheduledJobUpdateInput = {
|
|
436
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
437
|
+
tenantId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
438
|
+
jobType?: Prisma.EnumScheduledJobTypeFieldUpdateOperationsInput | $Enums.ScheduledJobType;
|
|
439
|
+
status?: Prisma.EnumScheduledJobStatusFieldUpdateOperationsInput | $Enums.ScheduledJobStatus;
|
|
440
|
+
scheduledAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
441
|
+
startedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
442
|
+
completedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
443
|
+
durationMs?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
444
|
+
parameters?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
445
|
+
itemsProcessed?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
446
|
+
itemsAffected?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
447
|
+
errorCount?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
448
|
+
errors?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
449
|
+
summary?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
450
|
+
attemptNumber?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
451
|
+
maxAttempts?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
452
|
+
nextRetryAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
453
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
454
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
455
|
+
};
|
|
456
|
+
export type ScheduledJobUncheckedUpdateInput = {
|
|
457
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
458
|
+
tenantId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
459
|
+
jobType?: Prisma.EnumScheduledJobTypeFieldUpdateOperationsInput | $Enums.ScheduledJobType;
|
|
460
|
+
status?: Prisma.EnumScheduledJobStatusFieldUpdateOperationsInput | $Enums.ScheduledJobStatus;
|
|
461
|
+
scheduledAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
462
|
+
startedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
463
|
+
completedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
464
|
+
durationMs?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
465
|
+
parameters?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
466
|
+
itemsProcessed?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
467
|
+
itemsAffected?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
468
|
+
errorCount?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
469
|
+
errors?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
470
|
+
summary?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
471
|
+
attemptNumber?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
472
|
+
maxAttempts?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
473
|
+
nextRetryAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
474
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
475
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
476
|
+
};
|
|
477
|
+
export type ScheduledJobCreateManyInput = {
|
|
478
|
+
id?: string;
|
|
479
|
+
tenantId?: string | null;
|
|
480
|
+
jobType: $Enums.ScheduledJobType;
|
|
481
|
+
status?: $Enums.ScheduledJobStatus;
|
|
482
|
+
scheduledAt: Date | string;
|
|
483
|
+
startedAt?: Date | string | null;
|
|
484
|
+
completedAt?: Date | string | null;
|
|
485
|
+
durationMs?: number | null;
|
|
486
|
+
parameters?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
487
|
+
itemsProcessed?: number;
|
|
488
|
+
itemsAffected?: number;
|
|
489
|
+
errorCount?: number;
|
|
490
|
+
errors?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
491
|
+
summary?: string | null;
|
|
492
|
+
attemptNumber?: number;
|
|
493
|
+
maxAttempts?: number;
|
|
494
|
+
nextRetryAt?: Date | string | null;
|
|
495
|
+
createdAt?: Date | string;
|
|
496
|
+
updatedAt?: Date | string;
|
|
497
|
+
};
|
|
498
|
+
export type ScheduledJobUpdateManyMutationInput = {
|
|
499
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
500
|
+
tenantId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
501
|
+
jobType?: Prisma.EnumScheduledJobTypeFieldUpdateOperationsInput | $Enums.ScheduledJobType;
|
|
502
|
+
status?: Prisma.EnumScheduledJobStatusFieldUpdateOperationsInput | $Enums.ScheduledJobStatus;
|
|
503
|
+
scheduledAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
504
|
+
startedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
505
|
+
completedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
506
|
+
durationMs?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
507
|
+
parameters?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
508
|
+
itemsProcessed?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
509
|
+
itemsAffected?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
510
|
+
errorCount?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
511
|
+
errors?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
512
|
+
summary?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
513
|
+
attemptNumber?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
514
|
+
maxAttempts?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
515
|
+
nextRetryAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
516
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
517
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
518
|
+
};
|
|
519
|
+
export type ScheduledJobUncheckedUpdateManyInput = {
|
|
520
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
521
|
+
tenantId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
522
|
+
jobType?: Prisma.EnumScheduledJobTypeFieldUpdateOperationsInput | $Enums.ScheduledJobType;
|
|
523
|
+
status?: Prisma.EnumScheduledJobStatusFieldUpdateOperationsInput | $Enums.ScheduledJobStatus;
|
|
524
|
+
scheduledAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
525
|
+
startedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
526
|
+
completedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
527
|
+
durationMs?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
528
|
+
parameters?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
529
|
+
itemsProcessed?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
530
|
+
itemsAffected?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
531
|
+
errorCount?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
532
|
+
errors?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
533
|
+
summary?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
534
|
+
attemptNumber?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
535
|
+
maxAttempts?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
536
|
+
nextRetryAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
537
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
538
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
539
|
+
};
|
|
540
|
+
export type ScheduledJobOrderByRelevanceInput = {
|
|
541
|
+
fields: Prisma.ScheduledJobOrderByRelevanceFieldEnum | Prisma.ScheduledJobOrderByRelevanceFieldEnum[];
|
|
542
|
+
sort: Prisma.SortOrder;
|
|
543
|
+
search: string;
|
|
544
|
+
};
|
|
545
|
+
export type ScheduledJobCountOrderByAggregateInput = {
|
|
546
|
+
id?: Prisma.SortOrder;
|
|
547
|
+
tenantId?: Prisma.SortOrder;
|
|
548
|
+
jobType?: Prisma.SortOrder;
|
|
549
|
+
status?: Prisma.SortOrder;
|
|
550
|
+
scheduledAt?: Prisma.SortOrder;
|
|
551
|
+
startedAt?: Prisma.SortOrder;
|
|
552
|
+
completedAt?: Prisma.SortOrder;
|
|
553
|
+
durationMs?: Prisma.SortOrder;
|
|
554
|
+
parameters?: Prisma.SortOrder;
|
|
555
|
+
itemsProcessed?: Prisma.SortOrder;
|
|
556
|
+
itemsAffected?: Prisma.SortOrder;
|
|
557
|
+
errorCount?: Prisma.SortOrder;
|
|
558
|
+
errors?: Prisma.SortOrder;
|
|
559
|
+
summary?: Prisma.SortOrder;
|
|
560
|
+
attemptNumber?: Prisma.SortOrder;
|
|
561
|
+
maxAttempts?: Prisma.SortOrder;
|
|
562
|
+
nextRetryAt?: Prisma.SortOrder;
|
|
563
|
+
createdAt?: Prisma.SortOrder;
|
|
564
|
+
updatedAt?: Prisma.SortOrder;
|
|
565
|
+
};
|
|
566
|
+
export type ScheduledJobAvgOrderByAggregateInput = {
|
|
567
|
+
durationMs?: Prisma.SortOrder;
|
|
568
|
+
itemsProcessed?: Prisma.SortOrder;
|
|
569
|
+
itemsAffected?: Prisma.SortOrder;
|
|
570
|
+
errorCount?: Prisma.SortOrder;
|
|
571
|
+
attemptNumber?: Prisma.SortOrder;
|
|
572
|
+
maxAttempts?: Prisma.SortOrder;
|
|
573
|
+
};
|
|
574
|
+
export type ScheduledJobMaxOrderByAggregateInput = {
|
|
575
|
+
id?: Prisma.SortOrder;
|
|
576
|
+
tenantId?: Prisma.SortOrder;
|
|
577
|
+
jobType?: Prisma.SortOrder;
|
|
578
|
+
status?: Prisma.SortOrder;
|
|
579
|
+
scheduledAt?: Prisma.SortOrder;
|
|
580
|
+
startedAt?: Prisma.SortOrder;
|
|
581
|
+
completedAt?: Prisma.SortOrder;
|
|
582
|
+
durationMs?: Prisma.SortOrder;
|
|
583
|
+
itemsProcessed?: Prisma.SortOrder;
|
|
584
|
+
itemsAffected?: Prisma.SortOrder;
|
|
585
|
+
errorCount?: Prisma.SortOrder;
|
|
586
|
+
summary?: Prisma.SortOrder;
|
|
587
|
+
attemptNumber?: Prisma.SortOrder;
|
|
588
|
+
maxAttempts?: Prisma.SortOrder;
|
|
589
|
+
nextRetryAt?: Prisma.SortOrder;
|
|
590
|
+
createdAt?: Prisma.SortOrder;
|
|
591
|
+
updatedAt?: Prisma.SortOrder;
|
|
592
|
+
};
|
|
593
|
+
export type ScheduledJobMinOrderByAggregateInput = {
|
|
594
|
+
id?: Prisma.SortOrder;
|
|
595
|
+
tenantId?: Prisma.SortOrder;
|
|
596
|
+
jobType?: Prisma.SortOrder;
|
|
597
|
+
status?: Prisma.SortOrder;
|
|
598
|
+
scheduledAt?: Prisma.SortOrder;
|
|
599
|
+
startedAt?: Prisma.SortOrder;
|
|
600
|
+
completedAt?: Prisma.SortOrder;
|
|
601
|
+
durationMs?: Prisma.SortOrder;
|
|
602
|
+
itemsProcessed?: Prisma.SortOrder;
|
|
603
|
+
itemsAffected?: Prisma.SortOrder;
|
|
604
|
+
errorCount?: Prisma.SortOrder;
|
|
605
|
+
summary?: Prisma.SortOrder;
|
|
606
|
+
attemptNumber?: Prisma.SortOrder;
|
|
607
|
+
maxAttempts?: Prisma.SortOrder;
|
|
608
|
+
nextRetryAt?: Prisma.SortOrder;
|
|
609
|
+
createdAt?: Prisma.SortOrder;
|
|
610
|
+
updatedAt?: Prisma.SortOrder;
|
|
611
|
+
};
|
|
612
|
+
export type ScheduledJobSumOrderByAggregateInput = {
|
|
613
|
+
durationMs?: Prisma.SortOrder;
|
|
614
|
+
itemsProcessed?: Prisma.SortOrder;
|
|
615
|
+
itemsAffected?: Prisma.SortOrder;
|
|
616
|
+
errorCount?: Prisma.SortOrder;
|
|
617
|
+
attemptNumber?: Prisma.SortOrder;
|
|
618
|
+
maxAttempts?: Prisma.SortOrder;
|
|
619
|
+
};
|
|
620
|
+
export type EnumScheduledJobTypeFieldUpdateOperationsInput = {
|
|
621
|
+
set?: $Enums.ScheduledJobType;
|
|
622
|
+
};
|
|
623
|
+
export type EnumScheduledJobStatusFieldUpdateOperationsInput = {
|
|
624
|
+
set?: $Enums.ScheduledJobStatus;
|
|
625
|
+
};
|
|
626
|
+
export type ScheduledJobSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
627
|
+
id?: boolean;
|
|
628
|
+
tenantId?: boolean;
|
|
629
|
+
jobType?: boolean;
|
|
630
|
+
status?: boolean;
|
|
631
|
+
scheduledAt?: boolean;
|
|
632
|
+
startedAt?: boolean;
|
|
633
|
+
completedAt?: boolean;
|
|
634
|
+
durationMs?: boolean;
|
|
635
|
+
parameters?: boolean;
|
|
636
|
+
itemsProcessed?: boolean;
|
|
637
|
+
itemsAffected?: boolean;
|
|
638
|
+
errorCount?: boolean;
|
|
639
|
+
errors?: boolean;
|
|
640
|
+
summary?: boolean;
|
|
641
|
+
attemptNumber?: boolean;
|
|
642
|
+
maxAttempts?: boolean;
|
|
643
|
+
nextRetryAt?: boolean;
|
|
644
|
+
createdAt?: boolean;
|
|
645
|
+
updatedAt?: boolean;
|
|
646
|
+
}, ExtArgs["result"]["scheduledJob"]>;
|
|
647
|
+
export type ScheduledJobSelectScalar = {
|
|
648
|
+
id?: boolean;
|
|
649
|
+
tenantId?: boolean;
|
|
650
|
+
jobType?: boolean;
|
|
651
|
+
status?: boolean;
|
|
652
|
+
scheduledAt?: boolean;
|
|
653
|
+
startedAt?: boolean;
|
|
654
|
+
completedAt?: boolean;
|
|
655
|
+
durationMs?: boolean;
|
|
656
|
+
parameters?: boolean;
|
|
657
|
+
itemsProcessed?: boolean;
|
|
658
|
+
itemsAffected?: boolean;
|
|
659
|
+
errorCount?: boolean;
|
|
660
|
+
errors?: boolean;
|
|
661
|
+
summary?: boolean;
|
|
662
|
+
attemptNumber?: boolean;
|
|
663
|
+
maxAttempts?: boolean;
|
|
664
|
+
nextRetryAt?: boolean;
|
|
665
|
+
createdAt?: boolean;
|
|
666
|
+
updatedAt?: boolean;
|
|
667
|
+
};
|
|
668
|
+
export type ScheduledJobOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "tenantId" | "jobType" | "status" | "scheduledAt" | "startedAt" | "completedAt" | "durationMs" | "parameters" | "itemsProcessed" | "itemsAffected" | "errorCount" | "errors" | "summary" | "attemptNumber" | "maxAttempts" | "nextRetryAt" | "createdAt" | "updatedAt", ExtArgs["result"]["scheduledJob"]>;
|
|
669
|
+
export type $ScheduledJobPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
670
|
+
name: "ScheduledJob";
|
|
671
|
+
objects: {};
|
|
672
|
+
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
673
|
+
id: string;
|
|
674
|
+
tenantId: string | null;
|
|
675
|
+
jobType: $Enums.ScheduledJobType;
|
|
676
|
+
status: $Enums.ScheduledJobStatus;
|
|
677
|
+
scheduledAt: Date;
|
|
678
|
+
startedAt: Date | null;
|
|
679
|
+
completedAt: Date | null;
|
|
680
|
+
durationMs: number | null;
|
|
681
|
+
parameters: runtime.JsonValue | null;
|
|
682
|
+
itemsProcessed: number;
|
|
683
|
+
itemsAffected: number;
|
|
684
|
+
errorCount: number;
|
|
685
|
+
errors: runtime.JsonValue | null;
|
|
686
|
+
summary: string | null;
|
|
687
|
+
attemptNumber: number;
|
|
688
|
+
maxAttempts: number;
|
|
689
|
+
nextRetryAt: Date | null;
|
|
690
|
+
createdAt: Date;
|
|
691
|
+
updatedAt: Date;
|
|
692
|
+
}, ExtArgs["result"]["scheduledJob"]>;
|
|
693
|
+
composites: {};
|
|
694
|
+
};
|
|
695
|
+
export type ScheduledJobGetPayload<S extends boolean | null | undefined | ScheduledJobDefaultArgs> = runtime.Types.Result.GetResult<Prisma.$ScheduledJobPayload, S>;
|
|
696
|
+
export type ScheduledJobCountArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = Omit<ScheduledJobFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
|
|
697
|
+
select?: ScheduledJobCountAggregateInputType | true;
|
|
698
|
+
};
|
|
699
|
+
export interface ScheduledJobDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
|
|
700
|
+
[K: symbol]: {
|
|
701
|
+
types: Prisma.TypeMap<ExtArgs>['model']['ScheduledJob'];
|
|
702
|
+
meta: {
|
|
703
|
+
name: 'ScheduledJob';
|
|
704
|
+
};
|
|
705
|
+
};
|
|
706
|
+
/**
|
|
707
|
+
* Find zero or one ScheduledJob that matches the filter.
|
|
708
|
+
* @param {ScheduledJobFindUniqueArgs} args - Arguments to find a ScheduledJob
|
|
709
|
+
* @example
|
|
710
|
+
* // Get one ScheduledJob
|
|
711
|
+
* const scheduledJob = await prisma.scheduledJob.findUnique({
|
|
712
|
+
* where: {
|
|
713
|
+
* // ... provide filter here
|
|
714
|
+
* }
|
|
715
|
+
* })
|
|
716
|
+
*/
|
|
717
|
+
findUnique<T extends ScheduledJobFindUniqueArgs>(args: Prisma.SelectSubset<T, ScheduledJobFindUniqueArgs<ExtArgs>>): Prisma.Prisma__ScheduledJobClient<runtime.Types.Result.GetResult<Prisma.$ScheduledJobPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
718
|
+
/**
|
|
719
|
+
* Find one ScheduledJob that matches the filter or throw an error with `error.code='P2025'`
|
|
720
|
+
* if no matches were found.
|
|
721
|
+
* @param {ScheduledJobFindUniqueOrThrowArgs} args - Arguments to find a ScheduledJob
|
|
722
|
+
* @example
|
|
723
|
+
* // Get one ScheduledJob
|
|
724
|
+
* const scheduledJob = await prisma.scheduledJob.findUniqueOrThrow({
|
|
725
|
+
* where: {
|
|
726
|
+
* // ... provide filter here
|
|
727
|
+
* }
|
|
728
|
+
* })
|
|
729
|
+
*/
|
|
730
|
+
findUniqueOrThrow<T extends ScheduledJobFindUniqueOrThrowArgs>(args: Prisma.SelectSubset<T, ScheduledJobFindUniqueOrThrowArgs<ExtArgs>>): Prisma.Prisma__ScheduledJobClient<runtime.Types.Result.GetResult<Prisma.$ScheduledJobPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
731
|
+
/**
|
|
732
|
+
* Find the first ScheduledJob that matches the filter.
|
|
733
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
734
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
735
|
+
* @param {ScheduledJobFindFirstArgs} args - Arguments to find a ScheduledJob
|
|
736
|
+
* @example
|
|
737
|
+
* // Get one ScheduledJob
|
|
738
|
+
* const scheduledJob = await prisma.scheduledJob.findFirst({
|
|
739
|
+
* where: {
|
|
740
|
+
* // ... provide filter here
|
|
741
|
+
* }
|
|
742
|
+
* })
|
|
743
|
+
*/
|
|
744
|
+
findFirst<T extends ScheduledJobFindFirstArgs>(args?: Prisma.SelectSubset<T, ScheduledJobFindFirstArgs<ExtArgs>>): Prisma.Prisma__ScheduledJobClient<runtime.Types.Result.GetResult<Prisma.$ScheduledJobPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
745
|
+
/**
|
|
746
|
+
* Find the first ScheduledJob that matches the filter or
|
|
747
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
748
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
749
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
750
|
+
* @param {ScheduledJobFindFirstOrThrowArgs} args - Arguments to find a ScheduledJob
|
|
751
|
+
* @example
|
|
752
|
+
* // Get one ScheduledJob
|
|
753
|
+
* const scheduledJob = await prisma.scheduledJob.findFirstOrThrow({
|
|
754
|
+
* where: {
|
|
755
|
+
* // ... provide filter here
|
|
756
|
+
* }
|
|
757
|
+
* })
|
|
758
|
+
*/
|
|
759
|
+
findFirstOrThrow<T extends ScheduledJobFindFirstOrThrowArgs>(args?: Prisma.SelectSubset<T, ScheduledJobFindFirstOrThrowArgs<ExtArgs>>): Prisma.Prisma__ScheduledJobClient<runtime.Types.Result.GetResult<Prisma.$ScheduledJobPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
760
|
+
/**
|
|
761
|
+
* Find zero or more ScheduledJobs that matches the filter.
|
|
762
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
763
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
764
|
+
* @param {ScheduledJobFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
765
|
+
* @example
|
|
766
|
+
* // Get all ScheduledJobs
|
|
767
|
+
* const scheduledJobs = await prisma.scheduledJob.findMany()
|
|
768
|
+
*
|
|
769
|
+
* // Get first 10 ScheduledJobs
|
|
770
|
+
* const scheduledJobs = await prisma.scheduledJob.findMany({ take: 10 })
|
|
771
|
+
*
|
|
772
|
+
* // Only select the `id`
|
|
773
|
+
* const scheduledJobWithIdOnly = await prisma.scheduledJob.findMany({ select: { id: true } })
|
|
774
|
+
*
|
|
775
|
+
*/
|
|
776
|
+
findMany<T extends ScheduledJobFindManyArgs>(args?: Prisma.SelectSubset<T, ScheduledJobFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ScheduledJobPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>;
|
|
777
|
+
/**
|
|
778
|
+
* Create a ScheduledJob.
|
|
779
|
+
* @param {ScheduledJobCreateArgs} args - Arguments to create a ScheduledJob.
|
|
780
|
+
* @example
|
|
781
|
+
* // Create one ScheduledJob
|
|
782
|
+
* const ScheduledJob = await prisma.scheduledJob.create({
|
|
783
|
+
* data: {
|
|
784
|
+
* // ... data to create a ScheduledJob
|
|
785
|
+
* }
|
|
786
|
+
* })
|
|
787
|
+
*
|
|
788
|
+
*/
|
|
789
|
+
create<T extends ScheduledJobCreateArgs>(args: Prisma.SelectSubset<T, ScheduledJobCreateArgs<ExtArgs>>): Prisma.Prisma__ScheduledJobClient<runtime.Types.Result.GetResult<Prisma.$ScheduledJobPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
790
|
+
/**
|
|
791
|
+
* Create many ScheduledJobs.
|
|
792
|
+
* @param {ScheduledJobCreateManyArgs} args - Arguments to create many ScheduledJobs.
|
|
793
|
+
* @example
|
|
794
|
+
* // Create many ScheduledJobs
|
|
795
|
+
* const scheduledJob = await prisma.scheduledJob.createMany({
|
|
796
|
+
* data: [
|
|
797
|
+
* // ... provide data here
|
|
798
|
+
* ]
|
|
799
|
+
* })
|
|
800
|
+
*
|
|
801
|
+
*/
|
|
802
|
+
createMany<T extends ScheduledJobCreateManyArgs>(args?: Prisma.SelectSubset<T, ScheduledJobCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
803
|
+
/**
|
|
804
|
+
* Delete a ScheduledJob.
|
|
805
|
+
* @param {ScheduledJobDeleteArgs} args - Arguments to delete one ScheduledJob.
|
|
806
|
+
* @example
|
|
807
|
+
* // Delete one ScheduledJob
|
|
808
|
+
* const ScheduledJob = await prisma.scheduledJob.delete({
|
|
809
|
+
* where: {
|
|
810
|
+
* // ... filter to delete one ScheduledJob
|
|
811
|
+
* }
|
|
812
|
+
* })
|
|
813
|
+
*
|
|
814
|
+
*/
|
|
815
|
+
delete<T extends ScheduledJobDeleteArgs>(args: Prisma.SelectSubset<T, ScheduledJobDeleteArgs<ExtArgs>>): Prisma.Prisma__ScheduledJobClient<runtime.Types.Result.GetResult<Prisma.$ScheduledJobPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
816
|
+
/**
|
|
817
|
+
* Update one ScheduledJob.
|
|
818
|
+
* @param {ScheduledJobUpdateArgs} args - Arguments to update one ScheduledJob.
|
|
819
|
+
* @example
|
|
820
|
+
* // Update one ScheduledJob
|
|
821
|
+
* const scheduledJob = await prisma.scheduledJob.update({
|
|
822
|
+
* where: {
|
|
823
|
+
* // ... provide filter here
|
|
824
|
+
* },
|
|
825
|
+
* data: {
|
|
826
|
+
* // ... provide data here
|
|
827
|
+
* }
|
|
828
|
+
* })
|
|
829
|
+
*
|
|
830
|
+
*/
|
|
831
|
+
update<T extends ScheduledJobUpdateArgs>(args: Prisma.SelectSubset<T, ScheduledJobUpdateArgs<ExtArgs>>): Prisma.Prisma__ScheduledJobClient<runtime.Types.Result.GetResult<Prisma.$ScheduledJobPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
832
|
+
/**
|
|
833
|
+
* Delete zero or more ScheduledJobs.
|
|
834
|
+
* @param {ScheduledJobDeleteManyArgs} args - Arguments to filter ScheduledJobs to delete.
|
|
835
|
+
* @example
|
|
836
|
+
* // Delete a few ScheduledJobs
|
|
837
|
+
* const { count } = await prisma.scheduledJob.deleteMany({
|
|
838
|
+
* where: {
|
|
839
|
+
* // ... provide filter here
|
|
840
|
+
* }
|
|
841
|
+
* })
|
|
842
|
+
*
|
|
843
|
+
*/
|
|
844
|
+
deleteMany<T extends ScheduledJobDeleteManyArgs>(args?: Prisma.SelectSubset<T, ScheduledJobDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
845
|
+
/**
|
|
846
|
+
* Update zero or more ScheduledJobs.
|
|
847
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
848
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
849
|
+
* @param {ScheduledJobUpdateManyArgs} args - Arguments to update one or more rows.
|
|
850
|
+
* @example
|
|
851
|
+
* // Update many ScheduledJobs
|
|
852
|
+
* const scheduledJob = await prisma.scheduledJob.updateMany({
|
|
853
|
+
* where: {
|
|
854
|
+
* // ... provide filter here
|
|
855
|
+
* },
|
|
856
|
+
* data: {
|
|
857
|
+
* // ... provide data here
|
|
858
|
+
* }
|
|
859
|
+
* })
|
|
860
|
+
*
|
|
861
|
+
*/
|
|
862
|
+
updateMany<T extends ScheduledJobUpdateManyArgs>(args: Prisma.SelectSubset<T, ScheduledJobUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
863
|
+
/**
|
|
864
|
+
* Create or update one ScheduledJob.
|
|
865
|
+
* @param {ScheduledJobUpsertArgs} args - Arguments to update or create a ScheduledJob.
|
|
866
|
+
* @example
|
|
867
|
+
* // Update or create a ScheduledJob
|
|
868
|
+
* const scheduledJob = await prisma.scheduledJob.upsert({
|
|
869
|
+
* create: {
|
|
870
|
+
* // ... data to create a ScheduledJob
|
|
871
|
+
* },
|
|
872
|
+
* update: {
|
|
873
|
+
* // ... in case it already exists, update
|
|
874
|
+
* },
|
|
875
|
+
* where: {
|
|
876
|
+
* // ... the filter for the ScheduledJob we want to update
|
|
877
|
+
* }
|
|
878
|
+
* })
|
|
879
|
+
*/
|
|
880
|
+
upsert<T extends ScheduledJobUpsertArgs>(args: Prisma.SelectSubset<T, ScheduledJobUpsertArgs<ExtArgs>>): Prisma.Prisma__ScheduledJobClient<runtime.Types.Result.GetResult<Prisma.$ScheduledJobPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
881
|
+
/**
|
|
882
|
+
* Count the number of ScheduledJobs.
|
|
883
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
884
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
885
|
+
* @param {ScheduledJobCountArgs} args - Arguments to filter ScheduledJobs to count.
|
|
886
|
+
* @example
|
|
887
|
+
* // Count the number of ScheduledJobs
|
|
888
|
+
* const count = await prisma.scheduledJob.count({
|
|
889
|
+
* where: {
|
|
890
|
+
* // ... the filter for the ScheduledJobs we want to count
|
|
891
|
+
* }
|
|
892
|
+
* })
|
|
893
|
+
**/
|
|
894
|
+
count<T extends ScheduledJobCountArgs>(args?: Prisma.Subset<T, ScheduledJobCountArgs>): Prisma.PrismaPromise<T extends runtime.Types.Utils.Record<'select', any> ? T['select'] extends true ? number : Prisma.GetScalarType<T['select'], ScheduledJobCountAggregateOutputType> : number>;
|
|
895
|
+
/**
|
|
896
|
+
* Allows you to perform aggregations operations on a ScheduledJob.
|
|
897
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
898
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
899
|
+
* @param {ScheduledJobAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
900
|
+
* @example
|
|
901
|
+
* // Ordered by age ascending
|
|
902
|
+
* // Where email contains prisma.io
|
|
903
|
+
* // Limited to the 10 users
|
|
904
|
+
* const aggregations = await prisma.user.aggregate({
|
|
905
|
+
* _avg: {
|
|
906
|
+
* age: true,
|
|
907
|
+
* },
|
|
908
|
+
* where: {
|
|
909
|
+
* email: {
|
|
910
|
+
* contains: "prisma.io",
|
|
911
|
+
* },
|
|
912
|
+
* },
|
|
913
|
+
* orderBy: {
|
|
914
|
+
* age: "asc",
|
|
915
|
+
* },
|
|
916
|
+
* take: 10,
|
|
917
|
+
* })
|
|
918
|
+
**/
|
|
919
|
+
aggregate<T extends ScheduledJobAggregateArgs>(args: Prisma.Subset<T, ScheduledJobAggregateArgs>): Prisma.PrismaPromise<GetScheduledJobAggregateType<T>>;
|
|
920
|
+
/**
|
|
921
|
+
* Group by ScheduledJob.
|
|
922
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
923
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
924
|
+
* @param {ScheduledJobGroupByArgs} args - Group by arguments.
|
|
925
|
+
* @example
|
|
926
|
+
* // Group by city, order by createdAt, get count
|
|
927
|
+
* const result = await prisma.user.groupBy({
|
|
928
|
+
* by: ['city', 'createdAt'],
|
|
929
|
+
* orderBy: {
|
|
930
|
+
* createdAt: true
|
|
931
|
+
* },
|
|
932
|
+
* _count: {
|
|
933
|
+
* _all: true
|
|
934
|
+
* },
|
|
935
|
+
* })
|
|
936
|
+
*
|
|
937
|
+
**/
|
|
938
|
+
groupBy<T extends ScheduledJobGroupByArgs, HasSelectOrTake extends Prisma.Or<Prisma.Extends<'skip', Prisma.Keys<T>>, Prisma.Extends<'take', Prisma.Keys<T>>>, OrderByArg extends Prisma.True extends HasSelectOrTake ? {
|
|
939
|
+
orderBy: ScheduledJobGroupByArgs['orderBy'];
|
|
940
|
+
} : {
|
|
941
|
+
orderBy?: ScheduledJobGroupByArgs['orderBy'];
|
|
942
|
+
}, OrderFields extends Prisma.ExcludeUnderscoreKeys<Prisma.Keys<Prisma.MaybeTupleToUnion<T['orderBy']>>>, ByFields extends Prisma.MaybeTupleToUnion<T['by']>, ByValid extends Prisma.Has<ByFields, OrderFields>, HavingFields extends Prisma.GetHavingFields<T['having']>, HavingValid extends Prisma.Has<ByFields, HavingFields>, ByEmpty extends T['by'] extends never[] ? Prisma.True : Prisma.False, InputErrors extends ByEmpty extends Prisma.True ? `Error: "by" must not be empty.` : HavingValid extends Prisma.False ? {
|
|
943
|
+
[P in HavingFields]: P extends ByFields ? never : P extends string ? `Error: Field "${P}" used in "having" needs to be provided in "by".` : [
|
|
944
|
+
Error,
|
|
945
|
+
'Field ',
|
|
946
|
+
P,
|
|
947
|
+
` in "having" needs to be provided in "by"`
|
|
948
|
+
];
|
|
949
|
+
}[HavingFields] : 'take' extends Prisma.Keys<T> ? 'orderBy' extends Prisma.Keys<T> ? ByValid extends Prisma.True ? {} : {
|
|
950
|
+
[P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
|
|
951
|
+
}[OrderFields] : 'Error: If you provide "take", you also need to provide "orderBy"' : 'skip' extends Prisma.Keys<T> ? 'orderBy' extends Prisma.Keys<T> ? ByValid extends Prisma.True ? {} : {
|
|
952
|
+
[P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
|
|
953
|
+
}[OrderFields] : 'Error: If you provide "skip", you also need to provide "orderBy"' : ByValid extends Prisma.True ? {} : {
|
|
954
|
+
[P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
|
|
955
|
+
}[OrderFields]>(args: Prisma.SubsetIntersection<T, ScheduledJobGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetScheduledJobGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>;
|
|
956
|
+
/**
|
|
957
|
+
* Fields of the ScheduledJob model
|
|
958
|
+
*/
|
|
959
|
+
readonly fields: ScheduledJobFieldRefs;
|
|
960
|
+
}
|
|
961
|
+
/**
|
|
962
|
+
* The delegate class that acts as a "Promise-like" for ScheduledJob.
|
|
963
|
+
* Why is this prefixed with `Prisma__`?
|
|
964
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
965
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
966
|
+
*/
|
|
967
|
+
export interface Prisma__ScheduledJobClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
|
968
|
+
readonly [Symbol.toStringTag]: "PrismaPromise";
|
|
969
|
+
/**
|
|
970
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
971
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
972
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
973
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
974
|
+
*/
|
|
975
|
+
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>;
|
|
976
|
+
/**
|
|
977
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
978
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
979
|
+
* @returns A Promise for the completion of the callback.
|
|
980
|
+
*/
|
|
981
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): runtime.Types.Utils.JsPromise<T | TResult>;
|
|
982
|
+
/**
|
|
983
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
984
|
+
* resolved value cannot be modified from the callback.
|
|
985
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
986
|
+
* @returns A Promise for the completion of the callback.
|
|
987
|
+
*/
|
|
988
|
+
finally(onfinally?: (() => void) | undefined | null): runtime.Types.Utils.JsPromise<T>;
|
|
989
|
+
}
|
|
990
|
+
/**
|
|
991
|
+
* Fields of the ScheduledJob model
|
|
992
|
+
*/
|
|
993
|
+
export interface ScheduledJobFieldRefs {
|
|
994
|
+
readonly id: Prisma.FieldRef<"ScheduledJob", 'String'>;
|
|
995
|
+
readonly tenantId: Prisma.FieldRef<"ScheduledJob", 'String'>;
|
|
996
|
+
readonly jobType: Prisma.FieldRef<"ScheduledJob", 'ScheduledJobType'>;
|
|
997
|
+
readonly status: Prisma.FieldRef<"ScheduledJob", 'ScheduledJobStatus'>;
|
|
998
|
+
readonly scheduledAt: Prisma.FieldRef<"ScheduledJob", 'DateTime'>;
|
|
999
|
+
readonly startedAt: Prisma.FieldRef<"ScheduledJob", 'DateTime'>;
|
|
1000
|
+
readonly completedAt: Prisma.FieldRef<"ScheduledJob", 'DateTime'>;
|
|
1001
|
+
readonly durationMs: Prisma.FieldRef<"ScheduledJob", 'Int'>;
|
|
1002
|
+
readonly parameters: Prisma.FieldRef<"ScheduledJob", 'Json'>;
|
|
1003
|
+
readonly itemsProcessed: Prisma.FieldRef<"ScheduledJob", 'Int'>;
|
|
1004
|
+
readonly itemsAffected: Prisma.FieldRef<"ScheduledJob", 'Int'>;
|
|
1005
|
+
readonly errorCount: Prisma.FieldRef<"ScheduledJob", 'Int'>;
|
|
1006
|
+
readonly errors: Prisma.FieldRef<"ScheduledJob", 'Json'>;
|
|
1007
|
+
readonly summary: Prisma.FieldRef<"ScheduledJob", 'String'>;
|
|
1008
|
+
readonly attemptNumber: Prisma.FieldRef<"ScheduledJob", 'Int'>;
|
|
1009
|
+
readonly maxAttempts: Prisma.FieldRef<"ScheduledJob", 'Int'>;
|
|
1010
|
+
readonly nextRetryAt: Prisma.FieldRef<"ScheduledJob", 'DateTime'>;
|
|
1011
|
+
readonly createdAt: Prisma.FieldRef<"ScheduledJob", 'DateTime'>;
|
|
1012
|
+
readonly updatedAt: Prisma.FieldRef<"ScheduledJob", 'DateTime'>;
|
|
1013
|
+
}
|
|
1014
|
+
/**
|
|
1015
|
+
* ScheduledJob findUnique
|
|
1016
|
+
*/
|
|
1017
|
+
export type ScheduledJobFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1018
|
+
/**
|
|
1019
|
+
* Select specific fields to fetch from the ScheduledJob
|
|
1020
|
+
*/
|
|
1021
|
+
select?: Prisma.ScheduledJobSelect<ExtArgs> | null;
|
|
1022
|
+
/**
|
|
1023
|
+
* Omit specific fields from the ScheduledJob
|
|
1024
|
+
*/
|
|
1025
|
+
omit?: Prisma.ScheduledJobOmit<ExtArgs> | null;
|
|
1026
|
+
/**
|
|
1027
|
+
* Filter, which ScheduledJob to fetch.
|
|
1028
|
+
*/
|
|
1029
|
+
where: Prisma.ScheduledJobWhereUniqueInput;
|
|
1030
|
+
};
|
|
1031
|
+
/**
|
|
1032
|
+
* ScheduledJob findUniqueOrThrow
|
|
1033
|
+
*/
|
|
1034
|
+
export type ScheduledJobFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1035
|
+
/**
|
|
1036
|
+
* Select specific fields to fetch from the ScheduledJob
|
|
1037
|
+
*/
|
|
1038
|
+
select?: Prisma.ScheduledJobSelect<ExtArgs> | null;
|
|
1039
|
+
/**
|
|
1040
|
+
* Omit specific fields from the ScheduledJob
|
|
1041
|
+
*/
|
|
1042
|
+
omit?: Prisma.ScheduledJobOmit<ExtArgs> | null;
|
|
1043
|
+
/**
|
|
1044
|
+
* Filter, which ScheduledJob to fetch.
|
|
1045
|
+
*/
|
|
1046
|
+
where: Prisma.ScheduledJobWhereUniqueInput;
|
|
1047
|
+
};
|
|
1048
|
+
/**
|
|
1049
|
+
* ScheduledJob findFirst
|
|
1050
|
+
*/
|
|
1051
|
+
export type ScheduledJobFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1052
|
+
/**
|
|
1053
|
+
* Select specific fields to fetch from the ScheduledJob
|
|
1054
|
+
*/
|
|
1055
|
+
select?: Prisma.ScheduledJobSelect<ExtArgs> | null;
|
|
1056
|
+
/**
|
|
1057
|
+
* Omit specific fields from the ScheduledJob
|
|
1058
|
+
*/
|
|
1059
|
+
omit?: Prisma.ScheduledJobOmit<ExtArgs> | null;
|
|
1060
|
+
/**
|
|
1061
|
+
* Filter, which ScheduledJob to fetch.
|
|
1062
|
+
*/
|
|
1063
|
+
where?: Prisma.ScheduledJobWhereInput;
|
|
1064
|
+
/**
|
|
1065
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
1066
|
+
*
|
|
1067
|
+
* Determine the order of ScheduledJobs to fetch.
|
|
1068
|
+
*/
|
|
1069
|
+
orderBy?: Prisma.ScheduledJobOrderByWithRelationInput | Prisma.ScheduledJobOrderByWithRelationInput[];
|
|
1070
|
+
/**
|
|
1071
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
1072
|
+
*
|
|
1073
|
+
* Sets the position for searching for ScheduledJobs.
|
|
1074
|
+
*/
|
|
1075
|
+
cursor?: Prisma.ScheduledJobWhereUniqueInput;
|
|
1076
|
+
/**
|
|
1077
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1078
|
+
*
|
|
1079
|
+
* Take `±n` ScheduledJobs from the position of the cursor.
|
|
1080
|
+
*/
|
|
1081
|
+
take?: number;
|
|
1082
|
+
/**
|
|
1083
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1084
|
+
*
|
|
1085
|
+
* Skip the first `n` ScheduledJobs.
|
|
1086
|
+
*/
|
|
1087
|
+
skip?: number;
|
|
1088
|
+
/**
|
|
1089
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
1090
|
+
*
|
|
1091
|
+
* Filter by unique combinations of ScheduledJobs.
|
|
1092
|
+
*/
|
|
1093
|
+
distinct?: Prisma.ScheduledJobScalarFieldEnum | Prisma.ScheduledJobScalarFieldEnum[];
|
|
1094
|
+
};
|
|
1095
|
+
/**
|
|
1096
|
+
* ScheduledJob findFirstOrThrow
|
|
1097
|
+
*/
|
|
1098
|
+
export type ScheduledJobFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1099
|
+
/**
|
|
1100
|
+
* Select specific fields to fetch from the ScheduledJob
|
|
1101
|
+
*/
|
|
1102
|
+
select?: Prisma.ScheduledJobSelect<ExtArgs> | null;
|
|
1103
|
+
/**
|
|
1104
|
+
* Omit specific fields from the ScheduledJob
|
|
1105
|
+
*/
|
|
1106
|
+
omit?: Prisma.ScheduledJobOmit<ExtArgs> | null;
|
|
1107
|
+
/**
|
|
1108
|
+
* Filter, which ScheduledJob to fetch.
|
|
1109
|
+
*/
|
|
1110
|
+
where?: Prisma.ScheduledJobWhereInput;
|
|
1111
|
+
/**
|
|
1112
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
1113
|
+
*
|
|
1114
|
+
* Determine the order of ScheduledJobs to fetch.
|
|
1115
|
+
*/
|
|
1116
|
+
orderBy?: Prisma.ScheduledJobOrderByWithRelationInput | Prisma.ScheduledJobOrderByWithRelationInput[];
|
|
1117
|
+
/**
|
|
1118
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
1119
|
+
*
|
|
1120
|
+
* Sets the position for searching for ScheduledJobs.
|
|
1121
|
+
*/
|
|
1122
|
+
cursor?: Prisma.ScheduledJobWhereUniqueInput;
|
|
1123
|
+
/**
|
|
1124
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1125
|
+
*
|
|
1126
|
+
* Take `±n` ScheduledJobs from the position of the cursor.
|
|
1127
|
+
*/
|
|
1128
|
+
take?: number;
|
|
1129
|
+
/**
|
|
1130
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1131
|
+
*
|
|
1132
|
+
* Skip the first `n` ScheduledJobs.
|
|
1133
|
+
*/
|
|
1134
|
+
skip?: number;
|
|
1135
|
+
/**
|
|
1136
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
1137
|
+
*
|
|
1138
|
+
* Filter by unique combinations of ScheduledJobs.
|
|
1139
|
+
*/
|
|
1140
|
+
distinct?: Prisma.ScheduledJobScalarFieldEnum | Prisma.ScheduledJobScalarFieldEnum[];
|
|
1141
|
+
};
|
|
1142
|
+
/**
|
|
1143
|
+
* ScheduledJob findMany
|
|
1144
|
+
*/
|
|
1145
|
+
export type ScheduledJobFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1146
|
+
/**
|
|
1147
|
+
* Select specific fields to fetch from the ScheduledJob
|
|
1148
|
+
*/
|
|
1149
|
+
select?: Prisma.ScheduledJobSelect<ExtArgs> | null;
|
|
1150
|
+
/**
|
|
1151
|
+
* Omit specific fields from the ScheduledJob
|
|
1152
|
+
*/
|
|
1153
|
+
omit?: Prisma.ScheduledJobOmit<ExtArgs> | null;
|
|
1154
|
+
/**
|
|
1155
|
+
* Filter, which ScheduledJobs to fetch.
|
|
1156
|
+
*/
|
|
1157
|
+
where?: Prisma.ScheduledJobWhereInput;
|
|
1158
|
+
/**
|
|
1159
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
1160
|
+
*
|
|
1161
|
+
* Determine the order of ScheduledJobs to fetch.
|
|
1162
|
+
*/
|
|
1163
|
+
orderBy?: Prisma.ScheduledJobOrderByWithRelationInput | Prisma.ScheduledJobOrderByWithRelationInput[];
|
|
1164
|
+
/**
|
|
1165
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
1166
|
+
*
|
|
1167
|
+
* Sets the position for listing ScheduledJobs.
|
|
1168
|
+
*/
|
|
1169
|
+
cursor?: Prisma.ScheduledJobWhereUniqueInput;
|
|
1170
|
+
/**
|
|
1171
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1172
|
+
*
|
|
1173
|
+
* Take `±n` ScheduledJobs from the position of the cursor.
|
|
1174
|
+
*/
|
|
1175
|
+
take?: number;
|
|
1176
|
+
/**
|
|
1177
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1178
|
+
*
|
|
1179
|
+
* Skip the first `n` ScheduledJobs.
|
|
1180
|
+
*/
|
|
1181
|
+
skip?: number;
|
|
1182
|
+
distinct?: Prisma.ScheduledJobScalarFieldEnum | Prisma.ScheduledJobScalarFieldEnum[];
|
|
1183
|
+
};
|
|
1184
|
+
/**
|
|
1185
|
+
* ScheduledJob create
|
|
1186
|
+
*/
|
|
1187
|
+
export type ScheduledJobCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1188
|
+
/**
|
|
1189
|
+
* Select specific fields to fetch from the ScheduledJob
|
|
1190
|
+
*/
|
|
1191
|
+
select?: Prisma.ScheduledJobSelect<ExtArgs> | null;
|
|
1192
|
+
/**
|
|
1193
|
+
* Omit specific fields from the ScheduledJob
|
|
1194
|
+
*/
|
|
1195
|
+
omit?: Prisma.ScheduledJobOmit<ExtArgs> | null;
|
|
1196
|
+
/**
|
|
1197
|
+
* The data needed to create a ScheduledJob.
|
|
1198
|
+
*/
|
|
1199
|
+
data: Prisma.XOR<Prisma.ScheduledJobCreateInput, Prisma.ScheduledJobUncheckedCreateInput>;
|
|
1200
|
+
};
|
|
1201
|
+
/**
|
|
1202
|
+
* ScheduledJob createMany
|
|
1203
|
+
*/
|
|
1204
|
+
export type ScheduledJobCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1205
|
+
/**
|
|
1206
|
+
* The data used to create many ScheduledJobs.
|
|
1207
|
+
*/
|
|
1208
|
+
data: Prisma.ScheduledJobCreateManyInput | Prisma.ScheduledJobCreateManyInput[];
|
|
1209
|
+
skipDuplicates?: boolean;
|
|
1210
|
+
};
|
|
1211
|
+
/**
|
|
1212
|
+
* ScheduledJob update
|
|
1213
|
+
*/
|
|
1214
|
+
export type ScheduledJobUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1215
|
+
/**
|
|
1216
|
+
* Select specific fields to fetch from the ScheduledJob
|
|
1217
|
+
*/
|
|
1218
|
+
select?: Prisma.ScheduledJobSelect<ExtArgs> | null;
|
|
1219
|
+
/**
|
|
1220
|
+
* Omit specific fields from the ScheduledJob
|
|
1221
|
+
*/
|
|
1222
|
+
omit?: Prisma.ScheduledJobOmit<ExtArgs> | null;
|
|
1223
|
+
/**
|
|
1224
|
+
* The data needed to update a ScheduledJob.
|
|
1225
|
+
*/
|
|
1226
|
+
data: Prisma.XOR<Prisma.ScheduledJobUpdateInput, Prisma.ScheduledJobUncheckedUpdateInput>;
|
|
1227
|
+
/**
|
|
1228
|
+
* Choose, which ScheduledJob to update.
|
|
1229
|
+
*/
|
|
1230
|
+
where: Prisma.ScheduledJobWhereUniqueInput;
|
|
1231
|
+
};
|
|
1232
|
+
/**
|
|
1233
|
+
* ScheduledJob updateMany
|
|
1234
|
+
*/
|
|
1235
|
+
export type ScheduledJobUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1236
|
+
/**
|
|
1237
|
+
* The data used to update ScheduledJobs.
|
|
1238
|
+
*/
|
|
1239
|
+
data: Prisma.XOR<Prisma.ScheduledJobUpdateManyMutationInput, Prisma.ScheduledJobUncheckedUpdateManyInput>;
|
|
1240
|
+
/**
|
|
1241
|
+
* Filter which ScheduledJobs to update
|
|
1242
|
+
*/
|
|
1243
|
+
where?: Prisma.ScheduledJobWhereInput;
|
|
1244
|
+
/**
|
|
1245
|
+
* Limit how many ScheduledJobs to update.
|
|
1246
|
+
*/
|
|
1247
|
+
limit?: number;
|
|
1248
|
+
};
|
|
1249
|
+
/**
|
|
1250
|
+
* ScheduledJob upsert
|
|
1251
|
+
*/
|
|
1252
|
+
export type ScheduledJobUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1253
|
+
/**
|
|
1254
|
+
* Select specific fields to fetch from the ScheduledJob
|
|
1255
|
+
*/
|
|
1256
|
+
select?: Prisma.ScheduledJobSelect<ExtArgs> | null;
|
|
1257
|
+
/**
|
|
1258
|
+
* Omit specific fields from the ScheduledJob
|
|
1259
|
+
*/
|
|
1260
|
+
omit?: Prisma.ScheduledJobOmit<ExtArgs> | null;
|
|
1261
|
+
/**
|
|
1262
|
+
* The filter to search for the ScheduledJob to update in case it exists.
|
|
1263
|
+
*/
|
|
1264
|
+
where: Prisma.ScheduledJobWhereUniqueInput;
|
|
1265
|
+
/**
|
|
1266
|
+
* In case the ScheduledJob found by the `where` argument doesn't exist, create a new ScheduledJob with this data.
|
|
1267
|
+
*/
|
|
1268
|
+
create: Prisma.XOR<Prisma.ScheduledJobCreateInput, Prisma.ScheduledJobUncheckedCreateInput>;
|
|
1269
|
+
/**
|
|
1270
|
+
* In case the ScheduledJob was found with the provided `where` argument, update it with this data.
|
|
1271
|
+
*/
|
|
1272
|
+
update: Prisma.XOR<Prisma.ScheduledJobUpdateInput, Prisma.ScheduledJobUncheckedUpdateInput>;
|
|
1273
|
+
};
|
|
1274
|
+
/**
|
|
1275
|
+
* ScheduledJob delete
|
|
1276
|
+
*/
|
|
1277
|
+
export type ScheduledJobDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1278
|
+
/**
|
|
1279
|
+
* Select specific fields to fetch from the ScheduledJob
|
|
1280
|
+
*/
|
|
1281
|
+
select?: Prisma.ScheduledJobSelect<ExtArgs> | null;
|
|
1282
|
+
/**
|
|
1283
|
+
* Omit specific fields from the ScheduledJob
|
|
1284
|
+
*/
|
|
1285
|
+
omit?: Prisma.ScheduledJobOmit<ExtArgs> | null;
|
|
1286
|
+
/**
|
|
1287
|
+
* Filter which ScheduledJob to delete.
|
|
1288
|
+
*/
|
|
1289
|
+
where: Prisma.ScheduledJobWhereUniqueInput;
|
|
1290
|
+
};
|
|
1291
|
+
/**
|
|
1292
|
+
* ScheduledJob deleteMany
|
|
1293
|
+
*/
|
|
1294
|
+
export type ScheduledJobDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1295
|
+
/**
|
|
1296
|
+
* Filter which ScheduledJobs to delete
|
|
1297
|
+
*/
|
|
1298
|
+
where?: Prisma.ScheduledJobWhereInput;
|
|
1299
|
+
/**
|
|
1300
|
+
* Limit how many ScheduledJobs to delete.
|
|
1301
|
+
*/
|
|
1302
|
+
limit?: number;
|
|
1303
|
+
};
|
|
1304
|
+
/**
|
|
1305
|
+
* ScheduledJob without action
|
|
1306
|
+
*/
|
|
1307
|
+
export type ScheduledJobDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1308
|
+
/**
|
|
1309
|
+
* Select specific fields to fetch from the ScheduledJob
|
|
1310
|
+
*/
|
|
1311
|
+
select?: Prisma.ScheduledJobSelect<ExtArgs> | null;
|
|
1312
|
+
/**
|
|
1313
|
+
* Omit specific fields from the ScheduledJob
|
|
1314
|
+
*/
|
|
1315
|
+
omit?: Prisma.ScheduledJobOmit<ExtArgs> | null;
|
|
1316
|
+
};
|
|
1317
|
+
export {};
|