@techstream/quark-create-app 1.2.0 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +34 -33
- package/src/index.js +193 -56
- package/templates/base-project/apps/web/src/app/api/auth/register/route.js +17 -1
- package/templates/base-project/apps/web/src/app/api/error-handler.js +4 -2
- package/templates/base-project/apps/web/src/app/api/health/route.js +8 -3
- package/templates/base-project/apps/web/src/app/api/posts/[id]/route.js +9 -5
- package/templates/base-project/apps/web/src/app/api/posts/route.js +13 -5
- package/templates/base-project/apps/web/src/app/api/users/[id]/route.js +9 -9
- package/templates/base-project/apps/web/src/app/api/users/route.js +6 -6
- package/templates/base-project/apps/web/src/lib/auth-middleware.js +18 -1
- package/templates/base-project/apps/web/src/{middleware.js → proxy.js} +3 -3
- package/templates/base-project/apps/worker/package.json +1 -2
- package/templates/base-project/apps/worker/src/index.js +71 -19
- package/templates/base-project/docker-compose.yml +3 -6
- package/templates/base-project/package.json +16 -1
- package/templates/base-project/packages/db/package.json +10 -4
- package/templates/base-project/packages/db/prisma.config.ts +2 -2
- package/templates/base-project/packages/db/scripts/seed.js +1 -1
- package/templates/base-project/packages/db/src/client.js +41 -25
- package/templates/base-project/packages/db/src/queries.js +22 -9
- package/templates/base-project/packages/db/src/schemas.js +6 -1
- package/templates/base-project/turbo.json +17 -1
- package/templates/config/package.json +3 -1
- package/templates/config/src/app-url.js +71 -0
- package/templates/config/src/validate-env.js +104 -0
- package/templates/base-project/packages/db/src/generated/prisma/browser.ts +0 -53
- package/templates/base-project/packages/db/src/generated/prisma/client.ts +0 -82
- package/templates/base-project/packages/db/src/generated/prisma/commonInputTypes.ts +0 -649
- package/templates/base-project/packages/db/src/generated/prisma/enums.ts +0 -19
- package/templates/base-project/packages/db/src/generated/prisma/internal/class.ts +0 -305
- package/templates/base-project/packages/db/src/generated/prisma/internal/prismaNamespace.ts +0 -1428
- package/templates/base-project/packages/db/src/generated/prisma/internal/prismaNamespaceBrowser.ts +0 -217
- package/templates/base-project/packages/db/src/generated/prisma/models/Account.ts +0 -2098
- package/templates/base-project/packages/db/src/generated/prisma/models/AuditLog.ts +0 -1805
- package/templates/base-project/packages/db/src/generated/prisma/models/Job.ts +0 -1737
- package/templates/base-project/packages/db/src/generated/prisma/models/Post.ts +0 -1762
- package/templates/base-project/packages/db/src/generated/prisma/models/Session.ts +0 -1738
- package/templates/base-project/packages/db/src/generated/prisma/models/User.ts +0 -2298
- package/templates/base-project/packages/db/src/generated/prisma/models/VerificationToken.ts +0 -1450
- package/templates/base-project/packages/db/src/generated/prisma/models.ts +0 -18
|
@@ -1,649 +0,0 @@
|
|
|
1
|
-
/* !!! This is code generated by Prisma. Do not edit directly. !!! */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
// biome-ignore-all lint: generated file
|
|
4
|
-
// @ts-nocheck
|
|
5
|
-
/*
|
|
6
|
-
* This file exports various common sort, input & filter types that are not directly linked to a particular model.
|
|
7
|
-
*
|
|
8
|
-
* 🟢 You can import this file directly.
|
|
9
|
-
*/
|
|
10
|
-
|
|
11
|
-
import type * as runtime from "@prisma/client/runtime/client";
|
|
12
|
-
import * as $Enums from "./enums.ts";
|
|
13
|
-
import type * as Prisma from "./internal/prismaNamespace.ts";
|
|
14
|
-
|
|
15
|
-
export type StringFilter<$PrismaModel = never> = {
|
|
16
|
-
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
17
|
-
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>;
|
|
18
|
-
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>;
|
|
19
|
-
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
20
|
-
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
21
|
-
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
22
|
-
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
23
|
-
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
24
|
-
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
25
|
-
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
26
|
-
mode?: Prisma.QueryMode;
|
|
27
|
-
not?: Prisma.NestedStringFilter<$PrismaModel> | string;
|
|
28
|
-
};
|
|
29
|
-
|
|
30
|
-
export type DateTimeNullableFilter<$PrismaModel = never> = {
|
|
31
|
-
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel> | null;
|
|
32
|
-
in?:
|
|
33
|
-
| Date[]
|
|
34
|
-
| string[]
|
|
35
|
-
| Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
36
|
-
| null;
|
|
37
|
-
notIn?:
|
|
38
|
-
| Date[]
|
|
39
|
-
| string[]
|
|
40
|
-
| Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
41
|
-
| null;
|
|
42
|
-
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
43
|
-
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
44
|
-
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
45
|
-
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
46
|
-
not?:
|
|
47
|
-
| Prisma.NestedDateTimeNullableFilter<$PrismaModel>
|
|
48
|
-
| Date
|
|
49
|
-
| string
|
|
50
|
-
| null;
|
|
51
|
-
};
|
|
52
|
-
|
|
53
|
-
export type StringNullableFilter<$PrismaModel = never> = {
|
|
54
|
-
equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null;
|
|
55
|
-
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
56
|
-
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
57
|
-
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
58
|
-
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
59
|
-
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
60
|
-
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
61
|
-
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
62
|
-
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
63
|
-
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
64
|
-
mode?: Prisma.QueryMode;
|
|
65
|
-
not?: Prisma.NestedStringNullableFilter<$PrismaModel> | string | null;
|
|
66
|
-
};
|
|
67
|
-
|
|
68
|
-
export type DateTimeFilter<$PrismaModel = never> = {
|
|
69
|
-
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
70
|
-
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>;
|
|
71
|
-
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>;
|
|
72
|
-
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
73
|
-
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
74
|
-
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
75
|
-
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
76
|
-
not?: Prisma.NestedDateTimeFilter<$PrismaModel> | Date | string;
|
|
77
|
-
};
|
|
78
|
-
|
|
79
|
-
export type SortOrderInput = {
|
|
80
|
-
sort: Prisma.SortOrder;
|
|
81
|
-
nulls?: Prisma.NullsOrder;
|
|
82
|
-
};
|
|
83
|
-
|
|
84
|
-
export type StringWithAggregatesFilter<$PrismaModel = never> = {
|
|
85
|
-
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
86
|
-
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>;
|
|
87
|
-
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>;
|
|
88
|
-
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
89
|
-
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
90
|
-
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
91
|
-
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
92
|
-
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
93
|
-
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
94
|
-
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
95
|
-
mode?: Prisma.QueryMode;
|
|
96
|
-
not?: Prisma.NestedStringWithAggregatesFilter<$PrismaModel> | string;
|
|
97
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
98
|
-
_min?: Prisma.NestedStringFilter<$PrismaModel>;
|
|
99
|
-
_max?: Prisma.NestedStringFilter<$PrismaModel>;
|
|
100
|
-
};
|
|
101
|
-
|
|
102
|
-
export type DateTimeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
103
|
-
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel> | null;
|
|
104
|
-
in?:
|
|
105
|
-
| Date[]
|
|
106
|
-
| string[]
|
|
107
|
-
| Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
108
|
-
| null;
|
|
109
|
-
notIn?:
|
|
110
|
-
| Date[]
|
|
111
|
-
| string[]
|
|
112
|
-
| Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
113
|
-
| null;
|
|
114
|
-
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
115
|
-
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
116
|
-
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
117
|
-
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
118
|
-
not?:
|
|
119
|
-
| Prisma.NestedDateTimeNullableWithAggregatesFilter<$PrismaModel>
|
|
120
|
-
| Date
|
|
121
|
-
| string
|
|
122
|
-
| null;
|
|
123
|
-
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
124
|
-
_min?: Prisma.NestedDateTimeNullableFilter<$PrismaModel>;
|
|
125
|
-
_max?: Prisma.NestedDateTimeNullableFilter<$PrismaModel>;
|
|
126
|
-
};
|
|
127
|
-
|
|
128
|
-
export type StringNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
129
|
-
equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null;
|
|
130
|
-
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
131
|
-
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
132
|
-
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
133
|
-
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
134
|
-
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
135
|
-
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
136
|
-
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
137
|
-
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
138
|
-
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
139
|
-
mode?: Prisma.QueryMode;
|
|
140
|
-
not?:
|
|
141
|
-
| Prisma.NestedStringNullableWithAggregatesFilter<$PrismaModel>
|
|
142
|
-
| string
|
|
143
|
-
| null;
|
|
144
|
-
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
145
|
-
_min?: Prisma.NestedStringNullableFilter<$PrismaModel>;
|
|
146
|
-
_max?: Prisma.NestedStringNullableFilter<$PrismaModel>;
|
|
147
|
-
};
|
|
148
|
-
|
|
149
|
-
export type DateTimeWithAggregatesFilter<$PrismaModel = never> = {
|
|
150
|
-
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
151
|
-
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>;
|
|
152
|
-
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>;
|
|
153
|
-
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
154
|
-
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
155
|
-
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
156
|
-
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
157
|
-
not?: Prisma.NestedDateTimeWithAggregatesFilter<$PrismaModel> | Date | string;
|
|
158
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
159
|
-
_min?: Prisma.NestedDateTimeFilter<$PrismaModel>;
|
|
160
|
-
_max?: Prisma.NestedDateTimeFilter<$PrismaModel>;
|
|
161
|
-
};
|
|
162
|
-
|
|
163
|
-
export type BoolFilter<$PrismaModel = never> = {
|
|
164
|
-
equals?: boolean | Prisma.BooleanFieldRefInput<$PrismaModel>;
|
|
165
|
-
not?: Prisma.NestedBoolFilter<$PrismaModel> | boolean;
|
|
166
|
-
};
|
|
167
|
-
|
|
168
|
-
export type BoolWithAggregatesFilter<$PrismaModel = never> = {
|
|
169
|
-
equals?: boolean | Prisma.BooleanFieldRefInput<$PrismaModel>;
|
|
170
|
-
not?: Prisma.NestedBoolWithAggregatesFilter<$PrismaModel> | boolean;
|
|
171
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
172
|
-
_min?: Prisma.NestedBoolFilter<$PrismaModel>;
|
|
173
|
-
_max?: Prisma.NestedBoolFilter<$PrismaModel>;
|
|
174
|
-
};
|
|
175
|
-
|
|
176
|
-
export type IntNullableFilter<$PrismaModel = never> = {
|
|
177
|
-
equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null;
|
|
178
|
-
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null;
|
|
179
|
-
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null;
|
|
180
|
-
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
181
|
-
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
182
|
-
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
183
|
-
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
184
|
-
not?: Prisma.NestedIntNullableFilter<$PrismaModel> | number | null;
|
|
185
|
-
};
|
|
186
|
-
|
|
187
|
-
export type IntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
188
|
-
equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null;
|
|
189
|
-
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null;
|
|
190
|
-
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null;
|
|
191
|
-
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
192
|
-
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
193
|
-
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
194
|
-
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
195
|
-
not?:
|
|
196
|
-
| Prisma.NestedIntNullableWithAggregatesFilter<$PrismaModel>
|
|
197
|
-
| number
|
|
198
|
-
| null;
|
|
199
|
-
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
200
|
-
_avg?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
|
|
201
|
-
_sum?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
202
|
-
_min?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
203
|
-
_max?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
204
|
-
};
|
|
205
|
-
|
|
206
|
-
export type JsonNullableFilter<$PrismaModel = never> =
|
|
207
|
-
| Prisma.PatchUndefined<
|
|
208
|
-
Prisma.Either<
|
|
209
|
-
Required<JsonNullableFilterBase<$PrismaModel>>,
|
|
210
|
-
Exclude<keyof Required<JsonNullableFilterBase<$PrismaModel>>, "path">
|
|
211
|
-
>,
|
|
212
|
-
Required<JsonNullableFilterBase<$PrismaModel>>
|
|
213
|
-
>
|
|
214
|
-
| Prisma.OptionalFlat<
|
|
215
|
-
Omit<Required<JsonNullableFilterBase<$PrismaModel>>, "path">
|
|
216
|
-
>;
|
|
217
|
-
|
|
218
|
-
export type JsonNullableFilterBase<$PrismaModel = never> = {
|
|
219
|
-
equals?:
|
|
220
|
-
| runtime.InputJsonValue
|
|
221
|
-
| Prisma.JsonFieldRefInput<$PrismaModel>
|
|
222
|
-
| Prisma.JsonNullValueFilter;
|
|
223
|
-
path?: string[];
|
|
224
|
-
mode?: Prisma.QueryMode | Prisma.EnumQueryModeFieldRefInput<$PrismaModel>;
|
|
225
|
-
string_contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
226
|
-
string_starts_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
227
|
-
string_ends_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
228
|
-
array_starts_with?:
|
|
229
|
-
| runtime.InputJsonValue
|
|
230
|
-
| Prisma.JsonFieldRefInput<$PrismaModel>
|
|
231
|
-
| null;
|
|
232
|
-
array_ends_with?:
|
|
233
|
-
| runtime.InputJsonValue
|
|
234
|
-
| Prisma.JsonFieldRefInput<$PrismaModel>
|
|
235
|
-
| null;
|
|
236
|
-
array_contains?:
|
|
237
|
-
| runtime.InputJsonValue
|
|
238
|
-
| Prisma.JsonFieldRefInput<$PrismaModel>
|
|
239
|
-
| null;
|
|
240
|
-
lt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
241
|
-
lte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
242
|
-
gt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
243
|
-
gte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
244
|
-
not?:
|
|
245
|
-
| runtime.InputJsonValue
|
|
246
|
-
| Prisma.JsonFieldRefInput<$PrismaModel>
|
|
247
|
-
| Prisma.JsonNullValueFilter;
|
|
248
|
-
};
|
|
249
|
-
|
|
250
|
-
export type EnumJobStatusFilter<$PrismaModel = never> = {
|
|
251
|
-
equals?: $Enums.JobStatus | Prisma.EnumJobStatusFieldRefInput<$PrismaModel>;
|
|
252
|
-
in?: $Enums.JobStatus[] | Prisma.ListEnumJobStatusFieldRefInput<$PrismaModel>;
|
|
253
|
-
notIn?:
|
|
254
|
-
| $Enums.JobStatus[]
|
|
255
|
-
| Prisma.ListEnumJobStatusFieldRefInput<$PrismaModel>;
|
|
256
|
-
not?: Prisma.NestedEnumJobStatusFilter<$PrismaModel> | $Enums.JobStatus;
|
|
257
|
-
};
|
|
258
|
-
|
|
259
|
-
export type IntFilter<$PrismaModel = never> = {
|
|
260
|
-
equals?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
261
|
-
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel>;
|
|
262
|
-
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel>;
|
|
263
|
-
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
264
|
-
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
265
|
-
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
266
|
-
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
267
|
-
not?: Prisma.NestedIntFilter<$PrismaModel> | number;
|
|
268
|
-
};
|
|
269
|
-
|
|
270
|
-
export type JsonNullableWithAggregatesFilter<$PrismaModel = never> =
|
|
271
|
-
| Prisma.PatchUndefined<
|
|
272
|
-
Prisma.Either<
|
|
273
|
-
Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>,
|
|
274
|
-
Exclude<
|
|
275
|
-
keyof Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>,
|
|
276
|
-
"path"
|
|
277
|
-
>
|
|
278
|
-
>,
|
|
279
|
-
Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>
|
|
280
|
-
>
|
|
281
|
-
| Prisma.OptionalFlat<
|
|
282
|
-
Omit<Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, "path">
|
|
283
|
-
>;
|
|
284
|
-
|
|
285
|
-
export type JsonNullableWithAggregatesFilterBase<$PrismaModel = never> = {
|
|
286
|
-
equals?:
|
|
287
|
-
| runtime.InputJsonValue
|
|
288
|
-
| Prisma.JsonFieldRefInput<$PrismaModel>
|
|
289
|
-
| Prisma.JsonNullValueFilter;
|
|
290
|
-
path?: string[];
|
|
291
|
-
mode?: Prisma.QueryMode | Prisma.EnumQueryModeFieldRefInput<$PrismaModel>;
|
|
292
|
-
string_contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
293
|
-
string_starts_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
294
|
-
string_ends_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
295
|
-
array_starts_with?:
|
|
296
|
-
| runtime.InputJsonValue
|
|
297
|
-
| Prisma.JsonFieldRefInput<$PrismaModel>
|
|
298
|
-
| null;
|
|
299
|
-
array_ends_with?:
|
|
300
|
-
| runtime.InputJsonValue
|
|
301
|
-
| Prisma.JsonFieldRefInput<$PrismaModel>
|
|
302
|
-
| null;
|
|
303
|
-
array_contains?:
|
|
304
|
-
| runtime.InputJsonValue
|
|
305
|
-
| Prisma.JsonFieldRefInput<$PrismaModel>
|
|
306
|
-
| null;
|
|
307
|
-
lt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
308
|
-
lte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
309
|
-
gt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
310
|
-
gte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
311
|
-
not?:
|
|
312
|
-
| runtime.InputJsonValue
|
|
313
|
-
| Prisma.JsonFieldRefInput<$PrismaModel>
|
|
314
|
-
| Prisma.JsonNullValueFilter;
|
|
315
|
-
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
316
|
-
_min?: Prisma.NestedJsonNullableFilter<$PrismaModel>;
|
|
317
|
-
_max?: Prisma.NestedJsonNullableFilter<$PrismaModel>;
|
|
318
|
-
};
|
|
319
|
-
|
|
320
|
-
export type EnumJobStatusWithAggregatesFilter<$PrismaModel = never> = {
|
|
321
|
-
equals?: $Enums.JobStatus | Prisma.EnumJobStatusFieldRefInput<$PrismaModel>;
|
|
322
|
-
in?: $Enums.JobStatus[] | Prisma.ListEnumJobStatusFieldRefInput<$PrismaModel>;
|
|
323
|
-
notIn?:
|
|
324
|
-
| $Enums.JobStatus[]
|
|
325
|
-
| Prisma.ListEnumJobStatusFieldRefInput<$PrismaModel>;
|
|
326
|
-
not?:
|
|
327
|
-
| Prisma.NestedEnumJobStatusWithAggregatesFilter<$PrismaModel>
|
|
328
|
-
| $Enums.JobStatus;
|
|
329
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
330
|
-
_min?: Prisma.NestedEnumJobStatusFilter<$PrismaModel>;
|
|
331
|
-
_max?: Prisma.NestedEnumJobStatusFilter<$PrismaModel>;
|
|
332
|
-
};
|
|
333
|
-
|
|
334
|
-
export type IntWithAggregatesFilter<$PrismaModel = never> = {
|
|
335
|
-
equals?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
336
|
-
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel>;
|
|
337
|
-
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel>;
|
|
338
|
-
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
339
|
-
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
340
|
-
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
341
|
-
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
342
|
-
not?: Prisma.NestedIntWithAggregatesFilter<$PrismaModel> | number;
|
|
343
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
344
|
-
_avg?: Prisma.NestedFloatFilter<$PrismaModel>;
|
|
345
|
-
_sum?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
346
|
-
_min?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
347
|
-
_max?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
348
|
-
};
|
|
349
|
-
|
|
350
|
-
export type NestedStringFilter<$PrismaModel = never> = {
|
|
351
|
-
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
352
|
-
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>;
|
|
353
|
-
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>;
|
|
354
|
-
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
355
|
-
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
356
|
-
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
357
|
-
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
358
|
-
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
359
|
-
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
360
|
-
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
361
|
-
not?: Prisma.NestedStringFilter<$PrismaModel> | string;
|
|
362
|
-
};
|
|
363
|
-
|
|
364
|
-
export type NestedDateTimeNullableFilter<$PrismaModel = never> = {
|
|
365
|
-
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel> | null;
|
|
366
|
-
in?:
|
|
367
|
-
| Date[]
|
|
368
|
-
| string[]
|
|
369
|
-
| Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
370
|
-
| null;
|
|
371
|
-
notIn?:
|
|
372
|
-
| Date[]
|
|
373
|
-
| string[]
|
|
374
|
-
| Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
375
|
-
| null;
|
|
376
|
-
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
377
|
-
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
378
|
-
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
379
|
-
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
380
|
-
not?:
|
|
381
|
-
| Prisma.NestedDateTimeNullableFilter<$PrismaModel>
|
|
382
|
-
| Date
|
|
383
|
-
| string
|
|
384
|
-
| null;
|
|
385
|
-
};
|
|
386
|
-
|
|
387
|
-
export type NestedStringNullableFilter<$PrismaModel = never> = {
|
|
388
|
-
equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null;
|
|
389
|
-
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
390
|
-
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
391
|
-
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
392
|
-
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
393
|
-
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
394
|
-
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
395
|
-
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
396
|
-
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
397
|
-
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
398
|
-
not?: Prisma.NestedStringNullableFilter<$PrismaModel> | string | null;
|
|
399
|
-
};
|
|
400
|
-
|
|
401
|
-
export type NestedDateTimeFilter<$PrismaModel = never> = {
|
|
402
|
-
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
403
|
-
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>;
|
|
404
|
-
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>;
|
|
405
|
-
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
406
|
-
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
407
|
-
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
408
|
-
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
409
|
-
not?: Prisma.NestedDateTimeFilter<$PrismaModel> | Date | string;
|
|
410
|
-
};
|
|
411
|
-
|
|
412
|
-
export type NestedStringWithAggregatesFilter<$PrismaModel = never> = {
|
|
413
|
-
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
414
|
-
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>;
|
|
415
|
-
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>;
|
|
416
|
-
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
417
|
-
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
418
|
-
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
419
|
-
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
420
|
-
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
421
|
-
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
422
|
-
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
423
|
-
not?: Prisma.NestedStringWithAggregatesFilter<$PrismaModel> | string;
|
|
424
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
425
|
-
_min?: Prisma.NestedStringFilter<$PrismaModel>;
|
|
426
|
-
_max?: Prisma.NestedStringFilter<$PrismaModel>;
|
|
427
|
-
};
|
|
428
|
-
|
|
429
|
-
export type NestedIntFilter<$PrismaModel = never> = {
|
|
430
|
-
equals?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
431
|
-
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel>;
|
|
432
|
-
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel>;
|
|
433
|
-
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
434
|
-
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
435
|
-
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
436
|
-
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
437
|
-
not?: Prisma.NestedIntFilter<$PrismaModel> | number;
|
|
438
|
-
};
|
|
439
|
-
|
|
440
|
-
export type NestedDateTimeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
441
|
-
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel> | null;
|
|
442
|
-
in?:
|
|
443
|
-
| Date[]
|
|
444
|
-
| string[]
|
|
445
|
-
| Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
446
|
-
| null;
|
|
447
|
-
notIn?:
|
|
448
|
-
| Date[]
|
|
449
|
-
| string[]
|
|
450
|
-
| Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
451
|
-
| null;
|
|
452
|
-
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
453
|
-
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
454
|
-
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
455
|
-
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
456
|
-
not?:
|
|
457
|
-
| Prisma.NestedDateTimeNullableWithAggregatesFilter<$PrismaModel>
|
|
458
|
-
| Date
|
|
459
|
-
| string
|
|
460
|
-
| null;
|
|
461
|
-
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
462
|
-
_min?: Prisma.NestedDateTimeNullableFilter<$PrismaModel>;
|
|
463
|
-
_max?: Prisma.NestedDateTimeNullableFilter<$PrismaModel>;
|
|
464
|
-
};
|
|
465
|
-
|
|
466
|
-
export type NestedIntNullableFilter<$PrismaModel = never> = {
|
|
467
|
-
equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null;
|
|
468
|
-
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null;
|
|
469
|
-
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null;
|
|
470
|
-
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
471
|
-
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
472
|
-
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
473
|
-
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
474
|
-
not?: Prisma.NestedIntNullableFilter<$PrismaModel> | number | null;
|
|
475
|
-
};
|
|
476
|
-
|
|
477
|
-
export type NestedStringNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
478
|
-
equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null;
|
|
479
|
-
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
480
|
-
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
481
|
-
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
482
|
-
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
483
|
-
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
484
|
-
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
485
|
-
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
486
|
-
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
487
|
-
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
488
|
-
not?:
|
|
489
|
-
| Prisma.NestedStringNullableWithAggregatesFilter<$PrismaModel>
|
|
490
|
-
| string
|
|
491
|
-
| null;
|
|
492
|
-
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
493
|
-
_min?: Prisma.NestedStringNullableFilter<$PrismaModel>;
|
|
494
|
-
_max?: Prisma.NestedStringNullableFilter<$PrismaModel>;
|
|
495
|
-
};
|
|
496
|
-
|
|
497
|
-
export type NestedDateTimeWithAggregatesFilter<$PrismaModel = never> = {
|
|
498
|
-
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
499
|
-
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>;
|
|
500
|
-
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>;
|
|
501
|
-
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
502
|
-
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
503
|
-
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
504
|
-
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
505
|
-
not?: Prisma.NestedDateTimeWithAggregatesFilter<$PrismaModel> | Date | string;
|
|
506
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
507
|
-
_min?: Prisma.NestedDateTimeFilter<$PrismaModel>;
|
|
508
|
-
_max?: Prisma.NestedDateTimeFilter<$PrismaModel>;
|
|
509
|
-
};
|
|
510
|
-
|
|
511
|
-
export type NestedBoolFilter<$PrismaModel = never> = {
|
|
512
|
-
equals?: boolean | Prisma.BooleanFieldRefInput<$PrismaModel>;
|
|
513
|
-
not?: Prisma.NestedBoolFilter<$PrismaModel> | boolean;
|
|
514
|
-
};
|
|
515
|
-
|
|
516
|
-
export type NestedBoolWithAggregatesFilter<$PrismaModel = never> = {
|
|
517
|
-
equals?: boolean | Prisma.BooleanFieldRefInput<$PrismaModel>;
|
|
518
|
-
not?: Prisma.NestedBoolWithAggregatesFilter<$PrismaModel> | boolean;
|
|
519
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
520
|
-
_min?: Prisma.NestedBoolFilter<$PrismaModel>;
|
|
521
|
-
_max?: Prisma.NestedBoolFilter<$PrismaModel>;
|
|
522
|
-
};
|
|
523
|
-
|
|
524
|
-
export type NestedIntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
525
|
-
equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null;
|
|
526
|
-
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null;
|
|
527
|
-
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null;
|
|
528
|
-
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
529
|
-
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
530
|
-
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
531
|
-
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
532
|
-
not?:
|
|
533
|
-
| Prisma.NestedIntNullableWithAggregatesFilter<$PrismaModel>
|
|
534
|
-
| number
|
|
535
|
-
| null;
|
|
536
|
-
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
537
|
-
_avg?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
|
|
538
|
-
_sum?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
539
|
-
_min?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
540
|
-
_max?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
541
|
-
};
|
|
542
|
-
|
|
543
|
-
export type NestedFloatNullableFilter<$PrismaModel = never> = {
|
|
544
|
-
equals?: number | Prisma.FloatFieldRefInput<$PrismaModel> | null;
|
|
545
|
-
in?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel> | null;
|
|
546
|
-
notIn?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel> | null;
|
|
547
|
-
lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
548
|
-
lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
549
|
-
gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
550
|
-
gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
551
|
-
not?: Prisma.NestedFloatNullableFilter<$PrismaModel> | number | null;
|
|
552
|
-
};
|
|
553
|
-
|
|
554
|
-
export type NestedEnumJobStatusFilter<$PrismaModel = never> = {
|
|
555
|
-
equals?: $Enums.JobStatus | Prisma.EnumJobStatusFieldRefInput<$PrismaModel>;
|
|
556
|
-
in?: $Enums.JobStatus[] | Prisma.ListEnumJobStatusFieldRefInput<$PrismaModel>;
|
|
557
|
-
notIn?:
|
|
558
|
-
| $Enums.JobStatus[]
|
|
559
|
-
| Prisma.ListEnumJobStatusFieldRefInput<$PrismaModel>;
|
|
560
|
-
not?: Prisma.NestedEnumJobStatusFilter<$PrismaModel> | $Enums.JobStatus;
|
|
561
|
-
};
|
|
562
|
-
|
|
563
|
-
export type NestedJsonNullableFilter<$PrismaModel = never> =
|
|
564
|
-
| Prisma.PatchUndefined<
|
|
565
|
-
Prisma.Either<
|
|
566
|
-
Required<NestedJsonNullableFilterBase<$PrismaModel>>,
|
|
567
|
-
Exclude<
|
|
568
|
-
keyof Required<NestedJsonNullableFilterBase<$PrismaModel>>,
|
|
569
|
-
"path"
|
|
570
|
-
>
|
|
571
|
-
>,
|
|
572
|
-
Required<NestedJsonNullableFilterBase<$PrismaModel>>
|
|
573
|
-
>
|
|
574
|
-
| Prisma.OptionalFlat<
|
|
575
|
-
Omit<Required<NestedJsonNullableFilterBase<$PrismaModel>>, "path">
|
|
576
|
-
>;
|
|
577
|
-
|
|
578
|
-
export type NestedJsonNullableFilterBase<$PrismaModel = never> = {
|
|
579
|
-
equals?:
|
|
580
|
-
| runtime.InputJsonValue
|
|
581
|
-
| Prisma.JsonFieldRefInput<$PrismaModel>
|
|
582
|
-
| Prisma.JsonNullValueFilter;
|
|
583
|
-
path?: string[];
|
|
584
|
-
mode?: Prisma.QueryMode | Prisma.EnumQueryModeFieldRefInput<$PrismaModel>;
|
|
585
|
-
string_contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
586
|
-
string_starts_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
587
|
-
string_ends_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
588
|
-
array_starts_with?:
|
|
589
|
-
| runtime.InputJsonValue
|
|
590
|
-
| Prisma.JsonFieldRefInput<$PrismaModel>
|
|
591
|
-
| null;
|
|
592
|
-
array_ends_with?:
|
|
593
|
-
| runtime.InputJsonValue
|
|
594
|
-
| Prisma.JsonFieldRefInput<$PrismaModel>
|
|
595
|
-
| null;
|
|
596
|
-
array_contains?:
|
|
597
|
-
| runtime.InputJsonValue
|
|
598
|
-
| Prisma.JsonFieldRefInput<$PrismaModel>
|
|
599
|
-
| null;
|
|
600
|
-
lt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
601
|
-
lte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
602
|
-
gt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
603
|
-
gte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
604
|
-
not?:
|
|
605
|
-
| runtime.InputJsonValue
|
|
606
|
-
| Prisma.JsonFieldRefInput<$PrismaModel>
|
|
607
|
-
| Prisma.JsonNullValueFilter;
|
|
608
|
-
};
|
|
609
|
-
|
|
610
|
-
export type NestedEnumJobStatusWithAggregatesFilter<$PrismaModel = never> = {
|
|
611
|
-
equals?: $Enums.JobStatus | Prisma.EnumJobStatusFieldRefInput<$PrismaModel>;
|
|
612
|
-
in?: $Enums.JobStatus[] | Prisma.ListEnumJobStatusFieldRefInput<$PrismaModel>;
|
|
613
|
-
notIn?:
|
|
614
|
-
| $Enums.JobStatus[]
|
|
615
|
-
| Prisma.ListEnumJobStatusFieldRefInput<$PrismaModel>;
|
|
616
|
-
not?:
|
|
617
|
-
| Prisma.NestedEnumJobStatusWithAggregatesFilter<$PrismaModel>
|
|
618
|
-
| $Enums.JobStatus;
|
|
619
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
620
|
-
_min?: Prisma.NestedEnumJobStatusFilter<$PrismaModel>;
|
|
621
|
-
_max?: Prisma.NestedEnumJobStatusFilter<$PrismaModel>;
|
|
622
|
-
};
|
|
623
|
-
|
|
624
|
-
export type NestedIntWithAggregatesFilter<$PrismaModel = never> = {
|
|
625
|
-
equals?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
626
|
-
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel>;
|
|
627
|
-
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel>;
|
|
628
|
-
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
629
|
-
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
630
|
-
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
631
|
-
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
632
|
-
not?: Prisma.NestedIntWithAggregatesFilter<$PrismaModel> | number;
|
|
633
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
634
|
-
_avg?: Prisma.NestedFloatFilter<$PrismaModel>;
|
|
635
|
-
_sum?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
636
|
-
_min?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
637
|
-
_max?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
638
|
-
};
|
|
639
|
-
|
|
640
|
-
export type NestedFloatFilter<$PrismaModel = never> = {
|
|
641
|
-
equals?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
642
|
-
in?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel>;
|
|
643
|
-
notIn?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel>;
|
|
644
|
-
lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
645
|
-
lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
646
|
-
gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
647
|
-
gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
648
|
-
not?: Prisma.NestedFloatFilter<$PrismaModel> | number;
|
|
649
|
-
};
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
/* !!! This is code generated by Prisma. Do not edit directly. !!! */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
// biome-ignore-all lint: generated file
|
|
4
|
-
// @ts-nocheck
|
|
5
|
-
/*
|
|
6
|
-
* This file exports all enum related types from the schema.
|
|
7
|
-
*
|
|
8
|
-
* 🟢 You can import this file directly.
|
|
9
|
-
*/
|
|
10
|
-
|
|
11
|
-
export const JobStatus = {
|
|
12
|
-
PENDING: "PENDING",
|
|
13
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
14
|
-
COMPLETED: "COMPLETED",
|
|
15
|
-
FAILED: "FAILED",
|
|
16
|
-
CANCELLED: "CANCELLED",
|
|
17
|
-
} as const;
|
|
18
|
-
|
|
19
|
-
export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|