pacatui 0.1.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.
Files changed (51) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +153 -0
  3. package/generated/prisma/browser.ts +59 -0
  4. package/generated/prisma/client.ts +81 -0
  5. package/generated/prisma/commonInputTypes.ts +402 -0
  6. package/generated/prisma/enums.ts +15 -0
  7. package/generated/prisma/internal/class.ts +260 -0
  8. package/generated/prisma/internal/prismaNamespace.ts +1362 -0
  9. package/generated/prisma/internal/prismaNamespaceBrowser.ts +190 -0
  10. package/generated/prisma/models/Customer.ts +1489 -0
  11. package/generated/prisma/models/Invoice.ts +1837 -0
  12. package/generated/prisma/models/Project.ts +1981 -0
  13. package/generated/prisma/models/Setting.ts +1086 -0
  14. package/generated/prisma/models/Tag.ts +1288 -0
  15. package/generated/prisma/models/Task.ts +1669 -0
  16. package/generated/prisma/models/TaskTag.ts +1340 -0
  17. package/generated/prisma/models/TimeEntry.ts +1602 -0
  18. package/generated/prisma/models.ts +19 -0
  19. package/package.json +71 -0
  20. package/prisma/migrations/20260115051911_init/migration.sql +71 -0
  21. package/prisma/migrations/20260115062427_add_time_tracking/migration.sql +20 -0
  22. package/prisma/migrations/20260117233250_add_customers_invoices/migration.sql +81 -0
  23. package/prisma/migrations/migration_lock.toml +3 -0
  24. package/prisma/schema.prisma +162 -0
  25. package/src/App.tsx +1492 -0
  26. package/src/components/CreateInvoiceModal.tsx +222 -0
  27. package/src/components/CustomerModal.tsx +158 -0
  28. package/src/components/CustomerSelectModal.tsx +142 -0
  29. package/src/components/Dashboard.tsx +242 -0
  30. package/src/components/DateTimePicker.tsx +335 -0
  31. package/src/components/EditTimeEntryModal.tsx +293 -0
  32. package/src/components/Header.tsx +65 -0
  33. package/src/components/HelpView.tsx +109 -0
  34. package/src/components/InputModal.tsx +79 -0
  35. package/src/components/InvoicesView.tsx +297 -0
  36. package/src/components/Modal.tsx +38 -0
  37. package/src/components/ProjectList.tsx +114 -0
  38. package/src/components/ProjectModal.tsx +116 -0
  39. package/src/components/SettingsView.tsx +145 -0
  40. package/src/components/SplashScreen.tsx +25 -0
  41. package/src/components/StatusBar.tsx +93 -0
  42. package/src/components/TaskList.tsx +143 -0
  43. package/src/components/Timer.tsx +95 -0
  44. package/src/components/TimerModals.tsx +120 -0
  45. package/src/components/TimesheetView.tsx +218 -0
  46. package/src/components/index.ts +17 -0
  47. package/src/db.ts +629 -0
  48. package/src/hooks/usePaste.ts +69 -0
  49. package/src/index.tsx +75 -0
  50. package/src/stripe.ts +163 -0
  51. package/src/types.ts +361 -0
