@naisys/hub-database 3.0.0-beta.4 → 3.0.0-beta.6

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.
Files changed (29) hide show
  1. package/package.json +6 -4
  2. package/dist/dbConfig.d.ts +0 -2
  3. package/dist/generated/prisma/browser.d.ts +0 -80
  4. package/dist/generated/prisma/client.d.ts +0 -99
  5. package/dist/generated/prisma/commonInputTypes.d.ts +0 -758
  6. package/dist/generated/prisma/enums.d.ts +0 -57
  7. package/dist/generated/prisma/internal/class.d.ts +0 -285
  8. package/dist/generated/prisma/internal/prismaNamespace.d.ts +0 -1777
  9. package/dist/generated/prisma/internal/prismaNamespaceBrowser.d.ts +0 -223
  10. package/dist/generated/prisma/models/attachments.d.ts +0 -1624
  11. package/dist/generated/prisma/models/config_revisions.d.ts +0 -1320
  12. package/dist/generated/prisma/models/context_log.d.ts +0 -1889
  13. package/dist/generated/prisma/models/costs.d.ts +0 -1834
  14. package/dist/generated/prisma/models/hosts.d.ts +0 -1892
  15. package/dist/generated/prisma/models/mail_attachments.d.ts +0 -1244
  16. package/dist/generated/prisma/models/mail_messages.d.ts +0 -1721
  17. package/dist/generated/prisma/models/mail_recipients.d.ts +0 -1409
  18. package/dist/generated/prisma/models/models.d.ts +0 -1175
  19. package/dist/generated/prisma/models/run_session.d.ts +0 -1894
  20. package/dist/generated/prisma/models/schema_version.d.ts +0 -984
  21. package/dist/generated/prisma/models/user_hosts.d.ts +0 -1244
  22. package/dist/generated/prisma/models/user_notifications.d.ts +0 -1543
  23. package/dist/generated/prisma/models/users.d.ts +0 -3229
  24. package/dist/generated/prisma/models/variables.d.ts +0 -1052
  25. package/dist/generated/prisma/models.d.ts +0 -17
  26. package/dist/hubDatabaseService.d.ts +0 -7
  27. package/dist/hubSessionService.d.ts +0 -41
  28. package/dist/index.d.ts +0 -8
  29. package/dist/prismaClient.d.ts +0 -7
