@betterinternship/db 1.0.5 → 1.0.7
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/index.d.ts +1 -1
- package/dist/index.js +17 -17
- package/dist/prisma.config.js.map +1 -1
- package/dist/src/prisma/commonInputTypes.d.ts +56 -46
- package/dist/src/prisma/internal/class.js +2 -2
- package/dist/src/prisma/internal/class.js.map +1 -1
- package/dist/src/prisma/internal/prismaNamespace.d.ts +1 -4
- package/dist/src/prisma/internal/prismaNamespace.js +1 -2
- package/dist/src/prisma/internal/prismaNamespace.js.map +1 -1
- package/dist/src/prisma/internal/prismaNamespaceBrowser.d.ts +1 -2
- package/dist/src/prisma/internal/prismaNamespaceBrowser.js +1 -2
- package/dist/src/prisma/internal/prismaNamespaceBrowser.js.map +1 -1
- package/dist/src/prisma/models/tasks.d.ts +38 -111
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/dist/db/index.d.ts +0 -10
- package/dist/db/index.js +0 -12
- package/dist/db/index.js.map +0 -1
- package/dist/prisma/browser.d.ts +0 -6
- package/dist/prisma/browser.js +0 -44
- package/dist/prisma/browser.js.map +0 -1
- package/dist/prisma/client.d.ts +0 -10
- package/dist/prisma/client.js +0 -49
- package/dist/prisma/client.js.map +0 -1
- package/dist/prisma/commonInputTypes.d.ts +0 -284
- package/dist/prisma/commonInputTypes.js +0 -3
- package/dist/prisma/commonInputTypes.js.map +0 -1
- package/dist/prisma/enums.d.ts +0 -1
- package/dist/prisma/enums.js +0 -3
- package/dist/prisma/enums.js.map +0 -1
- package/dist/prisma/internal/class.d.ts +0 -38
- package/dist/prisma/internal/class.js +0 -66
- package/dist/prisma/internal/class.js.map +0 -1
- package/dist/prisma/internal/prismaNamespace.d.ts +0 -462
- package/dist/prisma/internal/prismaNamespace.js +0 -113
- package/dist/prisma/internal/prismaNamespace.js.map +0 -1
- package/dist/prisma/internal/prismaNamespaceBrowser.d.ts +0 -71
- package/dist/prisma/internal/prismaNamespaceBrowser.js +0 -97
- package/dist/prisma/internal/prismaNamespaceBrowser.js.map +0 -1
- package/dist/prisma/models/processes.d.ts +0 -503
- package/dist/prisma/models/processes.js +0 -3
- package/dist/prisma/models/processes.js.map +0 -1
- package/dist/prisma/models/tasks.d.ts +0 -747
- package/dist/prisma/models/tasks.js +0 -3
- package/dist/prisma/models/tasks.js.map +0 -1
- package/dist/prisma/models.d.ts +0 -3
- package/dist/prisma/models.js +0 -3
- package/dist/prisma/models.js.map +0 -1
- package/dist/src/index.d.ts +0 -1
- package/dist/src/index.js +0 -18
- package/dist/src/index.js.map +0 -1
|
@@ -3,90 +3,66 @@ import type * as Prisma from "../internal/prismaNamespace.js";
|
|
|
3
3
|
export type tasksModel = runtime.Types.Result.DefaultSelection<Prisma.$tasksPayload>;
|
|
4
4
|
export type AggregateTasks = {
|
|
5
5
|
_count: TasksCountAggregateOutputType | null;
|
|
6
|
-
_avg: TasksAvgAggregateOutputType | null;
|
|
7
|
-
_sum: TasksSumAggregateOutputType | null;
|
|
8
6
|
_min: TasksMinAggregateOutputType | null;
|
|
9
7
|
_max: TasksMaxAggregateOutputType | null;
|
|
10
8
|
};
|
|
11
|
-
export type TasksAvgAggregateOutputType = {
|
|
12
|
-
retries: number | null;
|
|
13
|
-
max_retries: number | null;
|
|
14
|
-
};
|
|
15
|
-
export type TasksSumAggregateOutputType = {
|
|
16
|
-
retries: number | null;
|
|
17
|
-
max_retries: number | null;
|
|
18
|
-
};
|
|
19
9
|
export type TasksMinAggregateOutputType = {
|
|
20
10
|
id: string | null;
|
|
21
11
|
internal_id: string | null;
|
|
22
12
|
handler_id: string | null;
|
|
13
|
+
parent_id: string | null;
|
|
23
14
|
process_id: string | null;
|
|
24
15
|
status: string | null;
|
|
25
|
-
retries: number | null;
|
|
26
|
-
max_retries: number | null;
|
|
27
16
|
timestamp: Date | null;
|
|
28
17
|
};
|
|
29
18
|
export type TasksMaxAggregateOutputType = {
|
|
30
19
|
id: string | null;
|
|
31
20
|
internal_id: string | null;
|
|
32
21
|
handler_id: string | null;
|
|
22
|
+
parent_id: string | null;
|
|
33
23
|
process_id: string | null;
|
|
34
24
|
status: string | null;
|
|
35
|
-
retries: number | null;
|
|
36
|
-
max_retries: number | null;
|
|
37
25
|
timestamp: Date | null;
|
|
38
26
|
};
|
|
39
27
|
export type TasksCountAggregateOutputType = {
|
|
40
28
|
id: number;
|
|
41
29
|
internal_id: number;
|
|
42
30
|
handler_id: number;
|
|
31
|
+
parent_id: number;
|
|
43
32
|
process_id: number;
|
|
44
33
|
result: number;
|
|
45
34
|
status: number;
|
|
46
35
|
error: number;
|
|
47
|
-
retries: number;
|
|
48
|
-
max_retries: number;
|
|
49
36
|
timestamp: number;
|
|
50
37
|
_all: number;
|
|
51
38
|
};
|
|
52
|
-
export type TasksAvgAggregateInputType = {
|
|
53
|
-
retries?: true;
|
|
54
|
-
max_retries?: true;
|
|
55
|
-
};
|
|
56
|
-
export type TasksSumAggregateInputType = {
|
|
57
|
-
retries?: true;
|
|
58
|
-
max_retries?: true;
|
|
59
|
-
};
|
|
60
39
|
export type TasksMinAggregateInputType = {
|
|
61
40
|
id?: true;
|
|
62
41
|
internal_id?: true;
|
|
63
42
|
handler_id?: true;
|
|
43
|
+
parent_id?: true;
|
|
64
44
|
process_id?: true;
|
|
65
45
|
status?: true;
|
|
66
|
-
retries?: true;
|
|
67
|
-
max_retries?: true;
|
|
68
46
|
timestamp?: true;
|
|
69
47
|
};
|
|
70
48
|
export type TasksMaxAggregateInputType = {
|
|
71
49
|
id?: true;
|
|
72
50
|
internal_id?: true;
|
|
73
51
|
handler_id?: true;
|
|
52
|
+
parent_id?: true;
|
|
74
53
|
process_id?: true;
|
|
75
54
|
status?: true;
|
|
76
|
-
retries?: true;
|
|
77
|
-
max_retries?: true;
|
|
78
55
|
timestamp?: true;
|
|
79
56
|
};
|
|
80
57
|
export type TasksCountAggregateInputType = {
|
|
81
58
|
id?: true;
|
|
82
59
|
internal_id?: true;
|
|
83
60
|
handler_id?: true;
|
|
61
|
+
parent_id?: true;
|
|
84
62
|
process_id?: true;
|
|
85
63
|
result?: true;
|
|
86
64
|
status?: true;
|
|
87
65
|
error?: true;
|
|
88
|
-
retries?: true;
|
|
89
|
-
max_retries?: true;
|
|
90
66
|
timestamp?: true;
|
|
91
67
|
_all?: true;
|
|
92
68
|
};
|
|
@@ -97,8 +73,6 @@ export type TasksAggregateArgs<ExtArgs extends runtime.Types.Extensions.Internal
|
|
|
97
73
|
take?: number;
|
|
98
74
|
skip?: number;
|
|
99
75
|
_count?: true | TasksCountAggregateInputType;
|
|
100
|
-
_avg?: TasksAvgAggregateInputType;
|
|
101
|
-
_sum?: TasksSumAggregateInputType;
|
|
102
76
|
_min?: TasksMinAggregateInputType;
|
|
103
77
|
_max?: TasksMaxAggregateInputType;
|
|
104
78
|
};
|
|
@@ -113,8 +87,6 @@ export type tasksGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalAr
|
|
|
113
87
|
take?: number;
|
|
114
88
|
skip?: number;
|
|
115
89
|
_count?: TasksCountAggregateInputType | true;
|
|
116
|
-
_avg?: TasksAvgAggregateInputType;
|
|
117
|
-
_sum?: TasksSumAggregateInputType;
|
|
118
90
|
_min?: TasksMinAggregateInputType;
|
|
119
91
|
_max?: TasksMaxAggregateInputType;
|
|
120
92
|
};
|
|
@@ -122,16 +94,13 @@ export type TasksGroupByOutputType = {
|
|
|
122
94
|
id: string;
|
|
123
95
|
internal_id: string;
|
|
124
96
|
handler_id: string;
|
|
97
|
+
parent_id: string | null;
|
|
125
98
|
process_id: string;
|
|
126
99
|
result: runtime.JsonValue | null;
|
|
127
100
|
status: string;
|
|
128
101
|
error: runtime.JsonValue | null;
|
|
129
|
-
retries: number;
|
|
130
|
-
max_retries: number;
|
|
131
102
|
timestamp: Date;
|
|
132
103
|
_count: TasksCountAggregateOutputType | null;
|
|
133
|
-
_avg: TasksAvgAggregateOutputType | null;
|
|
134
|
-
_sum: TasksSumAggregateOutputType | null;
|
|
135
104
|
_min: TasksMinAggregateOutputType | null;
|
|
136
105
|
_max: TasksMaxAggregateOutputType | null;
|
|
137
106
|
};
|
|
@@ -145,12 +114,11 @@ export type tasksWhereInput = {
|
|
|
145
114
|
id?: Prisma.UuidFilter<"tasks"> | string;
|
|
146
115
|
internal_id?: Prisma.StringFilter<"tasks"> | string;
|
|
147
116
|
handler_id?: Prisma.StringFilter<"tasks"> | string;
|
|
117
|
+
parent_id?: Prisma.StringNullableFilter<"tasks"> | string | null;
|
|
148
118
|
process_id?: Prisma.UuidFilter<"tasks"> | string;
|
|
149
119
|
result?: Prisma.JsonNullableFilter<"tasks">;
|
|
150
120
|
status?: Prisma.StringFilter<"tasks"> | string;
|
|
151
121
|
error?: Prisma.JsonNullableFilter<"tasks">;
|
|
152
|
-
retries?: Prisma.IntFilter<"tasks"> | number;
|
|
153
|
-
max_retries?: Prisma.IntFilter<"tasks"> | number;
|
|
154
122
|
timestamp?: Prisma.DateTimeFilter<"tasks"> | Date | string;
|
|
155
123
|
processes?: Prisma.XOR<Prisma.ProcessesScalarRelationFilter, Prisma.processesWhereInput>;
|
|
156
124
|
};
|
|
@@ -158,12 +126,11 @@ export type tasksOrderByWithRelationInput = {
|
|
|
158
126
|
id?: Prisma.SortOrder;
|
|
159
127
|
internal_id?: Prisma.SortOrder;
|
|
160
128
|
handler_id?: Prisma.SortOrder;
|
|
129
|
+
parent_id?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
161
130
|
process_id?: Prisma.SortOrder;
|
|
162
131
|
result?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
163
132
|
status?: Prisma.SortOrder;
|
|
164
133
|
error?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
165
|
-
retries?: Prisma.SortOrder;
|
|
166
|
-
max_retries?: Prisma.SortOrder;
|
|
167
134
|
timestamp?: Prisma.SortOrder;
|
|
168
135
|
processes?: Prisma.processesOrderByWithRelationInput;
|
|
169
136
|
};
|
|
@@ -174,12 +141,11 @@ export type tasksWhereUniqueInput = Prisma.AtLeast<{
|
|
|
174
141
|
NOT?: Prisma.tasksWhereInput | Prisma.tasksWhereInput[];
|
|
175
142
|
internal_id?: Prisma.StringFilter<"tasks"> | string;
|
|
176
143
|
handler_id?: Prisma.StringFilter<"tasks"> | string;
|
|
144
|
+
parent_id?: Prisma.StringNullableFilter<"tasks"> | string | null;
|
|
177
145
|
process_id?: Prisma.UuidFilter<"tasks"> | string;
|
|
178
146
|
result?: Prisma.JsonNullableFilter<"tasks">;
|
|
179
147
|
status?: Prisma.StringFilter<"tasks"> | string;
|
|
180
148
|
error?: Prisma.JsonNullableFilter<"tasks">;
|
|
181
|
-
retries?: Prisma.IntFilter<"tasks"> | number;
|
|
182
|
-
max_retries?: Prisma.IntFilter<"tasks"> | number;
|
|
183
149
|
timestamp?: Prisma.DateTimeFilter<"tasks"> | Date | string;
|
|
184
150
|
processes?: Prisma.XOR<Prisma.ProcessesScalarRelationFilter, Prisma.processesWhereInput>;
|
|
185
151
|
}, "id">;
|
|
@@ -187,18 +153,15 @@ export type tasksOrderByWithAggregationInput = {
|
|
|
187
153
|
id?: Prisma.SortOrder;
|
|
188
154
|
internal_id?: Prisma.SortOrder;
|
|
189
155
|
handler_id?: Prisma.SortOrder;
|
|
156
|
+
parent_id?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
190
157
|
process_id?: Prisma.SortOrder;
|
|
191
158
|
result?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
192
159
|
status?: Prisma.SortOrder;
|
|
193
160
|
error?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
194
|
-
retries?: Prisma.SortOrder;
|
|
195
|
-
max_retries?: Prisma.SortOrder;
|
|
196
161
|
timestamp?: Prisma.SortOrder;
|
|
197
162
|
_count?: Prisma.tasksCountOrderByAggregateInput;
|
|
198
|
-
_avg?: Prisma.tasksAvgOrderByAggregateInput;
|
|
199
163
|
_max?: Prisma.tasksMaxOrderByAggregateInput;
|
|
200
164
|
_min?: Prisma.tasksMinOrderByAggregateInput;
|
|
201
|
-
_sum?: Prisma.tasksSumOrderByAggregateInput;
|
|
202
165
|
};
|
|
203
166
|
export type tasksScalarWhereWithAggregatesInput = {
|
|
204
167
|
AND?: Prisma.tasksScalarWhereWithAggregatesInput | Prisma.tasksScalarWhereWithAggregatesInput[];
|
|
@@ -207,23 +170,21 @@ export type tasksScalarWhereWithAggregatesInput = {
|
|
|
207
170
|
id?: Prisma.UuidWithAggregatesFilter<"tasks"> | string;
|
|
208
171
|
internal_id?: Prisma.StringWithAggregatesFilter<"tasks"> | string;
|
|
209
172
|
handler_id?: Prisma.StringWithAggregatesFilter<"tasks"> | string;
|
|
173
|
+
parent_id?: Prisma.StringNullableWithAggregatesFilter<"tasks"> | string | null;
|
|
210
174
|
process_id?: Prisma.UuidWithAggregatesFilter<"tasks"> | string;
|
|
211
175
|
result?: Prisma.JsonNullableWithAggregatesFilter<"tasks">;
|
|
212
176
|
status?: Prisma.StringWithAggregatesFilter<"tasks"> | string;
|
|
213
177
|
error?: Prisma.JsonNullableWithAggregatesFilter<"tasks">;
|
|
214
|
-
retries?: Prisma.IntWithAggregatesFilter<"tasks"> | number;
|
|
215
|
-
max_retries?: Prisma.IntWithAggregatesFilter<"tasks"> | number;
|
|
216
178
|
timestamp?: Prisma.DateTimeWithAggregatesFilter<"tasks"> | Date | string;
|
|
217
179
|
};
|
|
218
180
|
export type tasksCreateInput = {
|
|
219
181
|
id?: string;
|
|
220
182
|
internal_id: string;
|
|
221
183
|
handler_id: string;
|
|
184
|
+
parent_id?: string | null;
|
|
222
185
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
223
186
|
status?: string;
|
|
224
187
|
error?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
225
|
-
retries?: number;
|
|
226
|
-
max_retries: number;
|
|
227
188
|
timestamp?: Date | string;
|
|
228
189
|
processes: Prisma.processesCreateNestedOneWithoutTasksInput;
|
|
229
190
|
};
|
|
@@ -231,23 +192,21 @@ export type tasksUncheckedCreateInput = {
|
|
|
231
192
|
id?: string;
|
|
232
193
|
internal_id: string;
|
|
233
194
|
handler_id: string;
|
|
195
|
+
parent_id?: string | null;
|
|
234
196
|
process_id: string;
|
|
235
197
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
236
198
|
status?: string;
|
|
237
199
|
error?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
238
|
-
retries?: number;
|
|
239
|
-
max_retries: number;
|
|
240
200
|
timestamp?: Date | string;
|
|
241
201
|
};
|
|
242
202
|
export type tasksUpdateInput = {
|
|
243
203
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
244
204
|
internal_id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
245
205
|
handler_id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
206
|
+
parent_id?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
246
207
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
247
208
|
status?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
248
209
|
error?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
249
|
-
retries?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
250
|
-
max_retries?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
251
210
|
timestamp?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
252
211
|
processes?: Prisma.processesUpdateOneRequiredWithoutTasksNestedInput;
|
|
253
212
|
};
|
|
@@ -255,47 +214,43 @@ export type tasksUncheckedUpdateInput = {
|
|
|
255
214
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
256
215
|
internal_id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
257
216
|
handler_id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
217
|
+
parent_id?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
258
218
|
process_id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
259
219
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
260
220
|
status?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
261
221
|
error?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
262
|
-
retries?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
263
|
-
max_retries?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
264
222
|
timestamp?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
265
223
|
};
|
|
266
224
|
export type tasksCreateManyInput = {
|
|
267
225
|
id?: string;
|
|
268
226
|
internal_id: string;
|
|
269
227
|
handler_id: string;
|
|
228
|
+
parent_id?: string | null;
|
|
270
229
|
process_id: string;
|
|
271
230
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
272
231
|
status?: string;
|
|
273
232
|
error?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
274
|
-
retries?: number;
|
|
275
|
-
max_retries: number;
|
|
276
233
|
timestamp?: Date | string;
|
|
277
234
|
};
|
|
278
235
|
export type tasksUpdateManyMutationInput = {
|
|
279
236
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
280
237
|
internal_id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
281
238
|
handler_id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
239
|
+
parent_id?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
282
240
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
283
241
|
status?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
284
242
|
error?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
285
|
-
retries?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
286
|
-
max_retries?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
287
243
|
timestamp?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
288
244
|
};
|
|
289
245
|
export type tasksUncheckedUpdateManyInput = {
|
|
290
246
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
291
247
|
internal_id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
292
248
|
handler_id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
249
|
+
parent_id?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
293
250
|
process_id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
294
251
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
295
252
|
status?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
296
253
|
error?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
297
|
-
retries?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
298
|
-
max_retries?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
299
254
|
timestamp?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
300
255
|
};
|
|
301
256
|
export type TasksListRelationFilter = {
|
|
@@ -310,42 +265,31 @@ export type tasksCountOrderByAggregateInput = {
|
|
|
310
265
|
id?: Prisma.SortOrder;
|
|
311
266
|
internal_id?: Prisma.SortOrder;
|
|
312
267
|
handler_id?: Prisma.SortOrder;
|
|
268
|
+
parent_id?: Prisma.SortOrder;
|
|
313
269
|
process_id?: Prisma.SortOrder;
|
|
314
270
|
result?: Prisma.SortOrder;
|
|
315
271
|
status?: Prisma.SortOrder;
|
|
316
272
|
error?: Prisma.SortOrder;
|
|
317
|
-
retries?: Prisma.SortOrder;
|
|
318
|
-
max_retries?: Prisma.SortOrder;
|
|
319
273
|
timestamp?: Prisma.SortOrder;
|
|
320
274
|
};
|
|
321
|
-
export type tasksAvgOrderByAggregateInput = {
|
|
322
|
-
retries?: Prisma.SortOrder;
|
|
323
|
-
max_retries?: Prisma.SortOrder;
|
|
324
|
-
};
|
|
325
275
|
export type tasksMaxOrderByAggregateInput = {
|
|
326
276
|
id?: Prisma.SortOrder;
|
|
327
277
|
internal_id?: Prisma.SortOrder;
|
|
328
278
|
handler_id?: Prisma.SortOrder;
|
|
279
|
+
parent_id?: Prisma.SortOrder;
|
|
329
280
|
process_id?: Prisma.SortOrder;
|
|
330
281
|
status?: Prisma.SortOrder;
|
|
331
|
-
retries?: Prisma.SortOrder;
|
|
332
|
-
max_retries?: Prisma.SortOrder;
|
|
333
282
|
timestamp?: Prisma.SortOrder;
|
|
334
283
|
};
|
|
335
284
|
export type tasksMinOrderByAggregateInput = {
|
|
336
285
|
id?: Prisma.SortOrder;
|
|
337
286
|
internal_id?: Prisma.SortOrder;
|
|
338
287
|
handler_id?: Prisma.SortOrder;
|
|
288
|
+
parent_id?: Prisma.SortOrder;
|
|
339
289
|
process_id?: Prisma.SortOrder;
|
|
340
290
|
status?: Prisma.SortOrder;
|
|
341
|
-
retries?: Prisma.SortOrder;
|
|
342
|
-
max_retries?: Prisma.SortOrder;
|
|
343
291
|
timestamp?: Prisma.SortOrder;
|
|
344
292
|
};
|
|
345
|
-
export type tasksSumOrderByAggregateInput = {
|
|
346
|
-
retries?: Prisma.SortOrder;
|
|
347
|
-
max_retries?: Prisma.SortOrder;
|
|
348
|
-
};
|
|
349
293
|
export type tasksCreateNestedManyWithoutProcessesInput = {
|
|
350
294
|
create?: Prisma.XOR<Prisma.tasksCreateWithoutProcessesInput, Prisma.tasksUncheckedCreateWithoutProcessesInput> | Prisma.tasksCreateWithoutProcessesInput[] | Prisma.tasksUncheckedCreateWithoutProcessesInput[];
|
|
351
295
|
connectOrCreate?: Prisma.tasksCreateOrConnectWithoutProcessesInput | Prisma.tasksCreateOrConnectWithoutProcessesInput[];
|
|
@@ -384,33 +328,27 @@ export type tasksUncheckedUpdateManyWithoutProcessesNestedInput = {
|
|
|
384
328
|
updateMany?: Prisma.tasksUpdateManyWithWhereWithoutProcessesInput | Prisma.tasksUpdateManyWithWhereWithoutProcessesInput[];
|
|
385
329
|
deleteMany?: Prisma.tasksScalarWhereInput | Prisma.tasksScalarWhereInput[];
|
|
386
330
|
};
|
|
387
|
-
export type
|
|
388
|
-
set?:
|
|
389
|
-
increment?: number;
|
|
390
|
-
decrement?: number;
|
|
391
|
-
multiply?: number;
|
|
392
|
-
divide?: number;
|
|
331
|
+
export type NullableStringFieldUpdateOperationsInput = {
|
|
332
|
+
set?: string | null;
|
|
393
333
|
};
|
|
394
334
|
export type tasksCreateWithoutProcessesInput = {
|
|
395
335
|
id?: string;
|
|
396
336
|
internal_id: string;
|
|
397
337
|
handler_id: string;
|
|
338
|
+
parent_id?: string | null;
|
|
398
339
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
399
340
|
status?: string;
|
|
400
341
|
error?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
401
|
-
retries?: number;
|
|
402
|
-
max_retries: number;
|
|
403
342
|
timestamp?: Date | string;
|
|
404
343
|
};
|
|
405
344
|
export type tasksUncheckedCreateWithoutProcessesInput = {
|
|
406
345
|
id?: string;
|
|
407
346
|
internal_id: string;
|
|
408
347
|
handler_id: string;
|
|
348
|
+
parent_id?: string | null;
|
|
409
349
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
410
350
|
status?: string;
|
|
411
351
|
error?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
412
|
-
retries?: number;
|
|
413
|
-
max_retries: number;
|
|
414
352
|
timestamp?: Date | string;
|
|
415
353
|
};
|
|
416
354
|
export type tasksCreateOrConnectWithoutProcessesInput = {
|
|
@@ -441,68 +379,62 @@ export type tasksScalarWhereInput = {
|
|
|
441
379
|
id?: Prisma.UuidFilter<"tasks"> | string;
|
|
442
380
|
internal_id?: Prisma.StringFilter<"tasks"> | string;
|
|
443
381
|
handler_id?: Prisma.StringFilter<"tasks"> | string;
|
|
382
|
+
parent_id?: Prisma.StringNullableFilter<"tasks"> | string | null;
|
|
444
383
|
process_id?: Prisma.UuidFilter<"tasks"> | string;
|
|
445
384
|
result?: Prisma.JsonNullableFilter<"tasks">;
|
|
446
385
|
status?: Prisma.StringFilter<"tasks"> | string;
|
|
447
386
|
error?: Prisma.JsonNullableFilter<"tasks">;
|
|
448
|
-
retries?: Prisma.IntFilter<"tasks"> | number;
|
|
449
|
-
max_retries?: Prisma.IntFilter<"tasks"> | number;
|
|
450
387
|
timestamp?: Prisma.DateTimeFilter<"tasks"> | Date | string;
|
|
451
388
|
};
|
|
452
389
|
export type tasksCreateManyProcessesInput = {
|
|
453
390
|
id?: string;
|
|
454
391
|
internal_id: string;
|
|
455
392
|
handler_id: string;
|
|
393
|
+
parent_id?: string | null;
|
|
456
394
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
457
395
|
status?: string;
|
|
458
396
|
error?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
459
|
-
retries?: number;
|
|
460
|
-
max_retries: number;
|
|
461
397
|
timestamp?: Date | string;
|
|
462
398
|
};
|
|
463
399
|
export type tasksUpdateWithoutProcessesInput = {
|
|
464
400
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
465
401
|
internal_id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
466
402
|
handler_id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
403
|
+
parent_id?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
467
404
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
468
405
|
status?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
469
406
|
error?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
470
|
-
retries?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
471
|
-
max_retries?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
472
407
|
timestamp?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
473
408
|
};
|
|
474
409
|
export type tasksUncheckedUpdateWithoutProcessesInput = {
|
|
475
410
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
476
411
|
internal_id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
477
412
|
handler_id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
413
|
+
parent_id?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
478
414
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
479
415
|
status?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
480
416
|
error?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
481
|
-
retries?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
482
|
-
max_retries?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
483
417
|
timestamp?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
484
418
|
};
|
|
485
419
|
export type tasksUncheckedUpdateManyWithoutProcessesInput = {
|
|
486
420
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
487
421
|
internal_id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
488
422
|
handler_id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
423
|
+
parent_id?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
489
424
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
490
425
|
status?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
491
426
|
error?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
492
|
-
retries?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
493
|
-
max_retries?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
494
427
|
timestamp?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
495
428
|
};
|
|
496
429
|
export type tasksSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
497
430
|
id?: boolean;
|
|
498
431
|
internal_id?: boolean;
|
|
499
432
|
handler_id?: boolean;
|
|
433
|
+
parent_id?: boolean;
|
|
500
434
|
process_id?: boolean;
|
|
501
435
|
result?: boolean;
|
|
502
436
|
status?: boolean;
|
|
503
437
|
error?: boolean;
|
|
504
|
-
retries?: boolean;
|
|
505
|
-
max_retries?: boolean;
|
|
506
438
|
timestamp?: boolean;
|
|
507
439
|
processes?: boolean | Prisma.processesDefaultArgs<ExtArgs>;
|
|
508
440
|
}, ExtArgs["result"]["tasks"]>;
|
|
@@ -510,12 +442,11 @@ export type tasksSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensi
|
|
|
510
442
|
id?: boolean;
|
|
511
443
|
internal_id?: boolean;
|
|
512
444
|
handler_id?: boolean;
|
|
445
|
+
parent_id?: boolean;
|
|
513
446
|
process_id?: boolean;
|
|
514
447
|
result?: boolean;
|
|
515
448
|
status?: boolean;
|
|
516
449
|
error?: boolean;
|
|
517
|
-
retries?: boolean;
|
|
518
|
-
max_retries?: boolean;
|
|
519
450
|
timestamp?: boolean;
|
|
520
451
|
processes?: boolean | Prisma.processesDefaultArgs<ExtArgs>;
|
|
521
452
|
}, ExtArgs["result"]["tasks"]>;
|
|
@@ -523,12 +454,11 @@ export type tasksSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensi
|
|
|
523
454
|
id?: boolean;
|
|
524
455
|
internal_id?: boolean;
|
|
525
456
|
handler_id?: boolean;
|
|
457
|
+
parent_id?: boolean;
|
|
526
458
|
process_id?: boolean;
|
|
527
459
|
result?: boolean;
|
|
528
460
|
status?: boolean;
|
|
529
461
|
error?: boolean;
|
|
530
|
-
retries?: boolean;
|
|
531
|
-
max_retries?: boolean;
|
|
532
462
|
timestamp?: boolean;
|
|
533
463
|
processes?: boolean | Prisma.processesDefaultArgs<ExtArgs>;
|
|
534
464
|
}, ExtArgs["result"]["tasks"]>;
|
|
@@ -536,15 +466,14 @@ export type tasksSelectScalar = {
|
|
|
536
466
|
id?: boolean;
|
|
537
467
|
internal_id?: boolean;
|
|
538
468
|
handler_id?: boolean;
|
|
469
|
+
parent_id?: boolean;
|
|
539
470
|
process_id?: boolean;
|
|
540
471
|
result?: boolean;
|
|
541
472
|
status?: boolean;
|
|
542
473
|
error?: boolean;
|
|
543
|
-
retries?: boolean;
|
|
544
|
-
max_retries?: boolean;
|
|
545
474
|
timestamp?: boolean;
|
|
546
475
|
};
|
|
547
|
-
export type tasksOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "internal_id" | "handler_id" | "
|
|
476
|
+
export type tasksOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "internal_id" | "handler_id" | "parent_id" | "process_id" | "result" | "status" | "error" | "timestamp", ExtArgs["result"]["tasks"]>;
|
|
548
477
|
export type tasksInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
549
478
|
processes?: boolean | Prisma.processesDefaultArgs<ExtArgs>;
|
|
550
479
|
};
|
|
@@ -563,12 +492,11 @@ export type $tasksPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
563
492
|
id: string;
|
|
564
493
|
internal_id: string;
|
|
565
494
|
handler_id: string;
|
|
495
|
+
parent_id: string | null;
|
|
566
496
|
process_id: string;
|
|
567
497
|
result: runtime.JsonValue | null;
|
|
568
498
|
status: string;
|
|
569
499
|
error: runtime.JsonValue | null;
|
|
570
|
-
retries: number;
|
|
571
|
-
max_retries: number;
|
|
572
500
|
timestamp: Date;
|
|
573
501
|
}, ExtArgs["result"]["tasks"]>;
|
|
574
502
|
composites: {};
|
|
@@ -631,12 +559,11 @@ export interface tasksFieldRefs {
|
|
|
631
559
|
readonly id: Prisma.FieldRef<"tasks", 'String'>;
|
|
632
560
|
readonly internal_id: Prisma.FieldRef<"tasks", 'String'>;
|
|
633
561
|
readonly handler_id: Prisma.FieldRef<"tasks", 'String'>;
|
|
562
|
+
readonly parent_id: Prisma.FieldRef<"tasks", 'String'>;
|
|
634
563
|
readonly process_id: Prisma.FieldRef<"tasks", 'String'>;
|
|
635
564
|
readonly result: Prisma.FieldRef<"tasks", 'Json'>;
|
|
636
565
|
readonly status: Prisma.FieldRef<"tasks", 'String'>;
|
|
637
566
|
readonly error: Prisma.FieldRef<"tasks", 'Json'>;
|
|
638
|
-
readonly retries: Prisma.FieldRef<"tasks", 'Int'>;
|
|
639
|
-
readonly max_retries: Prisma.FieldRef<"tasks", 'Int'>;
|
|
640
567
|
readonly timestamp: Prisma.FieldRef<"tasks", 'DateTime'>;
|
|
641
568
|
}
|
|
642
569
|
export type tasksFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|