@@ -0,0 +1,402 @@
1
+
2
+ /* !!! This is code generated by Prisma. Do not edit directly. !!! */
3
+ /* eslint-disable */
4
+ // biome-ignore-all lint: generated file
5
+ // @ts-nocheck
6
+ /*
7
+ * This file exports various common sort, input & filter types that are not directly linked to a particular model.
8
+ *
9
+ * 🟢 You can import this file directly.
10
+ */
11
+
12
+ import type * as runtime from "@prisma/client/runtime/client"
13
+ import * as $Enums from "./enums.ts"
14
+ import type * as Prisma from "./internal/prismaNamespace.ts"
15
+
16
+
17
+ export type StringFilter<$PrismaModel = never> = {
18
+ equals?: string | Prisma.StringFieldRefInput<$PrismaModel>
19
+ in?: string[]
20
+ notIn?: string[]
21
+ lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
22
+ lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
23
+ gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
24
+ gte?: string | Prisma.StringFieldRefInput<$PrismaModel>
25
+ contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
26
+ startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
27
+ endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
28
+ not?: Prisma.NestedStringFilter<$PrismaModel> | string
29
+ }
30
+
31
+ export type StringNullableFilter<$PrismaModel = never> = {
32
+ equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null
33
+ in?: string[] | null
34
+ notIn?: string[] | null
35
+ lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
36
+ lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
37
+ gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
38
+ gte?: string | Prisma.StringFieldRefInput<$PrismaModel>
39
+ contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
40
+ startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
41
+ endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
42
+ not?: Prisma.NestedStringNullableFilter<$PrismaModel> | string | null
43
+ }
44
+
45
+ export type DateTimeFilter<$PrismaModel = never> = {
46
+ equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
47
+ in?: Date[] | string[]
48
+ notIn?: Date[] | string[]
49
+ lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
50
+ lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
51
+ gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
52
+ gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
53
+ not?: Prisma.NestedDateTimeFilter<$PrismaModel> | Date | string
54
+ }
55
+
56
+ export type SortOrderInput = {
57
+ sort: Prisma.SortOrder
58
+ nulls?: Prisma.NullsOrder
59
+ }
60
+
61
+ export type StringWithAggregatesFilter<$PrismaModel = never> = {
62
+ equals?: string | Prisma.StringFieldRefInput<$PrismaModel>
63
+ in?: string[]
64
+ notIn?: string[]
65
+ lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
66
+ lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
67
+ gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
68
+ gte?: string | Prisma.StringFieldRefInput<$PrismaModel>
69
+ contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
70
+ startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
71
+ endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
72
+ not?: Prisma.NestedStringWithAggregatesFilter<$PrismaModel> | string
73
+ _count?: Prisma.NestedIntFilter<$PrismaModel>
74
+ _min?: Prisma.NestedStringFilter<$PrismaModel>
75
+ _max?: Prisma.NestedStringFilter<$PrismaModel>
76
+ }
77
+
78
+ export type StringNullableWithAggregatesFilter<$PrismaModel = never> = {
79
+ equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null
80
+ in?: string[] | null
81
+ notIn?: string[] | null
82
+ lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
83
+ lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
84
+ gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
85
+ gte?: string | Prisma.StringFieldRefInput<$PrismaModel>
86
+ contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
87
+ startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
88
+ endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
89
+ not?: Prisma.NestedStringNullableWithAggregatesFilter<$PrismaModel> | string | null
90
+ _count?: Prisma.NestedIntNullableFilter<$PrismaModel>
91
+ _min?: Prisma.NestedStringNullableFilter<$PrismaModel>
92
+ _max?: Prisma.NestedStringNullableFilter<$PrismaModel>
93
+ }
94
+
95
+ export type DateTimeWithAggregatesFilter<$PrismaModel = never> = {
96
+ equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
97
+ in?: Date[] | string[]
98
+ notIn?: Date[] | string[]
99
+ lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
100
+ lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
101
+ gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
102
+ gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
103
+ not?: Prisma.NestedDateTimeWithAggregatesFilter<$PrismaModel> | Date | string
104
+ _count?: Prisma.NestedIntFilter<$PrismaModel>
105
+ _min?: Prisma.NestedDateTimeFilter<$PrismaModel>
106
+ _max?: Prisma.NestedDateTimeFilter<$PrismaModel>
107
+ }
108
+
109
+ export type FloatNullableFilter<$PrismaModel = never> = {
110
+ equals?: number | Prisma.FloatFieldRefInput<$PrismaModel> | null
111
+ in?: number[] | null
112
+ notIn?: number[] | null
113
+ lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>
114
+ lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>
115
+ gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>
116
+ gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>
117
+ not?: Prisma.NestedFloatNullableFilter<$PrismaModel> | number | null
118
+ }
119
+
120
+ export type BoolFilter<$PrismaModel = never> = {
121
+ equals?: boolean | Prisma.BooleanFieldRefInput<$PrismaModel>
122
+ not?: Prisma.NestedBoolFilter<$PrismaModel> | boolean
123
+ }
124
+
125
+ export type FloatNullableWithAggregatesFilter<$PrismaModel = never> = {
126
+ equals?: number | Prisma.FloatFieldRefInput<$PrismaModel> | null
127
+ in?: number[] | null
128
+ notIn?: number[] | null
129
+ lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>
130
+ lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>
131
+ gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>
132
+ gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>
133
+ not?: Prisma.NestedFloatNullableWithAggregatesFilter<$PrismaModel> | number | null
134
+ _count?: Prisma.NestedIntNullableFilter<$PrismaModel>
135
+ _avg?: Prisma.NestedFloatNullableFilter<$PrismaModel>
136
+ _sum?: Prisma.NestedFloatNullableFilter<$PrismaModel>
137
+ _min?: Prisma.NestedFloatNullableFilter<$PrismaModel>
138
+ _max?: Prisma.NestedFloatNullableFilter<$PrismaModel>
139
+ }
140
+
141
+ export type BoolWithAggregatesFilter<$PrismaModel = never> = {
142
+ equals?: boolean | Prisma.BooleanFieldRefInput<$PrismaModel>
143
+ not?: Prisma.NestedBoolWithAggregatesFilter<$PrismaModel> | boolean
144
+ _count?: Prisma.NestedIntFilter<$PrismaModel>
145
+ _min?: Prisma.NestedBoolFilter<$PrismaModel>
146
+ _max?: Prisma.NestedBoolFilter<$PrismaModel>
147
+ }
148
+
149
+ export type DateTimeNullableFilter<$PrismaModel = never> = {
150
+ equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel> | null
151
+ in?: Date[] | string[] | null
152
+ notIn?: Date[] | string[] | null
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.NestedDateTimeNullableFilter<$PrismaModel> | Date | string | null
158
+ }
159
+
160
+ export type DateTimeNullableWithAggregatesFilter<$PrismaModel = never> = {
161
+ equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel> | null
162
+ in?: Date[] | string[] | null
163
+ notIn?: Date[] | string[] | null
164
+ lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
165
+ lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
166
+ gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
167
+ gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
168
+ not?: Prisma.NestedDateTimeNullableWithAggregatesFilter<$PrismaModel> | Date | string | null
169
+ _count?: Prisma.NestedIntNullableFilter<$PrismaModel>
170
+ _min?: Prisma.NestedDateTimeNullableFilter<$PrismaModel>
171
+ _max?: Prisma.NestedDateTimeNullableFilter<$PrismaModel>
172
+ }
173
+
174
+ export type FloatFilter<$PrismaModel = never> = {
175
+ equals?: number | Prisma.FloatFieldRefInput<$PrismaModel>
176
+ in?: number[]
177
+ notIn?: number[]
178
+ lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>
179
+ lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>
180
+ gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>
181
+ gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>
182
+ not?: Prisma.NestedFloatFilter<$PrismaModel> | number
183
+ }
184
+
185
+ export type FloatWithAggregatesFilter<$PrismaModel = never> = {
186
+ equals?: number | Prisma.FloatFieldRefInput<$PrismaModel>
187
+ in?: number[]
188
+ notIn?: number[]
189
+ lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>
190
+ lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>
191
+ gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>
192
+ gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>
193
+ not?: Prisma.NestedFloatWithAggregatesFilter<$PrismaModel> | number
194
+ _count?: Prisma.NestedIntFilter<$PrismaModel>
195
+ _avg?: Prisma.NestedFloatFilter<$PrismaModel>
196
+ _sum?: Prisma.NestedFloatFilter<$PrismaModel>
197
+ _min?: Prisma.NestedFloatFilter<$PrismaModel>
198
+ _max?: Prisma.NestedFloatFilter<$PrismaModel>
199
+ }
200
+
201
+ export type NestedStringFilter<$PrismaModel = never> = {
202
+ equals?: string | Prisma.StringFieldRefInput<$PrismaModel>
203
+ in?: string[]
204
+ notIn?: string[]
205
+ lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
206
+ lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
207
+ gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
208
+ gte?: string | Prisma.StringFieldRefInput<$PrismaModel>
209
+ contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
210
+ startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
211
+ endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
212
+ not?: Prisma.NestedStringFilter<$PrismaModel> | string
213
+ }
214
+
215
+ export type NestedStringNullableFilter<$PrismaModel = never> = {
216
+ equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null
217
+ in?: string[] | null
218
+ notIn?: string[] | null
219
+ lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
220
+ lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
221
+ gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
222
+ gte?: string | Prisma.StringFieldRefInput<$PrismaModel>
223
+ contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
224
+ startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
225
+ endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
226
+ not?: Prisma.NestedStringNullableFilter<$PrismaModel> | string | null
227
+ }
228
+
229
+ export type NestedDateTimeFilter<$PrismaModel = never> = {
230
+ equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
231
+ in?: Date[] | string[]
232
+ notIn?: Date[] | string[]
233
+ lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
234
+ lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
235
+ gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
236
+ gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
237
+ not?: Prisma.NestedDateTimeFilter<$PrismaModel> | Date | string
238
+ }
239
+
240
+ export type NestedStringWithAggregatesFilter<$PrismaModel = never> = {
241
+ equals?: string | Prisma.StringFieldRefInput<$PrismaModel>
242
+ in?: string[]
243
+ notIn?: string[]
244
+ lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
245
+ lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
246
+ gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
247
+ gte?: string | Prisma.StringFieldRefInput<$PrismaModel>
248
+ contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
249
+ startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
250
+ endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
251
+ not?: Prisma.NestedStringWithAggregatesFilter<$PrismaModel> | string
252
+ _count?: Prisma.NestedIntFilter<$PrismaModel>
253
+ _min?: Prisma.NestedStringFilter<$PrismaModel>
254
+ _max?: Prisma.NestedStringFilter<$PrismaModel>
255
+ }
256
+
257
+ export type NestedIntFilter<$PrismaModel = never> = {
258
+ equals?: number | Prisma.IntFieldRefInput<$PrismaModel>
259
+ in?: number[]
260
+ notIn?: number[]
261
+ lt?: number | Prisma.IntFieldRefInput<$PrismaModel>
262
+ lte?: number | Prisma.IntFieldRefInput<$PrismaModel>
263
+ gt?: number | Prisma.IntFieldRefInput<$PrismaModel>
264
+ gte?: number | Prisma.IntFieldRefInput<$PrismaModel>
265
+ not?: Prisma.NestedIntFilter<$PrismaModel> | number
266
+ }
267
+
268
+ export type NestedStringNullableWithAggregatesFilter<$PrismaModel = never> = {
269
+ equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null
270
+ in?: string[] | null
271
+ notIn?: string[] | null
272
+ lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
273
+ lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
274
+ gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
275
+ gte?: string | Prisma.StringFieldRefInput<$PrismaModel>
276
+ contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
277
+ startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
278
+ endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
279
+ not?: Prisma.NestedStringNullableWithAggregatesFilter<$PrismaModel> | string | null
280
+ _count?: Prisma.NestedIntNullableFilter<$PrismaModel>
281
+ _min?: Prisma.NestedStringNullableFilter<$PrismaModel>
282
+ _max?: Prisma.NestedStringNullableFilter<$PrismaModel>
283
+ }
284
+
285
+ export type NestedIntNullableFilter<$PrismaModel = never> = {
286
+ equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null
287
+ in?: number[] | null
288
+ notIn?: number[] | null
289
+ lt?: number | Prisma.IntFieldRefInput<$PrismaModel>
290
+ lte?: number | Prisma.IntFieldRefInput<$PrismaModel>
291
+ gt?: number | Prisma.IntFieldRefInput<$PrismaModel>
292
+ gte?: number | Prisma.IntFieldRefInput<$PrismaModel>
293
+ not?: Prisma.NestedIntNullableFilter<$PrismaModel> | number | null
294
+ }
295
+
296
+ export type NestedDateTimeWithAggregatesFilter<$PrismaModel = never> = {
297
+ equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
298
+ in?: Date[] | string[]
299
+ notIn?: Date[] | string[]
300
+ lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
301
+ lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
302
+ gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
303
+ gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
304
+ not?: Prisma.NestedDateTimeWithAggregatesFilter<$PrismaModel> | Date | string
305
+ _count?: Prisma.NestedIntFilter<$PrismaModel>
306
+ _min?: Prisma.NestedDateTimeFilter<$PrismaModel>
307
+ _max?: Prisma.NestedDateTimeFilter<$PrismaModel>
308
+ }
309
+
310
+ export type NestedFloatNullableFilter<$PrismaModel = never> = {
311
+ equals?: number | Prisma.FloatFieldRefInput<$PrismaModel> | null
312
+ in?: number[] | null
313
+ notIn?: number[] | null
314
+ lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>
315
+ lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>
316
+ gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>
317
+ gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>
318
+ not?: Prisma.NestedFloatNullableFilter<$PrismaModel> | number | null
319
+ }
320
+
321
+ export type NestedBoolFilter<$PrismaModel = never> = {
322
+ equals?: boolean | Prisma.BooleanFieldRefInput<$PrismaModel>
323
+ not?: Prisma.NestedBoolFilter<$PrismaModel> | boolean
324
+ }
325
+
326
+ export type NestedFloatNullableWithAggregatesFilter<$PrismaModel = never> = {
327
+ equals?: number | Prisma.FloatFieldRefInput<$PrismaModel> | null
328
+ in?: number[] | null
329
+ notIn?: number[] | null
330
+ lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>
331
+ lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>
332
+ gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>
333
+ gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>
334
+ not?: Prisma.NestedFloatNullableWithAggregatesFilter<$PrismaModel> | number | null
335
+ _count?: Prisma.NestedIntNullableFilter<$PrismaModel>
336
+ _avg?: Prisma.NestedFloatNullableFilter<$PrismaModel>
337
+ _sum?: Prisma.NestedFloatNullableFilter<$PrismaModel>
338
+ _min?: Prisma.NestedFloatNullableFilter<$PrismaModel>
339
+ _max?: Prisma.NestedFloatNullableFilter<$PrismaModel>
340
+ }
341
+
342
+ export type NestedBoolWithAggregatesFilter<$PrismaModel = never> = {
343
+ equals?: boolean | Prisma.BooleanFieldRefInput<$PrismaModel>
344
+ not?: Prisma.NestedBoolWithAggregatesFilter<$PrismaModel> | boolean
345
+ _count?: Prisma.NestedIntFilter<$PrismaModel>
346
+ _min?: Prisma.NestedBoolFilter<$PrismaModel>
347
+ _max?: Prisma.NestedBoolFilter<$PrismaModel>
348
+ }
349
+
350
+ export type NestedDateTimeNullableFilter<$PrismaModel = never> = {
351
+ equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel> | null
352
+ in?: Date[] | string[] | null
353
+ notIn?: Date[] | string[] | null
354
+ lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
355
+ lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
356
+ gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
357
+ gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
358
+ not?: Prisma.NestedDateTimeNullableFilter<$PrismaModel> | Date | string | null
359
+ }
360
+
361
+ export type NestedDateTimeNullableWithAggregatesFilter<$PrismaModel = never> = {
362
+ equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel> | null
363
+ in?: Date[] | string[] | null
364
+ notIn?: Date[] | string[] | null
365
+ lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
366
+ lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
367
+ gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
368
+ gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
369
+ not?: Prisma.NestedDateTimeNullableWithAggregatesFilter<$PrismaModel> | Date | string | null
370
+ _count?: Prisma.NestedIntNullableFilter<$PrismaModel>
371
+ _min?: Prisma.NestedDateTimeNullableFilter<$PrismaModel>
372
+ _max?: Prisma.NestedDateTimeNullableFilter<$PrismaModel>
373
+ }
374
+
375
+ export type NestedFloatFilter<$PrismaModel = never> = {
376
+ equals?: number | Prisma.FloatFieldRefInput<$PrismaModel>
377
+ in?: number[]
378
+ notIn?: number[]
379
+ lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>
380
+ lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>
381
+ gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>
382
+ gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>
383
+ not?: Prisma.NestedFloatFilter<$PrismaModel> | number
384
+ }
385
+
386
+ export type NestedFloatWithAggregatesFilter<$PrismaModel = never> = {
387
+ equals?: number | Prisma.FloatFieldRefInput<$PrismaModel>
388
+ in?: number[]
389
+ notIn?: number[]
390
+ lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>
391
+ lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>
392
+ gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>
393
+ gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>
394
+ not?: Prisma.NestedFloatWithAggregatesFilter<$PrismaModel> | number
395
+ _count?: Prisma.NestedIntFilter<$PrismaModel>
396
+ _avg?: Prisma.NestedFloatFilter<$PrismaModel>
397
+ _sum?: Prisma.NestedFloatFilter<$PrismaModel>
398
+ _min?: Prisma.NestedFloatFilter<$PrismaModel>
399
+ _max?: Prisma.NestedFloatFilter<$PrismaModel>
400
+ }
401
+
402
+
@@ -0,0 +1,15 @@
1
+
2
+ /* !!! This is code generated by Prisma. Do not edit directly. !!! */
3
+ /* eslint-disable */
4
+ // biome-ignore-all lint: generated file
5
+ // @ts-nocheck
6
+ /*
7
+ * This file exports all enum related types from the schema.
8
+ *
9
+ * 🟢 You can import this file directly.
10
+ */
11
+
12
+
13
+
14
+ // This file is empty because there are no enums in the schema.
15
+ export {}