@@ -1,758 +0,0 @@
1
- import type * as runtime from "@prisma/client/runtime/client";
2
- import * as $Enums from "./enums.js";
3
- import type * as Prisma from "./internal/prismaNamespace.js";
4
- export type IntFilter<$PrismaModel = never> = {
5
- equals?: number | Prisma.IntFieldRefInput<$PrismaModel>;
6
- in?: number[];
7
- notIn?: number[];
8
- lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
9
- lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
10
- gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
11
- gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
12
- not?: Prisma.NestedIntFilter<$PrismaModel> | number;
13
- };
14
- export type EnumContextLogRoleFilter<$PrismaModel = never> = {
15
- equals?: $Enums.ContextLogRole | Prisma.EnumContextLogRoleFieldRefInput<$PrismaModel>;
16
- in?: $Enums.ContextLogRole[];
17
- notIn?: $Enums.ContextLogRole[];
18
- not?: Prisma.NestedEnumContextLogRoleFilter<$PrismaModel> | $Enums.ContextLogRole;
19
- };
20
- export type EnumContextLogSourceNullableFilter<$PrismaModel = never> = {
21
- equals?: $Enums.ContextLogSource | Prisma.EnumContextLogSourceFieldRefInput<$PrismaModel> | null;
22
- in?: $Enums.ContextLogSource[] | null;
23
- notIn?: $Enums.ContextLogSource[] | null;
24
- not?: Prisma.NestedEnumContextLogSourceNullableFilter<$PrismaModel> | $Enums.ContextLogSource | null;
25
- };
26
- export type EnumContextLogTypeNullableFilter<$PrismaModel = never> = {
27
- equals?: $Enums.ContextLogType | Prisma.EnumContextLogTypeFieldRefInput<$PrismaModel> | null;
28
- in?: $Enums.ContextLogType[] | null;
29
- notIn?: $Enums.ContextLogType[] | null;
30
- not?: Prisma.NestedEnumContextLogTypeNullableFilter<$PrismaModel> | $Enums.ContextLogType | null;
31
- };
32
- export type StringFilter<$PrismaModel = never> = {
33
- equals?: string | Prisma.StringFieldRefInput<$PrismaModel>;
34
- in?: string[];
35
- notIn?: string[];
36
- lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
37
- lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
38
- gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
39
- gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
40
- contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
41
- startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
42
- endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
43
- not?: Prisma.NestedStringFilter<$PrismaModel> | string;
44
- };
45
- export type IntNullableFilter<$PrismaModel = never> = {
46
- equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null;
47
- in?: number[] | null;
48
- notIn?: number[] | null;
49
- lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
50
- lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
51
- gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
52
- gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
53
- not?: Prisma.NestedIntNullableFilter<$PrismaModel> | number | null;
54
- };
55
- export type DateTimeFilter<$PrismaModel = never> = {
56
- equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
57
- in?: Date[] | string[];
58
- notIn?: Date[] | string[];
59
- lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
60
- lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
61
- gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
62
- gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
63
- not?: Prisma.NestedDateTimeFilter<$PrismaModel> | Date | string;
64
- };
65
- export type SortOrderInput = {
66
- sort: Prisma.SortOrder;
67
- nulls?: Prisma.NullsOrder;
68
- };
69
- export type IntWithAggregatesFilter<$PrismaModel = never> = {
70
- equals?: number | Prisma.IntFieldRefInput<$PrismaModel>;
71
- in?: number[];
72
- notIn?: number[];
73
- lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
74
- lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
75
- gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
76
- gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
77
- not?: Prisma.NestedIntWithAggregatesFilter<$PrismaModel> | number;
78
- _count?: Prisma.NestedIntFilter<$PrismaModel>;
79
- _avg?: Prisma.NestedFloatFilter<$PrismaModel>;
80
- _sum?: Prisma.NestedIntFilter<$PrismaModel>;
81
- _min?: Prisma.NestedIntFilter<$PrismaModel>;
82
- _max?: Prisma.NestedIntFilter<$PrismaModel>;
83
- };
84
- export type EnumContextLogRoleWithAggregatesFilter<$PrismaModel = never> = {
85
- equals?: $Enums.ContextLogRole | Prisma.EnumContextLogRoleFieldRefInput<$PrismaModel>;
86
- in?: $Enums.ContextLogRole[];
87
- notIn?: $Enums.ContextLogRole[];
88
- not?: Prisma.NestedEnumContextLogRoleWithAggregatesFilter<$PrismaModel> | $Enums.ContextLogRole;
89
- _count?: Prisma.NestedIntFilter<$PrismaModel>;
90
- _min?: Prisma.NestedEnumContextLogRoleFilter<$PrismaModel>;
91
- _max?: Prisma.NestedEnumContextLogRoleFilter<$PrismaModel>;
92
- };
93
- export type EnumContextLogSourceNullableWithAggregatesFilter<$PrismaModel = never> = {
94
- equals?: $Enums.ContextLogSource | Prisma.EnumContextLogSourceFieldRefInput<$PrismaModel> | null;
95
- in?: $Enums.ContextLogSource[] | null;
96
- notIn?: $Enums.ContextLogSource[] | null;
97
- not?: Prisma.NestedEnumContextLogSourceNullableWithAggregatesFilter<$PrismaModel> | $Enums.ContextLogSource | null;
98
- _count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
99
- _min?: Prisma.NestedEnumContextLogSourceNullableFilter<$PrismaModel>;
100
- _max?: Prisma.NestedEnumContextLogSourceNullableFilter<$PrismaModel>;
101
- };
102
- export type EnumContextLogTypeNullableWithAggregatesFilter<$PrismaModel = never> = {
103
- equals?: $Enums.ContextLogType | Prisma.EnumContextLogTypeFieldRefInput<$PrismaModel> | null;
104
- in?: $Enums.ContextLogType[] | null;
105
- notIn?: $Enums.ContextLogType[] | null;
106
- not?: Prisma.NestedEnumContextLogTypeNullableWithAggregatesFilter<$PrismaModel> | $Enums.ContextLogType | null;
107
- _count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
108
- _min?: Prisma.NestedEnumContextLogTypeNullableFilter<$PrismaModel>;
109
- _max?: Prisma.NestedEnumContextLogTypeNullableFilter<$PrismaModel>;
110
- };
111
- export type StringWithAggregatesFilter<$PrismaModel = never> = {
112
- equals?: string | Prisma.StringFieldRefInput<$PrismaModel>;
113
- in?: string[];
114
- notIn?: string[];
115
- lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
116
- lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
117
- gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
118
- gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
119
- contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
120
- startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
121
- endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
122
- not?: Prisma.NestedStringWithAggregatesFilter<$PrismaModel> | string;
123
- _count?: Prisma.NestedIntFilter<$PrismaModel>;
124
- _min?: Prisma.NestedStringFilter<$PrismaModel>;
125
- _max?: Prisma.NestedStringFilter<$PrismaModel>;
126
- };
127
- export type IntNullableWithAggregatesFilter<$PrismaModel = never> = {
128
- equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null;
129
- in?: number[] | null;
130
- notIn?: number[] | null;
131
- lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
132
- lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
133
- gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
134
- gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
135
- not?: Prisma.NestedIntNullableWithAggregatesFilter<$PrismaModel> | number | null;
136
- _count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
137
- _avg?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
138
- _sum?: Prisma.NestedIntNullableFilter<$PrismaModel>;
139
- _min?: Prisma.NestedIntNullableFilter<$PrismaModel>;
140
- _max?: Prisma.NestedIntNullableFilter<$PrismaModel>;
141
- };
142
- export type DateTimeWithAggregatesFilter<$PrismaModel = never> = {
143
- equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
144
- in?: Date[] | string[];
145
- notIn?: Date[] | string[];
146
- lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
147
- lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
148
- gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
149
- gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
150
- not?: Prisma.NestedDateTimeWithAggregatesFilter<$PrismaModel> | Date | string;
151
- _count?: Prisma.NestedIntFilter<$PrismaModel>;
152
- _min?: Prisma.NestedDateTimeFilter<$PrismaModel>;
153
- _max?: Prisma.NestedDateTimeFilter<$PrismaModel>;
154
- };
155
- export type EnumCostSourceFilter<$PrismaModel = never> = {
156
- equals?: $Enums.CostSource | Prisma.EnumCostSourceFieldRefInput<$PrismaModel>;
157
- in?: $Enums.CostSource[];
158
- notIn?: $Enums.CostSource[];
159
- not?: Prisma.NestedEnumCostSourceFilter<$PrismaModel> | $Enums.CostSource;
160
- };
161
- export type FloatNullableFilter<$PrismaModel = never> = {
162
- equals?: number | Prisma.FloatFieldRefInput<$PrismaModel> | null;
163
- in?: number[] | null;
164
- notIn?: number[] | null;
165
- lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
166
- lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
167
- gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
168
- gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
169
- not?: Prisma.NestedFloatNullableFilter<$PrismaModel> | number | null;
170
- };
171
- export type EnumCostSourceWithAggregatesFilter<$PrismaModel = never> = {
172
- equals?: $Enums.CostSource | Prisma.EnumCostSourceFieldRefInput<$PrismaModel>;
173
- in?: $Enums.CostSource[];
174
- notIn?: $Enums.CostSource[];
175
- not?: Prisma.NestedEnumCostSourceWithAggregatesFilter<$PrismaModel> | $Enums.CostSource;
176
- _count?: Prisma.NestedIntFilter<$PrismaModel>;
177
- _min?: Prisma.NestedEnumCostSourceFilter<$PrismaModel>;
178
- _max?: Prisma.NestedEnumCostSourceFilter<$PrismaModel>;
179
- };
180
- export type FloatNullableWithAggregatesFilter<$PrismaModel = never> = {
181
- equals?: number | Prisma.FloatFieldRefInput<$PrismaModel> | null;
182
- in?: number[] | null;
183
- notIn?: number[] | null;
184
- lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
185
- lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
186
- gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
187
- gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
188
- not?: Prisma.NestedFloatNullableWithAggregatesFilter<$PrismaModel> | number | null;
189
- _count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
190
- _avg?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
191
- _sum?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
192
- _min?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
193
- _max?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
194
- };
195
- export type EnumMessageKindFilter<$PrismaModel = never> = {
196
- equals?: $Enums.MessageKind | Prisma.EnumMessageKindFieldRefInput<$PrismaModel>;
197
- in?: $Enums.MessageKind[];
198
- notIn?: $Enums.MessageKind[];
199
- not?: Prisma.NestedEnumMessageKindFilter<$PrismaModel> | $Enums.MessageKind;
200
- };
201
- export type EnumMessageKindWithAggregatesFilter<$PrismaModel = never> = {
202
- equals?: $Enums.MessageKind | Prisma.EnumMessageKindFieldRefInput<$PrismaModel>;
203
- in?: $Enums.MessageKind[];
204
- notIn?: $Enums.MessageKind[];
205
- not?: Prisma.NestedEnumMessageKindWithAggregatesFilter<$PrismaModel> | $Enums.MessageKind;
206
- _count?: Prisma.NestedIntFilter<$PrismaModel>;
207
- _min?: Prisma.NestedEnumMessageKindFilter<$PrismaModel>;
208
- _max?: Prisma.NestedEnumMessageKindFilter<$PrismaModel>;
209
- };
210
- export type EnumAttachmentPurposeFilter<$PrismaModel = never> = {
211
- equals?: $Enums.AttachmentPurpose | Prisma.EnumAttachmentPurposeFieldRefInput<$PrismaModel>;
212
- in?: $Enums.AttachmentPurpose[];
213
- notIn?: $Enums.AttachmentPurpose[];
214
- not?: Prisma.NestedEnumAttachmentPurposeFilter<$PrismaModel> | $Enums.AttachmentPurpose;
215
- };
216
- export type EnumAttachmentPurposeWithAggregatesFilter<$PrismaModel = never> = {
217
- equals?: $Enums.AttachmentPurpose | Prisma.EnumAttachmentPurposeFieldRefInput<$PrismaModel>;
218
- in?: $Enums.AttachmentPurpose[];
219
- notIn?: $Enums.AttachmentPurpose[];
220
- not?: Prisma.NestedEnumAttachmentPurposeWithAggregatesFilter<$PrismaModel> | $Enums.AttachmentPurpose;
221
- _count?: Prisma.NestedIntFilter<$PrismaModel>;
222
- _min?: Prisma.NestedEnumAttachmentPurposeFilter<$PrismaModel>;
223
- _max?: Prisma.NestedEnumAttachmentPurposeFilter<$PrismaModel>;
224
- };
225
- export type EnumRecipientTypeFilter<$PrismaModel = never> = {
226
- equals?: $Enums.RecipientType | Prisma.EnumRecipientTypeFieldRefInput<$PrismaModel>;
227
- in?: $Enums.RecipientType[];
228
- notIn?: $Enums.RecipientType[];
229
- not?: Prisma.NestedEnumRecipientTypeFilter<$PrismaModel> | $Enums.RecipientType;
230
- };
231
- export type DateTimeNullableFilter<$PrismaModel = never> = {
232
- equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel> | null;
233
- in?: Date[] | string[] | null;
234
- notIn?: Date[] | string[] | null;
235
- lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
236
- lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
237
- gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
238
- gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
239
- not?: Prisma.NestedDateTimeNullableFilter<$PrismaModel> | Date | string | null;
240
- };
241
- export type EnumRecipientTypeWithAggregatesFilter<$PrismaModel = never> = {
242
- equals?: $Enums.RecipientType | Prisma.EnumRecipientTypeFieldRefInput<$PrismaModel>;
243
- in?: $Enums.RecipientType[];
244
- notIn?: $Enums.RecipientType[];
245
- not?: Prisma.NestedEnumRecipientTypeWithAggregatesFilter<$PrismaModel> | $Enums.RecipientType;
246
- _count?: Prisma.NestedIntFilter<$PrismaModel>;
247
- _min?: Prisma.NestedEnumRecipientTypeFilter<$PrismaModel>;
248
- _max?: Prisma.NestedEnumRecipientTypeFilter<$PrismaModel>;
249
- };
250
- export type DateTimeNullableWithAggregatesFilter<$PrismaModel = never> = {
251
- equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel> | null;
252
- in?: Date[] | string[] | null;
253
- notIn?: Date[] | string[] | null;
254
- lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
255
- lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
256
- gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
257
- gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
258
- not?: Prisma.NestedDateTimeNullableWithAggregatesFilter<$PrismaModel> | Date | string | null;
259
- _count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
260
- _min?: Prisma.NestedDateTimeNullableFilter<$PrismaModel>;
261
- _max?: Prisma.NestedDateTimeNullableFilter<$PrismaModel>;
262
- };
263
- export type BoolFilter<$PrismaModel = never> = {
264
- equals?: boolean | Prisma.BooleanFieldRefInput<$PrismaModel>;
265
- not?: Prisma.NestedBoolFilter<$PrismaModel> | boolean;
266
- };
267
- export type BoolWithAggregatesFilter<$PrismaModel = never> = {
268
- equals?: boolean | Prisma.BooleanFieldRefInput<$PrismaModel>;
269
- not?: Prisma.NestedBoolWithAggregatesFilter<$PrismaModel> | boolean;
270
- _count?: Prisma.NestedIntFilter<$PrismaModel>;
271
- _min?: Prisma.NestedBoolFilter<$PrismaModel>;
272
- _max?: Prisma.NestedBoolFilter<$PrismaModel>;
273
- };
274
- export type StringNullableFilter<$PrismaModel = never> = {
275
- equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null;
276
- in?: string[] | null;
277
- notIn?: string[] | null;
278
- lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
279
- lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
280
- gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
281
- gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
282
- contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
283
- startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
284
- endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
285
- not?: Prisma.NestedStringNullableFilter<$PrismaModel> | string | null;
286
- };
287
- export type DecimalNullableFilter<$PrismaModel = never> = {
288
- equals?: runtime.Decimal | runtime.DecimalJsLike | number | string | Prisma.DecimalFieldRefInput<$PrismaModel> | null;
289
- in?: runtime.Decimal[] | runtime.DecimalJsLike[] | number[] | string[] | null;
290
- notIn?: runtime.Decimal[] | runtime.DecimalJsLike[] | number[] | string[] | null;
291
- lt?: runtime.Decimal | runtime.DecimalJsLike | number | string | Prisma.DecimalFieldRefInput<$PrismaModel>;
292
- lte?: runtime.Decimal | runtime.DecimalJsLike | number | string | Prisma.DecimalFieldRefInput<$PrismaModel>;
293
- gt?: runtime.Decimal | runtime.DecimalJsLike | number | string | Prisma.DecimalFieldRefInput<$PrismaModel>;
294
- gte?: runtime.Decimal | runtime.DecimalJsLike | number | string | Prisma.DecimalFieldRefInput<$PrismaModel>;
295
- not?: Prisma.NestedDecimalNullableFilter<$PrismaModel> | runtime.Decimal | runtime.DecimalJsLike | number | string | null;
296
- };
297
- export type StringNullableWithAggregatesFilter<$PrismaModel = never> = {
298
- equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null;
299
- in?: string[] | null;
300
- notIn?: string[] | null;
301
- lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
302
- lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
303
- gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
304
- gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
305
- contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
306
- startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
307
- endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
308
- not?: Prisma.NestedStringNullableWithAggregatesFilter<$PrismaModel> | string | null;
309
- _count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
310
- _min?: Prisma.NestedStringNullableFilter<$PrismaModel>;
311
- _max?: Prisma.NestedStringNullableFilter<$PrismaModel>;
312
- };
313
- export type DecimalNullableWithAggregatesFilter<$PrismaModel = never> = {
314
- equals?: runtime.Decimal | runtime.DecimalJsLike | number | string | Prisma.DecimalFieldRefInput<$PrismaModel> | null;
315
- in?: runtime.Decimal[] | runtime.DecimalJsLike[] | number[] | string[] | null;
316
- notIn?: runtime.Decimal[] | runtime.DecimalJsLike[] | number[] | string[] | null;
317
- lt?: runtime.Decimal | runtime.DecimalJsLike | number | string | Prisma.DecimalFieldRefInput<$PrismaModel>;
318
- lte?: runtime.Decimal | runtime.DecimalJsLike | number | string | Prisma.DecimalFieldRefInput<$PrismaModel>;
319
- gt?: runtime.Decimal | runtime.DecimalJsLike | number | string | Prisma.DecimalFieldRefInput<$PrismaModel>;
320
- gte?: runtime.Decimal | runtime.DecimalJsLike | number | string | Prisma.DecimalFieldRefInput<$PrismaModel>;
321
- not?: Prisma.NestedDecimalNullableWithAggregatesFilter<$PrismaModel> | runtime.Decimal | runtime.DecimalJsLike | number | string | null;
322
- _count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
323
- _avg?: Prisma.NestedDecimalNullableFilter<$PrismaModel>;
324
- _sum?: Prisma.NestedDecimalNullableFilter<$PrismaModel>;
325
- _min?: Prisma.NestedDecimalNullableFilter<$PrismaModel>;
326
- _max?: Prisma.NestedDecimalNullableFilter<$PrismaModel>;
327
- };
328
- export type FloatFilter<$PrismaModel = never> = {
329
- equals?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
330
- in?: number[];
331
- notIn?: number[];
332
- lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
333
- lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
334
- gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
335
- gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
336
- not?: Prisma.NestedFloatFilter<$PrismaModel> | number;
337
- };
338
- export type FloatWithAggregatesFilter<$PrismaModel = never> = {
339
- equals?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
340
- in?: number[];
341
- notIn?: number[];
342
- lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
343
- lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
344
- gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
345
- gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
346
- not?: Prisma.NestedFloatWithAggregatesFilter<$PrismaModel> | number;
347
- _count?: Prisma.NestedIntFilter<$PrismaModel>;
348
- _avg?: Prisma.NestedFloatFilter<$PrismaModel>;
349
- _sum?: Prisma.NestedFloatFilter<$PrismaModel>;
350
- _min?: Prisma.NestedFloatFilter<$PrismaModel>;
351
- _max?: Prisma.NestedFloatFilter<$PrismaModel>;
352
- };
353
- export type EnumHostTypeFilter<$PrismaModel = never> = {
354
- equals?: $Enums.HostType | Prisma.EnumHostTypeFieldRefInput<$PrismaModel>;
355
- in?: $Enums.HostType[];
356
- notIn?: $Enums.HostType[];
357
- not?: Prisma.NestedEnumHostTypeFilter<$PrismaModel> | $Enums.HostType;
358
- };
359
- export type EnumHostTypeWithAggregatesFilter<$PrismaModel = never> = {
360
- equals?: $Enums.HostType | Prisma.EnumHostTypeFieldRefInput<$PrismaModel>;
361
- in?: $Enums.HostType[];
362
- notIn?: $Enums.HostType[];
363
- not?: Prisma.NestedEnumHostTypeWithAggregatesFilter<$PrismaModel> | $Enums.HostType;
364
- _count?: Prisma.NestedIntFilter<$PrismaModel>;
365
- _min?: Prisma.NestedEnumHostTypeFilter<$PrismaModel>;
366
- _max?: Prisma.NestedEnumHostTypeFilter<$PrismaModel>;
367
- };
368
- export type EnumModelTypeFilter<$PrismaModel = never> = {
369
- equals?: $Enums.ModelType | Prisma.EnumModelTypeFieldRefInput<$PrismaModel>;
370
- in?: $Enums.ModelType[];
371
- notIn?: $Enums.ModelType[];
372
- not?: Prisma.NestedEnumModelTypeFilter<$PrismaModel> | $Enums.ModelType;
373
- };
374
- export type EnumModelTypeWithAggregatesFilter<$PrismaModel = never> = {
375
- equals?: $Enums.ModelType | Prisma.EnumModelTypeFieldRefInput<$PrismaModel>;
376
- in?: $Enums.ModelType[];
377
- notIn?: $Enums.ModelType[];
378
- not?: Prisma.NestedEnumModelTypeWithAggregatesFilter<$PrismaModel> | $Enums.ModelType;
379
- _count?: Prisma.NestedIntFilter<$PrismaModel>;
380
- _min?: Prisma.NestedEnumModelTypeFilter<$PrismaModel>;
381
- _max?: Prisma.NestedEnumModelTypeFilter<$PrismaModel>;
382
- };
383
- export type NestedIntFilter<$PrismaModel = never> = {
384
- equals?: number | Prisma.IntFieldRefInput<$PrismaModel>;
385
- in?: number[];
386
- notIn?: number[];
387
- lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
388
- lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
389
- gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
390
- gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
391
- not?: Prisma.NestedIntFilter<$PrismaModel> | number;
392
- };
393
- export type NestedEnumContextLogRoleFilter<$PrismaModel = never> = {
394
- equals?: $Enums.ContextLogRole | Prisma.EnumContextLogRoleFieldRefInput<$PrismaModel>;
395
- in?: $Enums.ContextLogRole[];
396
- notIn?: $Enums.ContextLogRole[];
397
- not?: Prisma.NestedEnumContextLogRoleFilter<$PrismaModel> | $Enums.ContextLogRole;
398
- };
399
- export type NestedEnumContextLogSourceNullableFilter<$PrismaModel = never> = {
400
- equals?: $Enums.ContextLogSource | Prisma.EnumContextLogSourceFieldRefInput<$PrismaModel> | null;
401
- in?: $Enums.ContextLogSource[] | null;
402
- notIn?: $Enums.ContextLogSource[] | null;
403
- not?: Prisma.NestedEnumContextLogSourceNullableFilter<$PrismaModel> | $Enums.ContextLogSource | null;
404
- };
405
- export type NestedEnumContextLogTypeNullableFilter<$PrismaModel = never> = {
406
- equals?: $Enums.ContextLogType | Prisma.EnumContextLogTypeFieldRefInput<$PrismaModel> | null;
407
- in?: $Enums.ContextLogType[] | null;
408
- notIn?: $Enums.ContextLogType[] | null;
409
- not?: Prisma.NestedEnumContextLogTypeNullableFilter<$PrismaModel> | $Enums.ContextLogType | null;
410
- };
411
- export type NestedStringFilter<$PrismaModel = never> = {
412
- equals?: string | Prisma.StringFieldRefInput<$PrismaModel>;
413
- in?: string[];
414
- notIn?: string[];
415
- lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
416
- lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
417
- gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
418
- gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
419
- contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
420
- startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
421
- endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
422
- not?: Prisma.NestedStringFilter<$PrismaModel> | string;
423
- };
424
- export type NestedIntNullableFilter<$PrismaModel = never> = {
425
- equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null;
426
- in?: number[] | null;
427
- notIn?: number[] | null;
428
- lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
429
- lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
430
- gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
431
- gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
432
- not?: Prisma.NestedIntNullableFilter<$PrismaModel> | number | null;
433
- };
434
- export type NestedDateTimeFilter<$PrismaModel = never> = {
435
- equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
436
- in?: Date[] | string[];
437
- notIn?: Date[] | string[];
438
- lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
439
- lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
440
- gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
441
- gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
442
- not?: Prisma.NestedDateTimeFilter<$PrismaModel> | Date | string;
443
- };
444
- export type NestedIntWithAggregatesFilter<$PrismaModel = never> = {
445
- equals?: number | Prisma.IntFieldRefInput<$PrismaModel>;
446
- in?: number[];
447
- notIn?: number[];
448
- lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
449
- lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
450
- gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
451
- gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
452
- not?: Prisma.NestedIntWithAggregatesFilter<$PrismaModel> | number;
453
- _count?: Prisma.NestedIntFilter<$PrismaModel>;
454
- _avg?: Prisma.NestedFloatFilter<$PrismaModel>;
455
- _sum?: Prisma.NestedIntFilter<$PrismaModel>;
456
- _min?: Prisma.NestedIntFilter<$PrismaModel>;
457
- _max?: Prisma.NestedIntFilter<$PrismaModel>;
458
- };
459
- export type NestedFloatFilter<$PrismaModel = never> = {
460
- equals?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
461
- in?: number[];
462
- notIn?: number[];
463
- lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
464
- lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
465
- gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
466
- gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
467
- not?: Prisma.NestedFloatFilter<$PrismaModel> | number;
468
- };
469
- export type NestedEnumContextLogRoleWithAggregatesFilter<$PrismaModel = never> = {
470
- equals?: $Enums.ContextLogRole | Prisma.EnumContextLogRoleFieldRefInput<$PrismaModel>;
471
- in?: $Enums.ContextLogRole[];
472
- notIn?: $Enums.ContextLogRole[];
473
- not?: Prisma.NestedEnumContextLogRoleWithAggregatesFilter<$PrismaModel> | $Enums.ContextLogRole;
474
- _count?: Prisma.NestedIntFilter<$PrismaModel>;
475
- _min?: Prisma.NestedEnumContextLogRoleFilter<$PrismaModel>;
476
- _max?: Prisma.NestedEnumContextLogRoleFilter<$PrismaModel>;
477
- };
478
- export type NestedEnumContextLogSourceNullableWithAggregatesFilter<$PrismaModel = never> = {
479
- equals?: $Enums.ContextLogSource | Prisma.EnumContextLogSourceFieldRefInput<$PrismaModel> | null;
480
- in?: $Enums.ContextLogSource[] | null;
481
- notIn?: $Enums.ContextLogSource[] | null;
482
- not?: Prisma.NestedEnumContextLogSourceNullableWithAggregatesFilter<$PrismaModel> | $Enums.ContextLogSource | null;
483
- _count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
484
- _min?: Prisma.NestedEnumContextLogSourceNullableFilter<$PrismaModel>;
485
- _max?: Prisma.NestedEnumContextLogSourceNullableFilter<$PrismaModel>;
486
- };
487
- export type NestedEnumContextLogTypeNullableWithAggregatesFilter<$PrismaModel = never> = {
488
- equals?: $Enums.ContextLogType | Prisma.EnumContextLogTypeFieldRefInput<$PrismaModel> | null;
489
- in?: $Enums.ContextLogType[] | null;
490
- notIn?: $Enums.ContextLogType[] | null;
491
- not?: Prisma.NestedEnumContextLogTypeNullableWithAggregatesFilter<$PrismaModel> | $Enums.ContextLogType | null;
492
- _count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
493
- _min?: Prisma.NestedEnumContextLogTypeNullableFilter<$PrismaModel>;
494
- _max?: Prisma.NestedEnumContextLogTypeNullableFilter<$PrismaModel>;
495
- };
496
- export type NestedStringWithAggregatesFilter<$PrismaModel = never> = {
497
- equals?: string | Prisma.StringFieldRefInput<$PrismaModel>;
498
- in?: string[];
499
- notIn?: string[];
500
- lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
501
- lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
502
- gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
503
- gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
504
- contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
505
- startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
506
- endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
507
- not?: Prisma.NestedStringWithAggregatesFilter<$PrismaModel> | string;
508
- _count?: Prisma.NestedIntFilter<$PrismaModel>;
509
- _min?: Prisma.NestedStringFilter<$PrismaModel>;
510
- _max?: Prisma.NestedStringFilter<$PrismaModel>;
511
- };
512
- export type NestedIntNullableWithAggregatesFilter<$PrismaModel = never> = {
513
- equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null;
514
- in?: number[] | null;
515
- notIn?: number[] | null;
516
- lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
517
- lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
518
- gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
519
- gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
520
- not?: Prisma.NestedIntNullableWithAggregatesFilter<$PrismaModel> | number | null;
521
- _count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
522
- _avg?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
523
- _sum?: Prisma.NestedIntNullableFilter<$PrismaModel>;
524
- _min?: Prisma.NestedIntNullableFilter<$PrismaModel>;
525
- _max?: Prisma.NestedIntNullableFilter<$PrismaModel>;
526
- };
527
- export type NestedFloatNullableFilter<$PrismaModel = never> = {
528
- equals?: number | Prisma.FloatFieldRefInput<$PrismaModel> | null;
529
- in?: number[] | null;
530
- notIn?: number[] | null;
531
- lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
532
- lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
533
- gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
534
- gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
535
- not?: Prisma.NestedFloatNullableFilter<$PrismaModel> | number | null;
536
- };
537
- export type NestedDateTimeWithAggregatesFilter<$PrismaModel = never> = {
538
- equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
539
- in?: Date[] | string[];
540
- notIn?: Date[] | string[];
541
- lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
542
- lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
543
- gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
544
- gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
545
- not?: Prisma.NestedDateTimeWithAggregatesFilter<$PrismaModel> | Date | string;
546
- _count?: Prisma.NestedIntFilter<$PrismaModel>;
547
- _min?: Prisma.NestedDateTimeFilter<$PrismaModel>;
548
- _max?: Prisma.NestedDateTimeFilter<$PrismaModel>;
549
- };
550
- export type NestedEnumCostSourceFilter<$PrismaModel = never> = {
551
- equals?: $Enums.CostSource | Prisma.EnumCostSourceFieldRefInput<$PrismaModel>;
552
- in?: $Enums.CostSource[];
553
- notIn?: $Enums.CostSource[];
554
- not?: Prisma.NestedEnumCostSourceFilter<$PrismaModel> | $Enums.CostSource;
555
- };
556
- export type NestedEnumCostSourceWithAggregatesFilter<$PrismaModel = never> = {
557
- equals?: $Enums.CostSource | Prisma.EnumCostSourceFieldRefInput<$PrismaModel>;
558
- in?: $Enums.CostSource[];
559
- notIn?: $Enums.CostSource[];
560
- not?: Prisma.NestedEnumCostSourceWithAggregatesFilter<$PrismaModel> | $Enums.CostSource;
561
- _count?: Prisma.NestedIntFilter<$PrismaModel>;
562
- _min?: Prisma.NestedEnumCostSourceFilter<$PrismaModel>;
563
- _max?: Prisma.NestedEnumCostSourceFilter<$PrismaModel>;
564
- };
565
- export type NestedFloatNullableWithAggregatesFilter<$PrismaModel = never> = {
566
- equals?: number | Prisma.FloatFieldRefInput<$PrismaModel> | null;
567
- in?: number[] | null;
568
- notIn?: number[] | null;
569
- lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
570
- lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
571
- gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
572
- gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
573
- not?: Prisma.NestedFloatNullableWithAggregatesFilter<$PrismaModel> | number | null;
574
- _count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
575
- _avg?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
576
- _sum?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
577
- _min?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
578
- _max?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
579
- };
580
- export type NestedEnumMessageKindFilter<$PrismaModel = never> = {
581
- equals?: $Enums.MessageKind | Prisma.EnumMessageKindFieldRefInput<$PrismaModel>;
582
- in?: $Enums.MessageKind[];
583
- notIn?: $Enums.MessageKind[];
584
- not?: Prisma.NestedEnumMessageKindFilter<$PrismaModel> | $Enums.MessageKind;
585
- };
586
- export type NestedEnumMessageKindWithAggregatesFilter<$PrismaModel = never> = {
587
- equals?: $Enums.MessageKind | Prisma.EnumMessageKindFieldRefInput<$PrismaModel>;
588
- in?: $Enums.MessageKind[];
589
- notIn?: $Enums.MessageKind[];
590
- not?: Prisma.NestedEnumMessageKindWithAggregatesFilter<$PrismaModel> | $Enums.MessageKind;
591
- _count?: Prisma.NestedIntFilter<$PrismaModel>;
592
- _min?: Prisma.NestedEnumMessageKindFilter<$PrismaModel>;
593
- _max?: Prisma.NestedEnumMessageKindFilter<$PrismaModel>;
594
- };
595
- export type NestedEnumAttachmentPurposeFilter<$PrismaModel = never> = {
596
- equals?: $Enums.AttachmentPurpose | Prisma.EnumAttachmentPurposeFieldRefInput<$PrismaModel>;
597
- in?: $Enums.AttachmentPurpose[];
598
- notIn?: $Enums.AttachmentPurpose[];
599
- not?: Prisma.NestedEnumAttachmentPurposeFilter<$PrismaModel> | $Enums.AttachmentPurpose;
600
- };
601
- export type NestedEnumAttachmentPurposeWithAggregatesFilter<$PrismaModel = never> = {
602
- equals?: $Enums.AttachmentPurpose | Prisma.EnumAttachmentPurposeFieldRefInput<$PrismaModel>;
603
- in?: $Enums.AttachmentPurpose[];
604
- notIn?: $Enums.AttachmentPurpose[];
605
- not?: Prisma.NestedEnumAttachmentPurposeWithAggregatesFilter<$PrismaModel> | $Enums.AttachmentPurpose;
606
- _count?: Prisma.NestedIntFilter<$PrismaModel>;
607
- _min?: Prisma.NestedEnumAttachmentPurposeFilter<$PrismaModel>;
608
- _max?: Prisma.NestedEnumAttachmentPurposeFilter<$PrismaModel>;
609
- };
610
- export type NestedEnumRecipientTypeFilter<$PrismaModel = never> = {
611
- equals?: $Enums.RecipientType | Prisma.EnumRecipientTypeFieldRefInput<$PrismaModel>;
612
- in?: $Enums.RecipientType[];
613
- notIn?: $Enums.RecipientType[];
614
- not?: Prisma.NestedEnumRecipientTypeFilter<$PrismaModel> | $Enums.RecipientType;
615
- };
616
- export type NestedDateTimeNullableFilter<$PrismaModel = never> = {
617
- equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel> | null;
618
- in?: Date[] | string[] | null;
619
- notIn?: Date[] | string[] | null;
620
- lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
621
- lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
622
- gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
623
- gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
624
- not?: Prisma.NestedDateTimeNullableFilter<$PrismaModel> | Date | string | null;
625
- };
626
- export type NestedEnumRecipientTypeWithAggregatesFilter<$PrismaModel = never> = {
627
- equals?: $Enums.RecipientType | Prisma.EnumRecipientTypeFieldRefInput<$PrismaModel>;
628
- in?: $Enums.RecipientType[];
629
- notIn?: $Enums.RecipientType[];
630
- not?: Prisma.NestedEnumRecipientTypeWithAggregatesFilter<$PrismaModel> | $Enums.RecipientType;
631
- _count?: Prisma.NestedIntFilter<$PrismaModel>;
632
- _min?: Prisma.NestedEnumRecipientTypeFilter<$PrismaModel>;
633
- _max?: Prisma.NestedEnumRecipientTypeFilter<$PrismaModel>;
634
- };
635
- export type NestedDateTimeNullableWithAggregatesFilter<$PrismaModel = never> = {
636
- equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel> | null;
637
- in?: Date[] | string[] | null;
638
- notIn?: Date[] | string[] | null;
639
- lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
640
- lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
641
- gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
642
- gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
643
- not?: Prisma.NestedDateTimeNullableWithAggregatesFilter<$PrismaModel> | Date | string | null;
644
- _count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
645
- _min?: Prisma.NestedDateTimeNullableFilter<$PrismaModel>;
646
- _max?: Prisma.NestedDateTimeNullableFilter<$PrismaModel>;
647
- };
648
- export type NestedBoolFilter<$PrismaModel = never> = {
649
- equals?: boolean | Prisma.BooleanFieldRefInput<$PrismaModel>;
650
- not?: Prisma.NestedBoolFilter<$PrismaModel> | boolean;
651
- };
652
- export type NestedBoolWithAggregatesFilter<$PrismaModel = never> = {
653
- equals?: boolean | Prisma.BooleanFieldRefInput<$PrismaModel>;
654
- not?: Prisma.NestedBoolWithAggregatesFilter<$PrismaModel> | boolean;
655
- _count?: Prisma.NestedIntFilter<$PrismaModel>;
656
- _min?: Prisma.NestedBoolFilter<$PrismaModel>;
657
- _max?: Prisma.NestedBoolFilter<$PrismaModel>;
658
- };
659
- export type NestedStringNullableFilter<$PrismaModel = never> = {
660
- equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null;
661
- in?: string[] | null;
662
- notIn?: string[] | null;
663
- lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
664
- lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
665
- gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
666
- gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
667
- contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
668
- startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
669
- endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
670
- not?: Prisma.NestedStringNullableFilter<$PrismaModel> | string | null;
671
- };
672
- export type NestedDecimalNullableFilter<$PrismaModel = never> = {
673
- equals?: runtime.Decimal | runtime.DecimalJsLike | number | string | Prisma.DecimalFieldRefInput<$PrismaModel> | null;
674
- in?: runtime.Decimal[] | runtime.DecimalJsLike[] | number[] | string[] | null;
675
- notIn?: runtime.Decimal[] | runtime.DecimalJsLike[] | number[] | string[] | null;
676
- lt?: runtime.Decimal | runtime.DecimalJsLike | number | string | Prisma.DecimalFieldRefInput<$PrismaModel>;
677
- lte?: runtime.Decimal | runtime.DecimalJsLike | number | string | Prisma.DecimalFieldRefInput<$PrismaModel>;
678
- gt?: runtime.Decimal | runtime.DecimalJsLike | number | string | Prisma.DecimalFieldRefInput<$PrismaModel>;
679
- gte?: runtime.Decimal | runtime.DecimalJsLike | number | string | Prisma.DecimalFieldRefInput<$PrismaModel>;
680
- not?: Prisma.NestedDecimalNullableFilter<$PrismaModel> | runtime.Decimal | runtime.DecimalJsLike | number | string | null;
681
- };
682
- export type NestedStringNullableWithAggregatesFilter<$PrismaModel = never> = {
683
- equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null;
684
- in?: string[] | null;
685
- notIn?: string[] | null;
686
- lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
687
- lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
688
- gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
689
- gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
690
- contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
691
- startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
692
- endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
693
- not?: Prisma.NestedStringNullableWithAggregatesFilter<$PrismaModel> | string | null;
694
- _count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
695
- _min?: Prisma.NestedStringNullableFilter<$PrismaModel>;
696
- _max?: Prisma.NestedStringNullableFilter<$PrismaModel>;
697
- };
698
- export type NestedDecimalNullableWithAggregatesFilter<$PrismaModel = never> = {
699
- equals?: runtime.Decimal | runtime.DecimalJsLike | number | string | Prisma.DecimalFieldRefInput<$PrismaModel> | null;
700
- in?: runtime.Decimal[] | runtime.DecimalJsLike[] | number[] | string[] | null;
701
- notIn?: runtime.Decimal[] | runtime.DecimalJsLike[] | number[] | string[] | null;
702
- lt?: runtime.Decimal | runtime.DecimalJsLike | number | string | Prisma.DecimalFieldRefInput<$PrismaModel>;
703
- lte?: runtime.Decimal | runtime.DecimalJsLike | number | string | Prisma.DecimalFieldRefInput<$PrismaModel>;
704
- gt?: runtime.Decimal | runtime.DecimalJsLike | number | string | Prisma.DecimalFieldRefInput<$PrismaModel>;
705
- gte?: runtime.Decimal | runtime.DecimalJsLike | number | string | Prisma.DecimalFieldRefInput<$PrismaModel>;
706
- not?: Prisma.NestedDecimalNullableWithAggregatesFilter<$PrismaModel> | runtime.Decimal | runtime.DecimalJsLike | number | string | null;
707
- _count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
708
- _avg?: Prisma.NestedDecimalNullableFilter<$PrismaModel>;
709
- _sum?: Prisma.NestedDecimalNullableFilter<$PrismaModel>;
710
- _min?: Prisma.NestedDecimalNullableFilter<$PrismaModel>;
711
- _max?: Prisma.NestedDecimalNullableFilter<$PrismaModel>;
712
- };
713
- export type NestedFloatWithAggregatesFilter<$PrismaModel = never> = {
714
- equals?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
715
- in?: number[];
716
- notIn?: number[];
717
- lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
718
- lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
719
- gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
720
- gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
721
- not?: Prisma.NestedFloatWithAggregatesFilter<$PrismaModel> | number;
722
- _count?: Prisma.NestedIntFilter<$PrismaModel>;
723
- _avg?: Prisma.NestedFloatFilter<$PrismaModel>;
724
- _sum?: Prisma.NestedFloatFilter<$PrismaModel>;
725
- _min?: Prisma.NestedFloatFilter<$PrismaModel>;
726
- _max?: Prisma.NestedFloatFilter<$PrismaModel>;
727
- };
728
- export type NestedEnumHostTypeFilter<$PrismaModel = never> = {
729
- equals?: $Enums.HostType | Prisma.EnumHostTypeFieldRefInput<$PrismaModel>;
730
- in?: $Enums.HostType[];
731
- notIn?: $Enums.HostType[];
732
- not?: Prisma.NestedEnumHostTypeFilter<$PrismaModel> | $Enums.HostType;
733
- };
734
- export type NestedEnumHostTypeWithAggregatesFilter<$PrismaModel = never> = {
735
- equals?: $Enums.HostType | Prisma.EnumHostTypeFieldRefInput<$PrismaModel>;
736
- in?: $Enums.HostType[];
737
- notIn?: $Enums.HostType[];
738
- not?: Prisma.NestedEnumHostTypeWithAggregatesFilter<$PrismaModel> | $Enums.HostType;
739
- _count?: Prisma.NestedIntFilter<$PrismaModel>;
740
- _min?: Prisma.NestedEnumHostTypeFilter<$PrismaModel>;
741
- _max?: Prisma.NestedEnumHostTypeFilter<$PrismaModel>;
742
- };
743
- export type NestedEnumModelTypeFilter<$PrismaModel = never> = {
744
- equals?: $Enums.ModelType | Prisma.EnumModelTypeFieldRefInput<$PrismaModel>;
745
- in?: $Enums.ModelType[];
746
- notIn?: $Enums.ModelType[];
747
- not?: Prisma.NestedEnumModelTypeFilter<$PrismaModel> | $Enums.ModelType;
748
- };
749
- export type NestedEnumModelTypeWithAggregatesFilter<$PrismaModel = never> = {
750
- equals?: $Enums.ModelType | Prisma.EnumModelTypeFieldRefInput<$PrismaModel>;
751
- in?: $Enums.ModelType[];
752
- notIn?: $Enums.ModelType[];
753
- not?: Prisma.NestedEnumModelTypeWithAggregatesFilter<$PrismaModel> | $Enums.ModelType;
754
- _count?: Prisma.NestedIntFilter<$PrismaModel>;
755
- _min?: Prisma.NestedEnumModelTypeFilter<$PrismaModel>;
756
- _max?: Prisma.NestedEnumModelTypeFilter<$PrismaModel>;
757
- };
758
- //# sourceMappingURL=commonInputTypes.d.ts.map