@betterinternship/db 1.1.1 → 1.1.3
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/src/db/index.d.ts +5 -5
- package/dist/src/prisma/browser.d.ts +6 -0
- package/dist/src/prisma/browser.js +5 -0
- package/dist/src/prisma/browser.js.map +1 -0
- package/dist/src/prisma/client.js +9 -48
- package/dist/src/prisma/client.js.map +1 -1
- package/dist/src/prisma/commonInputTypes.d.ts +47 -47
- package/dist/src/prisma/commonInputTypes.js +1 -2
- package/dist/src/prisma/enums.js +1 -2
- package/dist/src/prisma/internal/class.js +4 -40
- package/dist/src/prisma/internal/class.js.map +1 -1
- package/dist/src/prisma/internal/prismaNamespace.d.ts +2 -0
- package/dist/src/prisma/internal/prismaNamespace.js +35 -69
- package/dist/src/prisma/internal/prismaNamespace.js.map +1 -1
- package/dist/src/prisma/internal/prismaNamespaceBrowser.d.ts +73 -0
- package/dist/src/prisma/internal/prismaNamespaceBrowser.js +63 -0
- package/dist/src/prisma/internal/prismaNamespaceBrowser.js.map +1 -0
- package/dist/src/prisma/models/processes.d.ts +34 -2
- package/dist/src/prisma/models/processes.js +1 -2
- package/dist/src/prisma/models/tasks.d.ts +36 -1
- package/dist/src/prisma/models/tasks.js +1 -2
- package/dist/src/prisma/models.js +1 -2
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/dist/prisma/browser.ts +0 -29
- package/dist/prisma/client.d.ts +0 -1
- package/dist/prisma/client.js +0 -5
- package/dist/prisma/client.ts +0 -51
- package/dist/prisma/commonInputTypes.ts +0 -349
- package/dist/prisma/default.d.ts +0 -1
- package/dist/prisma/default.js +0 -5
- package/dist/prisma/edge.d.ts +0 -1
- package/dist/prisma/edge.js +0 -175
- package/dist/prisma/enums.ts +0 -15
- package/dist/prisma/index-browser.js +0 -205
- package/dist/prisma/index.d.ts +0 -4237
- package/dist/prisma/index.js +0 -175
- package/dist/prisma/internal/class.ts +0 -202
- package/dist/prisma/internal/prismaNamespace.ts +0 -883
- package/dist/prisma/internal/prismaNamespaceBrowser.ts +0 -140
- package/dist/prisma/models/processes.ts +0 -1318
- package/dist/prisma/models/tasks.ts +0 -1507
- package/dist/prisma/models.ts +0 -13
- package/dist/prisma/package.json +0 -144
- package/dist/prisma/query_compiler_fast_bg.js +0 -2
- package/dist/prisma/query_compiler_fast_bg.wasm +0 -0
- package/dist/prisma/query_compiler_fast_bg.wasm-base64.js +0 -2
- package/dist/prisma/runtime/client.d.ts +0 -3304
- package/dist/prisma/runtime/client.js +0 -86
- package/dist/prisma/runtime/index-browser.d.ts +0 -87
- package/dist/prisma/runtime/index-browser.js +0 -6
- package/dist/prisma/runtime/wasm-compiler-edge.js +0 -76
- package/dist/prisma/schema.prisma +0 -34
- package/dist/prisma/wasm-edge-light-loader.mjs +0 -5
- package/dist/prisma/wasm-worker-loader.mjs +0 -5
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import * as runtime from "@prisma/client/runtime/index-browser";
|
|
2
|
+
export const Decimal = runtime.Decimal;
|
|
3
|
+
export const NullTypes = {
|
|
4
|
+
DbNull: runtime.NullTypes.DbNull,
|
|
5
|
+
JsonNull: runtime.NullTypes.JsonNull,
|
|
6
|
+
AnyNull: runtime.NullTypes.AnyNull,
|
|
7
|
+
};
|
|
8
|
+
export const DbNull = runtime.DbNull;
|
|
9
|
+
export const JsonNull = runtime.JsonNull;
|
|
10
|
+
export const AnyNull = runtime.AnyNull;
|
|
11
|
+
export const ModelName = {
|
|
12
|
+
processes: 'processes',
|
|
13
|
+
tasks: 'tasks'
|
|
14
|
+
};
|
|
15
|
+
export const TransactionIsolationLevel = runtime.makeStrictEnum({
|
|
16
|
+
ReadUncommitted: 'ReadUncommitted',
|
|
17
|
+
ReadCommitted: 'ReadCommitted',
|
|
18
|
+
RepeatableRead: 'RepeatableRead',
|
|
19
|
+
Serializable: 'Serializable'
|
|
20
|
+
});
|
|
21
|
+
export const ProcessesScalarFieldEnum = {
|
|
22
|
+
id: 'id',
|
|
23
|
+
name: 'name',
|
|
24
|
+
result: 'result',
|
|
25
|
+
status: 'status',
|
|
26
|
+
error: 'error',
|
|
27
|
+
timestamp: 'timestamp'
|
|
28
|
+
};
|
|
29
|
+
export const TasksScalarFieldEnum = {
|
|
30
|
+
id: 'id',
|
|
31
|
+
internal_id: 'internal_id',
|
|
32
|
+
handler_id: 'handler_id',
|
|
33
|
+
parent_id: 'parent_id',
|
|
34
|
+
process_id: 'process_id',
|
|
35
|
+
process_name: 'process_name',
|
|
36
|
+
inputs: 'inputs',
|
|
37
|
+
result: 'result',
|
|
38
|
+
status: 'status',
|
|
39
|
+
error: 'error',
|
|
40
|
+
timestamp: 'timestamp'
|
|
41
|
+
};
|
|
42
|
+
export const SortOrder = {
|
|
43
|
+
asc: 'asc',
|
|
44
|
+
desc: 'desc'
|
|
45
|
+
};
|
|
46
|
+
export const NullableJsonNullValueInput = {
|
|
47
|
+
DbNull: DbNull,
|
|
48
|
+
JsonNull: JsonNull
|
|
49
|
+
};
|
|
50
|
+
export const QueryMode = {
|
|
51
|
+
default: 'default',
|
|
52
|
+
insensitive: 'insensitive'
|
|
53
|
+
};
|
|
54
|
+
export const JsonNullValueFilter = {
|
|
55
|
+
DbNull: DbNull,
|
|
56
|
+
JsonNull: JsonNull,
|
|
57
|
+
AnyNull: AnyNull
|
|
58
|
+
};
|
|
59
|
+
export const NullsOrder = {
|
|
60
|
+
first: 'first',
|
|
61
|
+
last: 'last'
|
|
62
|
+
};
|
|
63
|
+
//# sourceMappingURL=prismaNamespaceBrowser.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"prismaNamespaceBrowser.js","sourceRoot":"","sources":["../../../../src/prisma/internal/prismaNamespaceBrowser.ts"],"names":[],"mappings":"AAiBA,OAAO,KAAK,OAAO,MAAM,sCAAsC,CAAA;AAK/D,MAAM,CAAC,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAA;AAGtC,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,MAAM,EAAE,OAAO,CAAC,SAAS,CAAC,MAAwD;IAClF,QAAQ,EAAE,OAAO,CAAC,SAAS,CAAC,QAA4D;IACxF,OAAO,EAAE,OAAO,CAAC,SAAS,CAAC,OAA0D;CACtF,CAAA;AAMD,MAAM,CAAC,MAAM,MAAM,GAAG,OAAO,CAAC,MAAM,CAAA;AAOpC,MAAM,CAAC,MAAM,QAAQ,GAAG,OAAO,CAAC,QAAQ,CAAA;AAOxC,MAAM,CAAC,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAA;AAGtC,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,SAAS,EAAE,WAAW;IACtB,KAAK,EAAE,OAAO;CACN,CAAA;AAQV,MAAM,CAAC,MAAM,yBAAyB,GAAG,OAAO,CAAC,cAAc,CAAC;IAC9D,eAAe,EAAE,iBAAiB;IAClC,aAAa,EAAE,eAAe;IAC9B,cAAc,EAAE,gBAAgB;IAChC,YAAY,EAAE,cAAc;CACpB,CAAC,CAAA;AAKX,MAAM,CAAC,MAAM,wBAAwB,GAAG;IACtC,EAAE,EAAE,IAAI;IACR,IAAI,EAAE,MAAM;IACZ,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,KAAK,EAAE,OAAO;IACd,SAAS,EAAE,WAAW;CACd,CAAA;AAKV,MAAM,CAAC,MAAM,oBAAoB,GAAG;IAClC,EAAE,EAAE,IAAI;IACR,WAAW,EAAE,aAAa;IAC1B,UAAU,EAAE,YAAY;IACxB,SAAS,EAAE,WAAW;IACtB,UAAU,EAAE,YAAY;IACxB,YAAY,EAAE,cAAc;IAC5B,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,KAAK,EAAE,OAAO;IACd,SAAS,EAAE,WAAW;CACd,CAAA;AAKV,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,GAAG,EAAE,KAAK;IACV,IAAI,EAAE,MAAM;CACJ,CAAA;AAKV,MAAM,CAAC,MAAM,0BAA0B,GAAG;IACxC,MAAM,EAAE,MAAM;IACd,QAAQ,EAAE,QAAQ;CACV,CAAA;AAKV,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,OAAO,EAAE,SAAS;IAClB,WAAW,EAAE,aAAa;CAClB,CAAA;AAKV,MAAM,CAAC,MAAM,mBAAmB,GAAG;IACjC,MAAM,EAAE,MAAM;IACd,QAAQ,EAAE,QAAQ;IAClB,OAAO,EAAE,OAAO;CACR,CAAA;AAKV,MAAM,CAAC,MAAM,UAAU,GAAG;IACxB,KAAK,EAAE,OAAO;IACd,IAAI,EAAE,MAAM;CACJ,CAAA"}
|
|
@@ -8,16 +8,19 @@ export type AggregateProcesses = {
|
|
|
8
8
|
};
|
|
9
9
|
export type ProcessesMinAggregateOutputType = {
|
|
10
10
|
id: string | null;
|
|
11
|
+
name: string | null;
|
|
11
12
|
status: string | null;
|
|
12
13
|
timestamp: Date | null;
|
|
13
14
|
};
|
|
14
15
|
export type ProcessesMaxAggregateOutputType = {
|
|
15
16
|
id: string | null;
|
|
17
|
+
name: string | null;
|
|
16
18
|
status: string | null;
|
|
17
19
|
timestamp: Date | null;
|
|
18
20
|
};
|
|
19
21
|
export type ProcessesCountAggregateOutputType = {
|
|
20
22
|
id: number;
|
|
23
|
+
name: number;
|
|
21
24
|
result: number;
|
|
22
25
|
status: number;
|
|
23
26
|
error: number;
|
|
@@ -26,16 +29,19 @@ export type ProcessesCountAggregateOutputType = {
|
|
|
26
29
|
};
|
|
27
30
|
export type ProcessesMinAggregateInputType = {
|
|
28
31
|
id?: true;
|
|
32
|
+
name?: true;
|
|
29
33
|
status?: true;
|
|
30
34
|
timestamp?: true;
|
|
31
35
|
};
|
|
32
36
|
export type ProcessesMaxAggregateInputType = {
|
|
33
37
|
id?: true;
|
|
38
|
+
name?: true;
|
|
34
39
|
status?: true;
|
|
35
40
|
timestamp?: true;
|
|
36
41
|
};
|
|
37
42
|
export type ProcessesCountAggregateInputType = {
|
|
38
43
|
id?: true;
|
|
44
|
+
name?: true;
|
|
39
45
|
result?: true;
|
|
40
46
|
status?: true;
|
|
41
47
|
error?: true;
|
|
@@ -68,6 +74,7 @@ export type processesGroupByArgs<ExtArgs extends runtime.Types.Extensions.Intern
|
|
|
68
74
|
};
|
|
69
75
|
export type ProcessesGroupByOutputType = {
|
|
70
76
|
id: string;
|
|
77
|
+
name: string;
|
|
71
78
|
result: runtime.JsonValue | null;
|
|
72
79
|
status: string;
|
|
73
80
|
error: runtime.JsonValue | null;
|
|
@@ -84,6 +91,7 @@ export type processesWhereInput = {
|
|
|
84
91
|
OR?: Prisma.processesWhereInput[];
|
|
85
92
|
NOT?: Prisma.processesWhereInput | Prisma.processesWhereInput[];
|
|
86
93
|
id?: Prisma.UuidFilter<"processes"> | string;
|
|
94
|
+
name?: Prisma.StringFilter<"processes"> | string;
|
|
87
95
|
result?: Prisma.JsonNullableFilter<"processes">;
|
|
88
96
|
status?: Prisma.StringFilter<"processes"> | string;
|
|
89
97
|
error?: Prisma.JsonNullableFilter<"processes">;
|
|
@@ -92,6 +100,7 @@ export type processesWhereInput = {
|
|
|
92
100
|
};
|
|
93
101
|
export type processesOrderByWithRelationInput = {
|
|
94
102
|
id?: Prisma.SortOrder;
|
|
103
|
+
name?: Prisma.SortOrder;
|
|
95
104
|
result?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
96
105
|
status?: Prisma.SortOrder;
|
|
97
106
|
error?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
@@ -103,6 +112,7 @@ export type processesWhereUniqueInput = Prisma.AtLeast<{
|
|
|
103
112
|
AND?: Prisma.processesWhereInput | Prisma.processesWhereInput[];
|
|
104
113
|
OR?: Prisma.processesWhereInput[];
|
|
105
114
|
NOT?: Prisma.processesWhereInput | Prisma.processesWhereInput[];
|
|
115
|
+
name?: Prisma.StringFilter<"processes"> | string;
|
|
106
116
|
result?: Prisma.JsonNullableFilter<"processes">;
|
|
107
117
|
status?: Prisma.StringFilter<"processes"> | string;
|
|
108
118
|
error?: Prisma.JsonNullableFilter<"processes">;
|
|
@@ -111,6 +121,7 @@ export type processesWhereUniqueInput = Prisma.AtLeast<{
|
|
|
111
121
|
}, "id">;
|
|
112
122
|
export type processesOrderByWithAggregationInput = {
|
|
113
123
|
id?: Prisma.SortOrder;
|
|
124
|
+
name?: Prisma.SortOrder;
|
|
114
125
|
result?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
115
126
|
status?: Prisma.SortOrder;
|
|
116
127
|
error?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
@@ -124,6 +135,7 @@ export type processesScalarWhereWithAggregatesInput = {
|
|
|
124
135
|
OR?: Prisma.processesScalarWhereWithAggregatesInput[];
|
|
125
136
|
NOT?: Prisma.processesScalarWhereWithAggregatesInput | Prisma.processesScalarWhereWithAggregatesInput[];
|
|
126
137
|
id?: Prisma.UuidWithAggregatesFilter<"processes"> | string;
|
|
138
|
+
name?: Prisma.StringWithAggregatesFilter<"processes"> | string;
|
|
127
139
|
result?: Prisma.JsonNullableWithAggregatesFilter<"processes">;
|
|
128
140
|
status?: Prisma.StringWithAggregatesFilter<"processes"> | string;
|
|
129
141
|
error?: Prisma.JsonNullableWithAggregatesFilter<"processes">;
|
|
@@ -131,6 +143,7 @@ export type processesScalarWhereWithAggregatesInput = {
|
|
|
131
143
|
};
|
|
132
144
|
export type processesCreateInput = {
|
|
133
145
|
id?: string;
|
|
146
|
+
name: string;
|
|
134
147
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
135
148
|
status?: string;
|
|
136
149
|
error?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
@@ -139,6 +152,7 @@ export type processesCreateInput = {
|
|
|
139
152
|
};
|
|
140
153
|
export type processesUncheckedCreateInput = {
|
|
141
154
|
id?: string;
|
|
155
|
+
name: string;
|
|
142
156
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
143
157
|
status?: string;
|
|
144
158
|
error?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
@@ -147,6 +161,7 @@ export type processesUncheckedCreateInput = {
|
|
|
147
161
|
};
|
|
148
162
|
export type processesUpdateInput = {
|
|
149
163
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
164
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
150
165
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
151
166
|
status?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
152
167
|
error?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
@@ -155,6 +170,7 @@ export type processesUpdateInput = {
|
|
|
155
170
|
};
|
|
156
171
|
export type processesUncheckedUpdateInput = {
|
|
157
172
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
173
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
158
174
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
159
175
|
status?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
160
176
|
error?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
@@ -163,6 +179,7 @@ export type processesUncheckedUpdateInput = {
|
|
|
163
179
|
};
|
|
164
180
|
export type processesCreateManyInput = {
|
|
165
181
|
id?: string;
|
|
182
|
+
name: string;
|
|
166
183
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
167
184
|
status?: string;
|
|
168
185
|
error?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
@@ -170,6 +187,7 @@ export type processesCreateManyInput = {
|
|
|
170
187
|
};
|
|
171
188
|
export type processesUpdateManyMutationInput = {
|
|
172
189
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
190
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
173
191
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
174
192
|
status?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
175
193
|
error?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
@@ -177,6 +195,7 @@ export type processesUpdateManyMutationInput = {
|
|
|
177
195
|
};
|
|
178
196
|
export type processesUncheckedUpdateManyInput = {
|
|
179
197
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
198
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
180
199
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
181
200
|
status?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
182
201
|
error?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
@@ -184,6 +203,7 @@ export type processesUncheckedUpdateManyInput = {
|
|
|
184
203
|
};
|
|
185
204
|
export type processesCountOrderByAggregateInput = {
|
|
186
205
|
id?: Prisma.SortOrder;
|
|
206
|
+
name?: Prisma.SortOrder;
|
|
187
207
|
result?: Prisma.SortOrder;
|
|
188
208
|
status?: Prisma.SortOrder;
|
|
189
209
|
error?: Prisma.SortOrder;
|
|
@@ -191,11 +211,13 @@ export type processesCountOrderByAggregateInput = {
|
|
|
191
211
|
};
|
|
192
212
|
export type processesMaxOrderByAggregateInput = {
|
|
193
213
|
id?: Prisma.SortOrder;
|
|
214
|
+
name?: Prisma.SortOrder;
|
|
194
215
|
status?: Prisma.SortOrder;
|
|
195
216
|
timestamp?: Prisma.SortOrder;
|
|
196
217
|
};
|
|
197
218
|
export type processesMinOrderByAggregateInput = {
|
|
198
219
|
id?: Prisma.SortOrder;
|
|
220
|
+
name?: Prisma.SortOrder;
|
|
199
221
|
status?: Prisma.SortOrder;
|
|
200
222
|
timestamp?: Prisma.SortOrder;
|
|
201
223
|
};
|
|
@@ -223,6 +245,7 @@ export type processesUpdateOneRequiredWithoutTasksNestedInput = {
|
|
|
223
245
|
};
|
|
224
246
|
export type processesCreateWithoutTasksInput = {
|
|
225
247
|
id?: string;
|
|
248
|
+
name: string;
|
|
226
249
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
227
250
|
status?: string;
|
|
228
251
|
error?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
@@ -230,6 +253,7 @@ export type processesCreateWithoutTasksInput = {
|
|
|
230
253
|
};
|
|
231
254
|
export type processesUncheckedCreateWithoutTasksInput = {
|
|
232
255
|
id?: string;
|
|
256
|
+
name: string;
|
|
233
257
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
234
258
|
status?: string;
|
|
235
259
|
error?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
@@ -250,6 +274,7 @@ export type processesUpdateToOneWithWhereWithoutTasksInput = {
|
|
|
250
274
|
};
|
|
251
275
|
export type processesUpdateWithoutTasksInput = {
|
|
252
276
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
277
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
253
278
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
254
279
|
status?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
255
280
|
error?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
@@ -257,6 +282,7 @@ export type processesUpdateWithoutTasksInput = {
|
|
|
257
282
|
};
|
|
258
283
|
export type processesUncheckedUpdateWithoutTasksInput = {
|
|
259
284
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
285
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
260
286
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
261
287
|
status?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
262
288
|
error?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
@@ -276,6 +302,7 @@ export type ProcessesCountOutputTypeCountTasksArgs<ExtArgs extends runtime.Types
|
|
|
276
302
|
};
|
|
277
303
|
export type processesSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
278
304
|
id?: boolean;
|
|
305
|
+
name?: boolean;
|
|
279
306
|
result?: boolean;
|
|
280
307
|
status?: boolean;
|
|
281
308
|
error?: boolean;
|
|
@@ -285,6 +312,7 @@ export type processesSelect<ExtArgs extends runtime.Types.Extensions.InternalArg
|
|
|
285
312
|
}, ExtArgs["result"]["processes"]>;
|
|
286
313
|
export type processesSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
287
314
|
id?: boolean;
|
|
315
|
+
name?: boolean;
|
|
288
316
|
result?: boolean;
|
|
289
317
|
status?: boolean;
|
|
290
318
|
error?: boolean;
|
|
@@ -292,6 +320,7 @@ export type processesSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Ext
|
|
|
292
320
|
}, ExtArgs["result"]["processes"]>;
|
|
293
321
|
export type processesSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
294
322
|
id?: boolean;
|
|
323
|
+
name?: boolean;
|
|
295
324
|
result?: boolean;
|
|
296
325
|
status?: boolean;
|
|
297
326
|
error?: boolean;
|
|
@@ -299,12 +328,13 @@ export type processesSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Ext
|
|
|
299
328
|
}, ExtArgs["result"]["processes"]>;
|
|
300
329
|
export type processesSelectScalar = {
|
|
301
330
|
id?: boolean;
|
|
331
|
+
name?: boolean;
|
|
302
332
|
result?: boolean;
|
|
303
333
|
status?: boolean;
|
|
304
334
|
error?: boolean;
|
|
305
335
|
timestamp?: boolean;
|
|
306
336
|
};
|
|
307
|
-
export type processesOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "result" | "status" | "error" | "timestamp", ExtArgs["result"]["processes"]>;
|
|
337
|
+
export type processesOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "name" | "result" | "status" | "error" | "timestamp", ExtArgs["result"]["processes"]>;
|
|
308
338
|
export type processesInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
309
339
|
tasks?: boolean | Prisma.processes$tasksArgs<ExtArgs>;
|
|
310
340
|
_count?: boolean | Prisma.ProcessesCountOutputTypeDefaultArgs<ExtArgs>;
|
|
@@ -318,6 +348,7 @@ export type $processesPayload<ExtArgs extends runtime.Types.Extensions.InternalA
|
|
|
318
348
|
};
|
|
319
349
|
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
320
350
|
id: string;
|
|
351
|
+
name: string;
|
|
321
352
|
result: runtime.JsonValue | null;
|
|
322
353
|
status: string;
|
|
323
354
|
error: runtime.JsonValue | null;
|
|
@@ -381,6 +412,7 @@ export interface Prisma__processesClient<T, Null = never, ExtArgs extends runtim
|
|
|
381
412
|
}
|
|
382
413
|
export interface processesFieldRefs {
|
|
383
414
|
readonly id: Prisma.FieldRef<"processes", 'String'>;
|
|
415
|
+
readonly name: Prisma.FieldRef<"processes", 'String'>;
|
|
384
416
|
readonly result: Prisma.FieldRef<"processes", 'Json'>;
|
|
385
417
|
readonly status: Prisma.FieldRef<"processes", 'String'>;
|
|
386
418
|
readonly error: Prisma.FieldRef<"processes", 'Json'>;
|
|
@@ -435,7 +467,7 @@ export type processesCreateArgs<ExtArgs extends runtime.Types.Extensions.Interna
|
|
|
435
467
|
select?: Prisma.processesSelect<ExtArgs> | null;
|
|
436
468
|
omit?: Prisma.processesOmit<ExtArgs> | null;
|
|
437
469
|
include?: Prisma.processesInclude<ExtArgs> | null;
|
|
438
|
-
data
|
|
470
|
+
data: Prisma.XOR<Prisma.processesCreateInput, Prisma.processesUncheckedCreateInput>;
|
|
439
471
|
};
|
|
440
472
|
export type processesCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
441
473
|
data: Prisma.processesCreateManyInput | Prisma.processesCreateManyInput[];
|
|
@@ -12,6 +12,7 @@ export type TasksMinAggregateOutputType = {
|
|
|
12
12
|
handler_id: string | null;
|
|
13
13
|
parent_id: string | null;
|
|
14
14
|
process_id: string | null;
|
|
15
|
+
process_name: string | null;
|
|
15
16
|
status: string | null;
|
|
16
17
|
error: string | null;
|
|
17
18
|
timestamp: Date | null;
|
|
@@ -22,6 +23,7 @@ export type TasksMaxAggregateOutputType = {
|
|
|
22
23
|
handler_id: string | null;
|
|
23
24
|
parent_id: string | null;
|
|
24
25
|
process_id: string | null;
|
|
26
|
+
process_name: string | null;
|
|
25
27
|
status: string | null;
|
|
26
28
|
error: string | null;
|
|
27
29
|
timestamp: Date | null;
|
|
@@ -32,6 +34,7 @@ export type TasksCountAggregateOutputType = {
|
|
|
32
34
|
handler_id: number;
|
|
33
35
|
parent_id: number;
|
|
34
36
|
process_id: number;
|
|
37
|
+
process_name: number;
|
|
35
38
|
inputs: number;
|
|
36
39
|
result: number;
|
|
37
40
|
status: number;
|
|
@@ -45,6 +48,7 @@ export type TasksMinAggregateInputType = {
|
|
|
45
48
|
handler_id?: true;
|
|
46
49
|
parent_id?: true;
|
|
47
50
|
process_id?: true;
|
|
51
|
+
process_name?: true;
|
|
48
52
|
status?: true;
|
|
49
53
|
error?: true;
|
|
50
54
|
timestamp?: true;
|
|
@@ -55,6 +59,7 @@ export type TasksMaxAggregateInputType = {
|
|
|
55
59
|
handler_id?: true;
|
|
56
60
|
parent_id?: true;
|
|
57
61
|
process_id?: true;
|
|
62
|
+
process_name?: true;
|
|
58
63
|
status?: true;
|
|
59
64
|
error?: true;
|
|
60
65
|
timestamp?: true;
|
|
@@ -65,6 +70,7 @@ export type TasksCountAggregateInputType = {
|
|
|
65
70
|
handler_id?: true;
|
|
66
71
|
parent_id?: true;
|
|
67
72
|
process_id?: true;
|
|
73
|
+
process_name?: true;
|
|
68
74
|
inputs?: true;
|
|
69
75
|
result?: true;
|
|
70
76
|
status?: true;
|
|
@@ -102,6 +108,7 @@ export type TasksGroupByOutputType = {
|
|
|
102
108
|
handler_id: string;
|
|
103
109
|
parent_id: string | null;
|
|
104
110
|
process_id: string;
|
|
111
|
+
process_name: string;
|
|
105
112
|
inputs: runtime.JsonValue | null;
|
|
106
113
|
result: runtime.JsonValue | null;
|
|
107
114
|
status: string;
|
|
@@ -123,6 +130,7 @@ export type tasksWhereInput = {
|
|
|
123
130
|
handler_id?: Prisma.StringFilter<"tasks"> | string;
|
|
124
131
|
parent_id?: Prisma.StringNullableFilter<"tasks"> | string | null;
|
|
125
132
|
process_id?: Prisma.UuidFilter<"tasks"> | string;
|
|
133
|
+
process_name?: Prisma.StringFilter<"tasks"> | string;
|
|
126
134
|
inputs?: Prisma.JsonNullableFilter<"tasks">;
|
|
127
135
|
result?: Prisma.JsonNullableFilter<"tasks">;
|
|
128
136
|
status?: Prisma.StringFilter<"tasks"> | string;
|
|
@@ -136,6 +144,7 @@ export type tasksOrderByWithRelationInput = {
|
|
|
136
144
|
handler_id?: Prisma.SortOrder;
|
|
137
145
|
parent_id?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
138
146
|
process_id?: Prisma.SortOrder;
|
|
147
|
+
process_name?: Prisma.SortOrder;
|
|
139
148
|
inputs?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
140
149
|
result?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
141
150
|
status?: Prisma.SortOrder;
|
|
@@ -152,6 +161,7 @@ export type tasksWhereUniqueInput = Prisma.AtLeast<{
|
|
|
152
161
|
handler_id?: Prisma.StringFilter<"tasks"> | string;
|
|
153
162
|
parent_id?: Prisma.StringNullableFilter<"tasks"> | string | null;
|
|
154
163
|
process_id?: Prisma.UuidFilter<"tasks"> | string;
|
|
164
|
+
process_name?: Prisma.StringFilter<"tasks"> | string;
|
|
155
165
|
inputs?: Prisma.JsonNullableFilter<"tasks">;
|
|
156
166
|
result?: Prisma.JsonNullableFilter<"tasks">;
|
|
157
167
|
status?: Prisma.StringFilter<"tasks"> | string;
|
|
@@ -165,6 +175,7 @@ export type tasksOrderByWithAggregationInput = {
|
|
|
165
175
|
handler_id?: Prisma.SortOrder;
|
|
166
176
|
parent_id?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
167
177
|
process_id?: Prisma.SortOrder;
|
|
178
|
+
process_name?: Prisma.SortOrder;
|
|
168
179
|
inputs?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
169
180
|
result?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
170
181
|
status?: Prisma.SortOrder;
|
|
@@ -183,6 +194,7 @@ export type tasksScalarWhereWithAggregatesInput = {
|
|
|
183
194
|
handler_id?: Prisma.StringWithAggregatesFilter<"tasks"> | string;
|
|
184
195
|
parent_id?: Prisma.StringNullableWithAggregatesFilter<"tasks"> | string | null;
|
|
185
196
|
process_id?: Prisma.UuidWithAggregatesFilter<"tasks"> | string;
|
|
197
|
+
process_name?: Prisma.StringWithAggregatesFilter<"tasks"> | string;
|
|
186
198
|
inputs?: Prisma.JsonNullableWithAggregatesFilter<"tasks">;
|
|
187
199
|
result?: Prisma.JsonNullableWithAggregatesFilter<"tasks">;
|
|
188
200
|
status?: Prisma.StringWithAggregatesFilter<"tasks"> | string;
|
|
@@ -194,6 +206,7 @@ export type tasksCreateInput = {
|
|
|
194
206
|
internal_id: string;
|
|
195
207
|
handler_id: string;
|
|
196
208
|
parent_id?: string | null;
|
|
209
|
+
process_name: string;
|
|
197
210
|
inputs?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
198
211
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
199
212
|
status?: string;
|
|
@@ -207,6 +220,7 @@ export type tasksUncheckedCreateInput = {
|
|
|
207
220
|
handler_id: string;
|
|
208
221
|
parent_id?: string | null;
|
|
209
222
|
process_id: string;
|
|
223
|
+
process_name: string;
|
|
210
224
|
inputs?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
211
225
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
212
226
|
status?: string;
|
|
@@ -218,6 +232,7 @@ export type tasksUpdateInput = {
|
|
|
218
232
|
internal_id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
219
233
|
handler_id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
220
234
|
parent_id?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
235
|
+
process_name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
221
236
|
inputs?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
222
237
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
223
238
|
status?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -231,6 +246,7 @@ export type tasksUncheckedUpdateInput = {
|
|
|
231
246
|
handler_id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
232
247
|
parent_id?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
233
248
|
process_id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
249
|
+
process_name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
234
250
|
inputs?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
235
251
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
236
252
|
status?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -243,6 +259,7 @@ export type tasksCreateManyInput = {
|
|
|
243
259
|
handler_id: string;
|
|
244
260
|
parent_id?: string | null;
|
|
245
261
|
process_id: string;
|
|
262
|
+
process_name: string;
|
|
246
263
|
inputs?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
247
264
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
248
265
|
status?: string;
|
|
@@ -254,6 +271,7 @@ export type tasksUpdateManyMutationInput = {
|
|
|
254
271
|
internal_id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
255
272
|
handler_id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
256
273
|
parent_id?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
274
|
+
process_name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
257
275
|
inputs?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
258
276
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
259
277
|
status?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -266,6 +284,7 @@ export type tasksUncheckedUpdateManyInput = {
|
|
|
266
284
|
handler_id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
267
285
|
parent_id?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
268
286
|
process_id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
287
|
+
process_name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
269
288
|
inputs?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
270
289
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
271
290
|
status?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -286,6 +305,7 @@ export type tasksCountOrderByAggregateInput = {
|
|
|
286
305
|
handler_id?: Prisma.SortOrder;
|
|
287
306
|
parent_id?: Prisma.SortOrder;
|
|
288
307
|
process_id?: Prisma.SortOrder;
|
|
308
|
+
process_name?: Prisma.SortOrder;
|
|
289
309
|
inputs?: Prisma.SortOrder;
|
|
290
310
|
result?: Prisma.SortOrder;
|
|
291
311
|
status?: Prisma.SortOrder;
|
|
@@ -298,6 +318,7 @@ export type tasksMaxOrderByAggregateInput = {
|
|
|
298
318
|
handler_id?: Prisma.SortOrder;
|
|
299
319
|
parent_id?: Prisma.SortOrder;
|
|
300
320
|
process_id?: Prisma.SortOrder;
|
|
321
|
+
process_name?: Prisma.SortOrder;
|
|
301
322
|
status?: Prisma.SortOrder;
|
|
302
323
|
error?: Prisma.SortOrder;
|
|
303
324
|
timestamp?: Prisma.SortOrder;
|
|
@@ -308,6 +329,7 @@ export type tasksMinOrderByAggregateInput = {
|
|
|
308
329
|
handler_id?: Prisma.SortOrder;
|
|
309
330
|
parent_id?: Prisma.SortOrder;
|
|
310
331
|
process_id?: Prisma.SortOrder;
|
|
332
|
+
process_name?: Prisma.SortOrder;
|
|
311
333
|
status?: Prisma.SortOrder;
|
|
312
334
|
error?: Prisma.SortOrder;
|
|
313
335
|
timestamp?: Prisma.SortOrder;
|
|
@@ -358,6 +380,7 @@ export type tasksCreateWithoutProcessesInput = {
|
|
|
358
380
|
internal_id: string;
|
|
359
381
|
handler_id: string;
|
|
360
382
|
parent_id?: string | null;
|
|
383
|
+
process_name: string;
|
|
361
384
|
inputs?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
362
385
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
363
386
|
status?: string;
|
|
@@ -369,6 +392,7 @@ export type tasksUncheckedCreateWithoutProcessesInput = {
|
|
|
369
392
|
internal_id: string;
|
|
370
393
|
handler_id: string;
|
|
371
394
|
parent_id?: string | null;
|
|
395
|
+
process_name: string;
|
|
372
396
|
inputs?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
373
397
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
374
398
|
status?: string;
|
|
@@ -405,6 +429,7 @@ export type tasksScalarWhereInput = {
|
|
|
405
429
|
handler_id?: Prisma.StringFilter<"tasks"> | string;
|
|
406
430
|
parent_id?: Prisma.StringNullableFilter<"tasks"> | string | null;
|
|
407
431
|
process_id?: Prisma.UuidFilter<"tasks"> | string;
|
|
432
|
+
process_name?: Prisma.StringFilter<"tasks"> | string;
|
|
408
433
|
inputs?: Prisma.JsonNullableFilter<"tasks">;
|
|
409
434
|
result?: Prisma.JsonNullableFilter<"tasks">;
|
|
410
435
|
status?: Prisma.StringFilter<"tasks"> | string;
|
|
@@ -416,6 +441,7 @@ export type tasksCreateManyProcessesInput = {
|
|
|
416
441
|
internal_id: string;
|
|
417
442
|
handler_id: string;
|
|
418
443
|
parent_id?: string | null;
|
|
444
|
+
process_name: string;
|
|
419
445
|
inputs?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
420
446
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
421
447
|
status?: string;
|
|
@@ -427,6 +453,7 @@ export type tasksUpdateWithoutProcessesInput = {
|
|
|
427
453
|
internal_id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
428
454
|
handler_id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
429
455
|
parent_id?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
456
|
+
process_name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
430
457
|
inputs?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
431
458
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
432
459
|
status?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -438,6 +465,7 @@ export type tasksUncheckedUpdateWithoutProcessesInput = {
|
|
|
438
465
|
internal_id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
439
466
|
handler_id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
440
467
|
parent_id?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
468
|
+
process_name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
441
469
|
inputs?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
442
470
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
443
471
|
status?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -449,6 +477,7 @@ export type tasksUncheckedUpdateManyWithoutProcessesInput = {
|
|
|
449
477
|
internal_id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
450
478
|
handler_id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
451
479
|
parent_id?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
480
|
+
process_name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
452
481
|
inputs?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
453
482
|
result?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
454
483
|
status?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -461,6 +490,7 @@ export type tasksSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
461
490
|
handler_id?: boolean;
|
|
462
491
|
parent_id?: boolean;
|
|
463
492
|
process_id?: boolean;
|
|
493
|
+
process_name?: boolean;
|
|
464
494
|
inputs?: boolean;
|
|
465
495
|
result?: boolean;
|
|
466
496
|
status?: boolean;
|
|
@@ -474,6 +504,7 @@ export type tasksSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensi
|
|
|
474
504
|
handler_id?: boolean;
|
|
475
505
|
parent_id?: boolean;
|
|
476
506
|
process_id?: boolean;
|
|
507
|
+
process_name?: boolean;
|
|
477
508
|
inputs?: boolean;
|
|
478
509
|
result?: boolean;
|
|
479
510
|
status?: boolean;
|
|
@@ -487,6 +518,7 @@ export type tasksSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensi
|
|
|
487
518
|
handler_id?: boolean;
|
|
488
519
|
parent_id?: boolean;
|
|
489
520
|
process_id?: boolean;
|
|
521
|
+
process_name?: boolean;
|
|
490
522
|
inputs?: boolean;
|
|
491
523
|
result?: boolean;
|
|
492
524
|
status?: boolean;
|
|
@@ -500,13 +532,14 @@ export type tasksSelectScalar = {
|
|
|
500
532
|
handler_id?: boolean;
|
|
501
533
|
parent_id?: boolean;
|
|
502
534
|
process_id?: boolean;
|
|
535
|
+
process_name?: boolean;
|
|
503
536
|
inputs?: boolean;
|
|
504
537
|
result?: boolean;
|
|
505
538
|
status?: boolean;
|
|
506
539
|
error?: boolean;
|
|
507
540
|
timestamp?: boolean;
|
|
508
541
|
};
|
|
509
|
-
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" | "inputs" | "result" | "status" | "error" | "timestamp", ExtArgs["result"]["tasks"]>;
|
|
542
|
+
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" | "process_name" | "inputs" | "result" | "status" | "error" | "timestamp", ExtArgs["result"]["tasks"]>;
|
|
510
543
|
export type tasksInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
511
544
|
processes?: boolean | Prisma.processesDefaultArgs<ExtArgs>;
|
|
512
545
|
};
|
|
@@ -527,6 +560,7 @@ export type $tasksPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
527
560
|
handler_id: string;
|
|
528
561
|
parent_id: string | null;
|
|
529
562
|
process_id: string;
|
|
563
|
+
process_name: string;
|
|
530
564
|
inputs: runtime.JsonValue | null;
|
|
531
565
|
result: runtime.JsonValue | null;
|
|
532
566
|
status: string;
|
|
@@ -595,6 +629,7 @@ export interface tasksFieldRefs {
|
|
|
595
629
|
readonly handler_id: Prisma.FieldRef<"tasks", 'String'>;
|
|
596
630
|
readonly parent_id: Prisma.FieldRef<"tasks", 'String'>;
|
|
597
631
|
readonly process_id: Prisma.FieldRef<"tasks", 'String'>;
|
|
632
|
+
readonly process_name: Prisma.FieldRef<"tasks", 'String'>;
|
|
598
633
|
readonly inputs: Prisma.FieldRef<"tasks", 'Json'>;
|
|
599
634
|
readonly result: Prisma.FieldRef<"tasks", 'Json'>;
|
|
600
635
|
readonly status: Prisma.FieldRef<"tasks", 'String'>;
|