reset-infra 1.0.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.
@@ -0,0 +1,1044 @@
1
+ import { z } from 'zod';
2
+ import { Prisma } from '@prisma/client';
3
+ export declare const DecimalJsLikeSchema: z.ZodType<Prisma.DecimalJsLike>;
4
+ export declare const DECIMAL_STRING_REGEX: RegExp;
5
+ export declare const isValidDecimalInput: (v?: null | string | number | Prisma.DecimalJsLike) => v is string | number | Prisma.DecimalJsLike;
6
+ export declare const TransactionIsolationLevelSchema: z.ZodEnum<{
7
+ ReadUncommitted: "ReadUncommitted";
8
+ ReadCommitted: "ReadCommitted";
9
+ RepeatableRead: "RepeatableRead";
10
+ Serializable: "Serializable";
11
+ }>;
12
+ export declare const UserScalarFieldEnumSchema: z.ZodEnum<{
13
+ id: "id";
14
+ name: "name";
15
+ email: "email";
16
+ password_hash: "password_hash";
17
+ role: "role";
18
+ created_at: "created_at";
19
+ updated_at: "updated_at";
20
+ }>;
21
+ export declare const CravingLevelScalarFieldEnumSchema: z.ZodEnum<{
22
+ id: "id";
23
+ description: "description";
24
+ level: "level";
25
+ label: "label";
26
+ }>;
27
+ export declare const EmotionalStateScalarFieldEnumSchema: z.ZodEnum<{
28
+ id: "id";
29
+ description: "description";
30
+ level: "level";
31
+ label: "label";
32
+ }>;
33
+ export declare const UserAddictionScalarFieldEnumSchema: z.ZodEnum<{
34
+ id: "id";
35
+ created_at: "created_at";
36
+ user_id: "user_id";
37
+ custom_name: "custom_name";
38
+ classification: "classification";
39
+ is_active: "is_active";
40
+ registered_at: "registered_at";
41
+ }>;
42
+ export declare const SponsorshipScalarFieldEnumSchema: z.ZodEnum<{
43
+ id: "id";
44
+ created_at: "created_at";
45
+ is_active: "is_active";
46
+ sponsor_id: "sponsor_id";
47
+ addict_id: "addict_id";
48
+ started_at: "started_at";
49
+ ended_at: "ended_at";
50
+ termination_reason: "termination_reason";
51
+ }>;
52
+ export declare const DailyLogScalarFieldEnumSchema: z.ZodEnum<{
53
+ id: "id";
54
+ created_at: "created_at";
55
+ user_id: "user_id";
56
+ log_date: "log_date";
57
+ consumed: "consumed";
58
+ craving_level_id: "craving_level_id";
59
+ emotional_state_id: "emotional_state_id";
60
+ triggers: "triggers";
61
+ notes: "notes";
62
+ }>;
63
+ export declare const StreakEventScalarFieldEnumSchema: z.ZodEnum<{
64
+ id: "id";
65
+ created_at: "created_at";
66
+ streak_id: "streak_id";
67
+ emergency_alert_id: "emergency_alert_id";
68
+ event_type: "event_type";
69
+ event_date: "event_date";
70
+ days_achieved: "days_achieved";
71
+ avg_craving_period: "avg_craving_period";
72
+ avg_emotion_period: "avg_emotion_period";
73
+ }>;
74
+ export declare const LogAbsenceScalarFieldEnumSchema: z.ZodEnum<{
75
+ id: "id";
76
+ user_id: "user_id";
77
+ streak_id: "streak_id";
78
+ last_log_date: "last_log_date";
79
+ detected_at: "detected_at";
80
+ absence_hours: "absence_hours";
81
+ event_generated: "event_generated";
82
+ streak_event_id: "streak_event_id";
83
+ }>;
84
+ export declare const SupportContactScalarFieldEnumSchema: z.ZodEnum<{
85
+ id: "id";
86
+ email: "email";
87
+ created_at: "created_at";
88
+ updated_at: "updated_at";
89
+ user_id: "user_id";
90
+ is_active: "is_active";
91
+ contact_name: "contact_name";
92
+ phone: "phone";
93
+ relationship: "relationship";
94
+ custom_relationship: "custom_relationship";
95
+ priority_order: "priority_order";
96
+ }>;
97
+ export declare const EmergencyAlertScalarFieldEnumSchema: z.ZodEnum<{
98
+ id: "id";
99
+ created_at: "created_at";
100
+ user_id: "user_id";
101
+ user_addiction_id: "user_addiction_id";
102
+ activated_at: "activated_at";
103
+ resulted_in_relapse: "resulted_in_relapse";
104
+ resolution_notes: "resolution_notes";
105
+ }>;
106
+ export declare const StreakScalarFieldEnumSchema: z.ZodEnum<{
107
+ id: "id";
108
+ updated_at: "updated_at";
109
+ user_id: "user_id";
110
+ started_at: "started_at";
111
+ last_log_date: "last_log_date";
112
+ user_addiction_id: "user_addiction_id";
113
+ status: "status";
114
+ day_counter: "day_counter";
115
+ }>;
116
+ export declare const SortOrderSchema: z.ZodEnum<{
117
+ asc: "asc";
118
+ desc: "desc";
119
+ }>;
120
+ export declare const QueryModeSchema: z.ZodEnum<{
121
+ default: "default";
122
+ insensitive: "insensitive";
123
+ }>;
124
+ export declare const NullsOrderSchema: z.ZodEnum<{
125
+ first: "first";
126
+ last: "last";
127
+ }>;
128
+ export declare const UserSchema: z.ZodObject<{
129
+ id: z.ZodUUID;
130
+ name: z.ZodString;
131
+ email: z.ZodString;
132
+ password_hash: z.ZodString;
133
+ role: z.ZodNullable<z.ZodString>;
134
+ created_at: z.ZodCoercedDate<unknown>;
135
+ updated_at: z.ZodCoercedDate<unknown>;
136
+ }, z.core.$strip>;
137
+ export type User = z.infer<typeof UserSchema>;
138
+ export declare const CravingLevelSchema: z.ZodObject<{
139
+ id: z.ZodUUID;
140
+ level: z.ZodNumber;
141
+ label: z.ZodString;
142
+ description: z.ZodNullable<z.ZodString>;
143
+ }, z.core.$strip>;
144
+ export type CravingLevel = z.infer<typeof CravingLevelSchema>;
145
+ export declare const EmotionalStateSchema: z.ZodObject<{
146
+ id: z.ZodUUID;
147
+ level: z.ZodNumber;
148
+ label: z.ZodString;
149
+ description: z.ZodNullable<z.ZodString>;
150
+ }, z.core.$strip>;
151
+ export type EmotionalState = z.infer<typeof EmotionalStateSchema>;
152
+ export declare const UserAddictionSchema: z.ZodObject<{
153
+ id: z.ZodUUID;
154
+ user_id: z.ZodString;
155
+ custom_name: z.ZodString;
156
+ classification: z.ZodNullable<z.ZodString>;
157
+ is_active: z.ZodBoolean;
158
+ registered_at: z.ZodCoercedDate<unknown>;
159
+ created_at: z.ZodCoercedDate<unknown>;
160
+ }, z.core.$strip>;
161
+ export type UserAddiction = z.infer<typeof UserAddictionSchema>;
162
+ export declare const SponsorshipSchema: z.ZodObject<{
163
+ id: z.ZodUUID;
164
+ sponsor_id: z.ZodNullable<z.ZodString>;
165
+ addict_id: z.ZodNullable<z.ZodString>;
166
+ started_at: z.ZodCoercedDate<unknown>;
167
+ ended_at: z.ZodNullable<z.ZodCoercedDate<unknown>>;
168
+ is_active: z.ZodBoolean;
169
+ termination_reason: z.ZodNullable<z.ZodString>;
170
+ created_at: z.ZodCoercedDate<unknown>;
171
+ }, z.core.$strip>;
172
+ export type Sponsorship = z.infer<typeof SponsorshipSchema>;
173
+ export declare const DailyLogSchema: z.ZodObject<{
174
+ id: z.ZodUUID;
175
+ user_id: z.ZodString;
176
+ log_date: z.ZodCoercedDate<unknown>;
177
+ consumed: z.ZodBoolean;
178
+ craving_level_id: z.ZodNullable<z.ZodString>;
179
+ emotional_state_id: z.ZodNullable<z.ZodString>;
180
+ triggers: z.ZodNullable<z.ZodString>;
181
+ notes: z.ZodNullable<z.ZodString>;
182
+ created_at: z.ZodCoercedDate<unknown>;
183
+ }, z.core.$strip>;
184
+ export type DailyLog = z.infer<typeof DailyLogSchema>;
185
+ export declare const StreakEventSchema: z.ZodObject<{
186
+ id: z.ZodUUID;
187
+ streak_id: z.ZodString;
188
+ emergency_alert_id: z.ZodNullable<z.ZodString>;
189
+ event_type: z.ZodNullable<z.ZodString>;
190
+ event_date: z.ZodCoercedDate<unknown>;
191
+ days_achieved: z.ZodNullable<z.ZodNumber>;
192
+ avg_craving_period: z.ZodNullable<z.ZodCustom<Prisma.Decimal, Prisma.Decimal>>;
193
+ avg_emotion_period: z.ZodNullable<z.ZodCustom<Prisma.Decimal, Prisma.Decimal>>;
194
+ created_at: z.ZodCoercedDate<unknown>;
195
+ }, z.core.$strip>;
196
+ export type StreakEvent = z.infer<typeof StreakEventSchema>;
197
+ export declare const LogAbsenceSchema: z.ZodObject<{
198
+ id: z.ZodUUID;
199
+ user_id: z.ZodString;
200
+ streak_id: z.ZodString;
201
+ last_log_date: z.ZodNullable<z.ZodCoercedDate<unknown>>;
202
+ detected_at: z.ZodCoercedDate<unknown>;
203
+ absence_hours: z.ZodNullable<z.ZodNumber>;
204
+ event_generated: z.ZodBoolean;
205
+ streak_event_id: z.ZodNullable<z.ZodString>;
206
+ }, z.core.$strip>;
207
+ export type LogAbsence = z.infer<typeof LogAbsenceSchema>;
208
+ export declare const SupportContactSchema: z.ZodObject<{
209
+ id: z.ZodUUID;
210
+ user_id: z.ZodString;
211
+ contact_name: z.ZodString;
212
+ phone: z.ZodNullable<z.ZodString>;
213
+ email: z.ZodNullable<z.ZodString>;
214
+ relationship: z.ZodNullable<z.ZodString>;
215
+ custom_relationship: z.ZodNullable<z.ZodString>;
216
+ is_active: z.ZodBoolean;
217
+ priority_order: z.ZodNullable<z.ZodNumber>;
218
+ created_at: z.ZodCoercedDate<unknown>;
219
+ updated_at: z.ZodCoercedDate<unknown>;
220
+ }, z.core.$strip>;
221
+ export type SupportContact = z.infer<typeof SupportContactSchema>;
222
+ export declare const EmergencyAlertSchema: z.ZodObject<{
223
+ id: z.ZodUUID;
224
+ user_id: z.ZodString;
225
+ user_addiction_id: z.ZodString;
226
+ activated_at: z.ZodCoercedDate<unknown>;
227
+ resulted_in_relapse: z.ZodBoolean;
228
+ resolution_notes: z.ZodNullable<z.ZodString>;
229
+ created_at: z.ZodCoercedDate<unknown>;
230
+ }, z.core.$strip>;
231
+ export type EmergencyAlert = z.infer<typeof EmergencyAlertSchema>;
232
+ export declare const StreakSchema: z.ZodObject<{
233
+ id: z.ZodUUID;
234
+ user_id: z.ZodString;
235
+ user_addiction_id: z.ZodString;
236
+ status: z.ZodNullable<z.ZodString>;
237
+ started_at: z.ZodCoercedDate<unknown>;
238
+ day_counter: z.ZodNumber;
239
+ last_log_date: z.ZodNullable<z.ZodCoercedDate<unknown>>;
240
+ updated_at: z.ZodCoercedDate<unknown>;
241
+ }, z.core.$strip>;
242
+ export type Streak = z.infer<typeof StreakSchema>;
243
+ export declare const UserIncludeSchema: z.ZodType<Prisma.UserInclude>;
244
+ export declare const UserArgsSchema: z.ZodType<Prisma.UserDefaultArgs>;
245
+ export declare const UserCountOutputTypeArgsSchema: z.ZodType<Prisma.UserCountOutputTypeDefaultArgs>;
246
+ export declare const UserCountOutputTypeSelectSchema: z.ZodType<Prisma.UserCountOutputTypeSelect>;
247
+ export declare const UserSelectSchema: z.ZodType<Prisma.UserSelect>;
248
+ export declare const CravingLevelIncludeSchema: z.ZodType<Prisma.CravingLevelInclude>;
249
+ export declare const CravingLevelArgsSchema: z.ZodType<Prisma.CravingLevelDefaultArgs>;
250
+ export declare const CravingLevelCountOutputTypeArgsSchema: z.ZodType<Prisma.CravingLevelCountOutputTypeDefaultArgs>;
251
+ export declare const CravingLevelCountOutputTypeSelectSchema: z.ZodType<Prisma.CravingLevelCountOutputTypeSelect>;
252
+ export declare const CravingLevelSelectSchema: z.ZodType<Prisma.CravingLevelSelect>;
253
+ export declare const EmotionalStateIncludeSchema: z.ZodType<Prisma.EmotionalStateInclude>;
254
+ export declare const EmotionalStateArgsSchema: z.ZodType<Prisma.EmotionalStateDefaultArgs>;
255
+ export declare const EmotionalStateCountOutputTypeArgsSchema: z.ZodType<Prisma.EmotionalStateCountOutputTypeDefaultArgs>;
256
+ export declare const EmotionalStateCountOutputTypeSelectSchema: z.ZodType<Prisma.EmotionalStateCountOutputTypeSelect>;
257
+ export declare const EmotionalStateSelectSchema: z.ZodType<Prisma.EmotionalStateSelect>;
258
+ export declare const UserAddictionIncludeSchema: z.ZodType<Prisma.UserAddictionInclude>;
259
+ export declare const UserAddictionArgsSchema: z.ZodType<Prisma.UserAddictionDefaultArgs>;
260
+ export declare const UserAddictionCountOutputTypeArgsSchema: z.ZodType<Prisma.UserAddictionCountOutputTypeDefaultArgs>;
261
+ export declare const UserAddictionCountOutputTypeSelectSchema: z.ZodType<Prisma.UserAddictionCountOutputTypeSelect>;
262
+ export declare const UserAddictionSelectSchema: z.ZodType<Prisma.UserAddictionSelect>;
263
+ export declare const SponsorshipIncludeSchema: z.ZodType<Prisma.SponsorshipInclude>;
264
+ export declare const SponsorshipArgsSchema: z.ZodType<Prisma.SponsorshipDefaultArgs>;
265
+ export declare const SponsorshipSelectSchema: z.ZodType<Prisma.SponsorshipSelect>;
266
+ export declare const DailyLogIncludeSchema: z.ZodType<Prisma.DailyLogInclude>;
267
+ export declare const DailyLogArgsSchema: z.ZodType<Prisma.DailyLogDefaultArgs>;
268
+ export declare const DailyLogSelectSchema: z.ZodType<Prisma.DailyLogSelect>;
269
+ export declare const StreakEventIncludeSchema: z.ZodType<Prisma.StreakEventInclude>;
270
+ export declare const StreakEventArgsSchema: z.ZodType<Prisma.StreakEventDefaultArgs>;
271
+ export declare const StreakEventCountOutputTypeArgsSchema: z.ZodType<Prisma.StreakEventCountOutputTypeDefaultArgs>;
272
+ export declare const StreakEventCountOutputTypeSelectSchema: z.ZodType<Prisma.StreakEventCountOutputTypeSelect>;
273
+ export declare const StreakEventSelectSchema: z.ZodType<Prisma.StreakEventSelect>;
274
+ export declare const LogAbsenceIncludeSchema: z.ZodType<Prisma.LogAbsenceInclude>;
275
+ export declare const LogAbsenceArgsSchema: z.ZodType<Prisma.LogAbsenceDefaultArgs>;
276
+ export declare const LogAbsenceSelectSchema: z.ZodType<Prisma.LogAbsenceSelect>;
277
+ export declare const SupportContactIncludeSchema: z.ZodType<Prisma.SupportContactInclude>;
278
+ export declare const SupportContactArgsSchema: z.ZodType<Prisma.SupportContactDefaultArgs>;
279
+ export declare const SupportContactSelectSchema: z.ZodType<Prisma.SupportContactSelect>;
280
+ export declare const EmergencyAlertIncludeSchema: z.ZodType<Prisma.EmergencyAlertInclude>;
281
+ export declare const EmergencyAlertArgsSchema: z.ZodType<Prisma.EmergencyAlertDefaultArgs>;
282
+ export declare const EmergencyAlertSelectSchema: z.ZodType<Prisma.EmergencyAlertSelect>;
283
+ export declare const StreakIncludeSchema: z.ZodType<Prisma.StreakInclude>;
284
+ export declare const StreakArgsSchema: z.ZodType<Prisma.StreakDefaultArgs>;
285
+ export declare const StreakCountOutputTypeArgsSchema: z.ZodType<Prisma.StreakCountOutputTypeDefaultArgs>;
286
+ export declare const StreakCountOutputTypeSelectSchema: z.ZodType<Prisma.StreakCountOutputTypeSelect>;
287
+ export declare const StreakSelectSchema: z.ZodType<Prisma.StreakSelect>;
288
+ export declare const UserWhereInputSchema: z.ZodType<Prisma.UserWhereInput>;
289
+ export declare const UserOrderByWithRelationInputSchema: z.ZodType<Prisma.UserOrderByWithRelationInput>;
290
+ export declare const UserWhereUniqueInputSchema: z.ZodType<Prisma.UserWhereUniqueInput>;
291
+ export declare const UserOrderByWithAggregationInputSchema: z.ZodType<Prisma.UserOrderByWithAggregationInput>;
292
+ export declare const UserScalarWhereWithAggregatesInputSchema: z.ZodType<Prisma.UserScalarWhereWithAggregatesInput>;
293
+ export declare const CravingLevelWhereInputSchema: z.ZodType<Prisma.CravingLevelWhereInput>;
294
+ export declare const CravingLevelOrderByWithRelationInputSchema: z.ZodType<Prisma.CravingLevelOrderByWithRelationInput>;
295
+ export declare const CravingLevelWhereUniqueInputSchema: z.ZodType<Prisma.CravingLevelWhereUniqueInput>;
296
+ export declare const CravingLevelOrderByWithAggregationInputSchema: z.ZodType<Prisma.CravingLevelOrderByWithAggregationInput>;
297
+ export declare const CravingLevelScalarWhereWithAggregatesInputSchema: z.ZodType<Prisma.CravingLevelScalarWhereWithAggregatesInput>;
298
+ export declare const EmotionalStateWhereInputSchema: z.ZodType<Prisma.EmotionalStateWhereInput>;
299
+ export declare const EmotionalStateOrderByWithRelationInputSchema: z.ZodType<Prisma.EmotionalStateOrderByWithRelationInput>;
300
+ export declare const EmotionalStateWhereUniqueInputSchema: z.ZodType<Prisma.EmotionalStateWhereUniqueInput>;
301
+ export declare const EmotionalStateOrderByWithAggregationInputSchema: z.ZodType<Prisma.EmotionalStateOrderByWithAggregationInput>;
302
+ export declare const EmotionalStateScalarWhereWithAggregatesInputSchema: z.ZodType<Prisma.EmotionalStateScalarWhereWithAggregatesInput>;
303
+ export declare const UserAddictionWhereInputSchema: z.ZodType<Prisma.UserAddictionWhereInput>;
304
+ export declare const UserAddictionOrderByWithRelationInputSchema: z.ZodType<Prisma.UserAddictionOrderByWithRelationInput>;
305
+ export declare const UserAddictionWhereUniqueInputSchema: z.ZodType<Prisma.UserAddictionWhereUniqueInput>;
306
+ export declare const UserAddictionOrderByWithAggregationInputSchema: z.ZodType<Prisma.UserAddictionOrderByWithAggregationInput>;
307
+ export declare const UserAddictionScalarWhereWithAggregatesInputSchema: z.ZodType<Prisma.UserAddictionScalarWhereWithAggregatesInput>;
308
+ export declare const SponsorshipWhereInputSchema: z.ZodType<Prisma.SponsorshipWhereInput>;
309
+ export declare const SponsorshipOrderByWithRelationInputSchema: z.ZodType<Prisma.SponsorshipOrderByWithRelationInput>;
310
+ export declare const SponsorshipWhereUniqueInputSchema: z.ZodType<Prisma.SponsorshipWhereUniqueInput>;
311
+ export declare const SponsorshipOrderByWithAggregationInputSchema: z.ZodType<Prisma.SponsorshipOrderByWithAggregationInput>;
312
+ export declare const SponsorshipScalarWhereWithAggregatesInputSchema: z.ZodType<Prisma.SponsorshipScalarWhereWithAggregatesInput>;
313
+ export declare const DailyLogWhereInputSchema: z.ZodType<Prisma.DailyLogWhereInput>;
314
+ export declare const DailyLogOrderByWithRelationInputSchema: z.ZodType<Prisma.DailyLogOrderByWithRelationInput>;
315
+ export declare const DailyLogWhereUniqueInputSchema: z.ZodType<Prisma.DailyLogWhereUniqueInput>;
316
+ export declare const DailyLogOrderByWithAggregationInputSchema: z.ZodType<Prisma.DailyLogOrderByWithAggregationInput>;
317
+ export declare const DailyLogScalarWhereWithAggregatesInputSchema: z.ZodType<Prisma.DailyLogScalarWhereWithAggregatesInput>;
318
+ export declare const StreakEventWhereInputSchema: z.ZodType<Prisma.StreakEventWhereInput>;
319
+ export declare const StreakEventOrderByWithRelationInputSchema: z.ZodType<Prisma.StreakEventOrderByWithRelationInput>;
320
+ export declare const StreakEventWhereUniqueInputSchema: z.ZodType<Prisma.StreakEventWhereUniqueInput>;
321
+ export declare const StreakEventOrderByWithAggregationInputSchema: z.ZodType<Prisma.StreakEventOrderByWithAggregationInput>;
322
+ export declare const StreakEventScalarWhereWithAggregatesInputSchema: z.ZodType<Prisma.StreakEventScalarWhereWithAggregatesInput>;
323
+ export declare const LogAbsenceWhereInputSchema: z.ZodType<Prisma.LogAbsenceWhereInput>;
324
+ export declare const LogAbsenceOrderByWithRelationInputSchema: z.ZodType<Prisma.LogAbsenceOrderByWithRelationInput>;
325
+ export declare const LogAbsenceWhereUniqueInputSchema: z.ZodType<Prisma.LogAbsenceWhereUniqueInput>;
326
+ export declare const LogAbsenceOrderByWithAggregationInputSchema: z.ZodType<Prisma.LogAbsenceOrderByWithAggregationInput>;
327
+ export declare const LogAbsenceScalarWhereWithAggregatesInputSchema: z.ZodType<Prisma.LogAbsenceScalarWhereWithAggregatesInput>;
328
+ export declare const SupportContactWhereInputSchema: z.ZodType<Prisma.SupportContactWhereInput>;
329
+ export declare const SupportContactOrderByWithRelationInputSchema: z.ZodType<Prisma.SupportContactOrderByWithRelationInput>;
330
+ export declare const SupportContactWhereUniqueInputSchema: z.ZodType<Prisma.SupportContactWhereUniqueInput>;
331
+ export declare const SupportContactOrderByWithAggregationInputSchema: z.ZodType<Prisma.SupportContactOrderByWithAggregationInput>;
332
+ export declare const SupportContactScalarWhereWithAggregatesInputSchema: z.ZodType<Prisma.SupportContactScalarWhereWithAggregatesInput>;
333
+ export declare const EmergencyAlertWhereInputSchema: z.ZodType<Prisma.EmergencyAlertWhereInput>;
334
+ export declare const EmergencyAlertOrderByWithRelationInputSchema: z.ZodType<Prisma.EmergencyAlertOrderByWithRelationInput>;
335
+ export declare const EmergencyAlertWhereUniqueInputSchema: z.ZodType<Prisma.EmergencyAlertWhereUniqueInput>;
336
+ export declare const EmergencyAlertOrderByWithAggregationInputSchema: z.ZodType<Prisma.EmergencyAlertOrderByWithAggregationInput>;
337
+ export declare const EmergencyAlertScalarWhereWithAggregatesInputSchema: z.ZodType<Prisma.EmergencyAlertScalarWhereWithAggregatesInput>;
338
+ export declare const StreakWhereInputSchema: z.ZodType<Prisma.StreakWhereInput>;
339
+ export declare const StreakOrderByWithRelationInputSchema: z.ZodType<Prisma.StreakOrderByWithRelationInput>;
340
+ export declare const StreakWhereUniqueInputSchema: z.ZodType<Prisma.StreakWhereUniqueInput>;
341
+ export declare const StreakOrderByWithAggregationInputSchema: z.ZodType<Prisma.StreakOrderByWithAggregationInput>;
342
+ export declare const StreakScalarWhereWithAggregatesInputSchema: z.ZodType<Prisma.StreakScalarWhereWithAggregatesInput>;
343
+ export declare const UserCreateInputSchema: z.ZodType<Prisma.UserCreateInput>;
344
+ export declare const UserUncheckedCreateInputSchema: z.ZodType<Prisma.UserUncheckedCreateInput>;
345
+ export declare const UserUpdateInputSchema: z.ZodType<Prisma.UserUpdateInput>;
346
+ export declare const UserUncheckedUpdateInputSchema: z.ZodType<Prisma.UserUncheckedUpdateInput>;
347
+ export declare const UserCreateManyInputSchema: z.ZodType<Prisma.UserCreateManyInput>;
348
+ export declare const UserUpdateManyMutationInputSchema: z.ZodType<Prisma.UserUpdateManyMutationInput>;
349
+ export declare const UserUncheckedUpdateManyInputSchema: z.ZodType<Prisma.UserUncheckedUpdateManyInput>;
350
+ export declare const CravingLevelCreateInputSchema: z.ZodType<Prisma.CravingLevelCreateInput>;
351
+ export declare const CravingLevelUncheckedCreateInputSchema: z.ZodType<Prisma.CravingLevelUncheckedCreateInput>;
352
+ export declare const CravingLevelUpdateInputSchema: z.ZodType<Prisma.CravingLevelUpdateInput>;
353
+ export declare const CravingLevelUncheckedUpdateInputSchema: z.ZodType<Prisma.CravingLevelUncheckedUpdateInput>;
354
+ export declare const CravingLevelCreateManyInputSchema: z.ZodType<Prisma.CravingLevelCreateManyInput>;
355
+ export declare const CravingLevelUpdateManyMutationInputSchema: z.ZodType<Prisma.CravingLevelUpdateManyMutationInput>;
356
+ export declare const CravingLevelUncheckedUpdateManyInputSchema: z.ZodType<Prisma.CravingLevelUncheckedUpdateManyInput>;
357
+ export declare const EmotionalStateCreateInputSchema: z.ZodType<Prisma.EmotionalStateCreateInput>;
358
+ export declare const EmotionalStateUncheckedCreateInputSchema: z.ZodType<Prisma.EmotionalStateUncheckedCreateInput>;
359
+ export declare const EmotionalStateUpdateInputSchema: z.ZodType<Prisma.EmotionalStateUpdateInput>;
360
+ export declare const EmotionalStateUncheckedUpdateInputSchema: z.ZodType<Prisma.EmotionalStateUncheckedUpdateInput>;
361
+ export declare const EmotionalStateCreateManyInputSchema: z.ZodType<Prisma.EmotionalStateCreateManyInput>;
362
+ export declare const EmotionalStateUpdateManyMutationInputSchema: z.ZodType<Prisma.EmotionalStateUpdateManyMutationInput>;
363
+ export declare const EmotionalStateUncheckedUpdateManyInputSchema: z.ZodType<Prisma.EmotionalStateUncheckedUpdateManyInput>;
364
+ export declare const UserAddictionCreateInputSchema: z.ZodType<Prisma.UserAddictionCreateInput>;
365
+ export declare const UserAddictionUncheckedCreateInputSchema: z.ZodType<Prisma.UserAddictionUncheckedCreateInput>;
366
+ export declare const UserAddictionUpdateInputSchema: z.ZodType<Prisma.UserAddictionUpdateInput>;
367
+ export declare const UserAddictionUncheckedUpdateInputSchema: z.ZodType<Prisma.UserAddictionUncheckedUpdateInput>;
368
+ export declare const UserAddictionCreateManyInputSchema: z.ZodType<Prisma.UserAddictionCreateManyInput>;
369
+ export declare const UserAddictionUpdateManyMutationInputSchema: z.ZodType<Prisma.UserAddictionUpdateManyMutationInput>;
370
+ export declare const UserAddictionUncheckedUpdateManyInputSchema: z.ZodType<Prisma.UserAddictionUncheckedUpdateManyInput>;
371
+ export declare const SponsorshipCreateInputSchema: z.ZodType<Prisma.SponsorshipCreateInput>;
372
+ export declare const SponsorshipUncheckedCreateInputSchema: z.ZodType<Prisma.SponsorshipUncheckedCreateInput>;
373
+ export declare const SponsorshipUpdateInputSchema: z.ZodType<Prisma.SponsorshipUpdateInput>;
374
+ export declare const SponsorshipUncheckedUpdateInputSchema: z.ZodType<Prisma.SponsorshipUncheckedUpdateInput>;
375
+ export declare const SponsorshipCreateManyInputSchema: z.ZodType<Prisma.SponsorshipCreateManyInput>;
376
+ export declare const SponsorshipUpdateManyMutationInputSchema: z.ZodType<Prisma.SponsorshipUpdateManyMutationInput>;
377
+ export declare const SponsorshipUncheckedUpdateManyInputSchema: z.ZodType<Prisma.SponsorshipUncheckedUpdateManyInput>;
378
+ export declare const DailyLogCreateInputSchema: z.ZodType<Prisma.DailyLogCreateInput>;
379
+ export declare const DailyLogUncheckedCreateInputSchema: z.ZodType<Prisma.DailyLogUncheckedCreateInput>;
380
+ export declare const DailyLogUpdateInputSchema: z.ZodType<Prisma.DailyLogUpdateInput>;
381
+ export declare const DailyLogUncheckedUpdateInputSchema: z.ZodType<Prisma.DailyLogUncheckedUpdateInput>;
382
+ export declare const DailyLogCreateManyInputSchema: z.ZodType<Prisma.DailyLogCreateManyInput>;
383
+ export declare const DailyLogUpdateManyMutationInputSchema: z.ZodType<Prisma.DailyLogUpdateManyMutationInput>;
384
+ export declare const DailyLogUncheckedUpdateManyInputSchema: z.ZodType<Prisma.DailyLogUncheckedUpdateManyInput>;
385
+ export declare const StreakEventCreateInputSchema: z.ZodType<Prisma.StreakEventCreateInput>;
386
+ export declare const StreakEventUncheckedCreateInputSchema: z.ZodType<Prisma.StreakEventUncheckedCreateInput>;
387
+ export declare const StreakEventUpdateInputSchema: z.ZodType<Prisma.StreakEventUpdateInput>;
388
+ export declare const StreakEventUncheckedUpdateInputSchema: z.ZodType<Prisma.StreakEventUncheckedUpdateInput>;
389
+ export declare const StreakEventCreateManyInputSchema: z.ZodType<Prisma.StreakEventCreateManyInput>;
390
+ export declare const StreakEventUpdateManyMutationInputSchema: z.ZodType<Prisma.StreakEventUpdateManyMutationInput>;
391
+ export declare const StreakEventUncheckedUpdateManyInputSchema: z.ZodType<Prisma.StreakEventUncheckedUpdateManyInput>;
392
+ export declare const LogAbsenceCreateInputSchema: z.ZodType<Prisma.LogAbsenceCreateInput>;
393
+ export declare const LogAbsenceUncheckedCreateInputSchema: z.ZodType<Prisma.LogAbsenceUncheckedCreateInput>;
394
+ export declare const LogAbsenceUpdateInputSchema: z.ZodType<Prisma.LogAbsenceUpdateInput>;
395
+ export declare const LogAbsenceUncheckedUpdateInputSchema: z.ZodType<Prisma.LogAbsenceUncheckedUpdateInput>;
396
+ export declare const LogAbsenceCreateManyInputSchema: z.ZodType<Prisma.LogAbsenceCreateManyInput>;
397
+ export declare const LogAbsenceUpdateManyMutationInputSchema: z.ZodType<Prisma.LogAbsenceUpdateManyMutationInput>;
398
+ export declare const LogAbsenceUncheckedUpdateManyInputSchema: z.ZodType<Prisma.LogAbsenceUncheckedUpdateManyInput>;
399
+ export declare const SupportContactCreateInputSchema: z.ZodType<Prisma.SupportContactCreateInput>;
400
+ export declare const SupportContactUncheckedCreateInputSchema: z.ZodType<Prisma.SupportContactUncheckedCreateInput>;
401
+ export declare const SupportContactUpdateInputSchema: z.ZodType<Prisma.SupportContactUpdateInput>;
402
+ export declare const SupportContactUncheckedUpdateInputSchema: z.ZodType<Prisma.SupportContactUncheckedUpdateInput>;
403
+ export declare const SupportContactCreateManyInputSchema: z.ZodType<Prisma.SupportContactCreateManyInput>;
404
+ export declare const SupportContactUpdateManyMutationInputSchema: z.ZodType<Prisma.SupportContactUpdateManyMutationInput>;
405
+ export declare const SupportContactUncheckedUpdateManyInputSchema: z.ZodType<Prisma.SupportContactUncheckedUpdateManyInput>;
406
+ export declare const EmergencyAlertCreateInputSchema: z.ZodType<Prisma.EmergencyAlertCreateInput>;
407
+ export declare const EmergencyAlertUncheckedCreateInputSchema: z.ZodType<Prisma.EmergencyAlertUncheckedCreateInput>;
408
+ export declare const EmergencyAlertUpdateInputSchema: z.ZodType<Prisma.EmergencyAlertUpdateInput>;
409
+ export declare const EmergencyAlertUncheckedUpdateInputSchema: z.ZodType<Prisma.EmergencyAlertUncheckedUpdateInput>;
410
+ export declare const EmergencyAlertCreateManyInputSchema: z.ZodType<Prisma.EmergencyAlertCreateManyInput>;
411
+ export declare const EmergencyAlertUpdateManyMutationInputSchema: z.ZodType<Prisma.EmergencyAlertUpdateManyMutationInput>;
412
+ export declare const EmergencyAlertUncheckedUpdateManyInputSchema: z.ZodType<Prisma.EmergencyAlertUncheckedUpdateManyInput>;
413
+ export declare const StreakCreateInputSchema: z.ZodType<Prisma.StreakCreateInput>;
414
+ export declare const StreakUncheckedCreateInputSchema: z.ZodType<Prisma.StreakUncheckedCreateInput>;
415
+ export declare const StreakUpdateInputSchema: z.ZodType<Prisma.StreakUpdateInput>;
416
+ export declare const StreakUncheckedUpdateInputSchema: z.ZodType<Prisma.StreakUncheckedUpdateInput>;
417
+ export declare const StreakCreateManyInputSchema: z.ZodType<Prisma.StreakCreateManyInput>;
418
+ export declare const StreakUpdateManyMutationInputSchema: z.ZodType<Prisma.StreakUpdateManyMutationInput>;
419
+ export declare const StreakUncheckedUpdateManyInputSchema: z.ZodType<Prisma.StreakUncheckedUpdateManyInput>;
420
+ export declare const UuidFilterSchema: z.ZodType<Prisma.UuidFilter>;
421
+ export declare const StringFilterSchema: z.ZodType<Prisma.StringFilter>;
422
+ export declare const StringNullableFilterSchema: z.ZodType<Prisma.StringNullableFilter>;
423
+ export declare const DateTimeFilterSchema: z.ZodType<Prisma.DateTimeFilter>;
424
+ export declare const UserAddictionNullableScalarRelationFilterSchema: z.ZodType<Prisma.UserAddictionNullableScalarRelationFilter>;
425
+ export declare const DailyLogListRelationFilterSchema: z.ZodType<Prisma.DailyLogListRelationFilter>;
426
+ export declare const SponsorshipListRelationFilterSchema: z.ZodType<Prisma.SponsorshipListRelationFilter>;
427
+ export declare const SupportContactListRelationFilterSchema: z.ZodType<Prisma.SupportContactListRelationFilter>;
428
+ export declare const EmergencyAlertListRelationFilterSchema: z.ZodType<Prisma.EmergencyAlertListRelationFilter>;
429
+ export declare const StreakNullableScalarRelationFilterSchema: z.ZodType<Prisma.StreakNullableScalarRelationFilter>;
430
+ export declare const LogAbsenceListRelationFilterSchema: z.ZodType<Prisma.LogAbsenceListRelationFilter>;
431
+ export declare const SortOrderInputSchema: z.ZodType<Prisma.SortOrderInput>;
432
+ export declare const DailyLogOrderByRelationAggregateInputSchema: z.ZodType<Prisma.DailyLogOrderByRelationAggregateInput>;
433
+ export declare const SponsorshipOrderByRelationAggregateInputSchema: z.ZodType<Prisma.SponsorshipOrderByRelationAggregateInput>;
434
+ export declare const SupportContactOrderByRelationAggregateInputSchema: z.ZodType<Prisma.SupportContactOrderByRelationAggregateInput>;
435
+ export declare const EmergencyAlertOrderByRelationAggregateInputSchema: z.ZodType<Prisma.EmergencyAlertOrderByRelationAggregateInput>;
436
+ export declare const LogAbsenceOrderByRelationAggregateInputSchema: z.ZodType<Prisma.LogAbsenceOrderByRelationAggregateInput>;
437
+ export declare const UserCountOrderByAggregateInputSchema: z.ZodType<Prisma.UserCountOrderByAggregateInput>;
438
+ export declare const UserMaxOrderByAggregateInputSchema: z.ZodType<Prisma.UserMaxOrderByAggregateInput>;
439
+ export declare const UserMinOrderByAggregateInputSchema: z.ZodType<Prisma.UserMinOrderByAggregateInput>;
440
+ export declare const UuidWithAggregatesFilterSchema: z.ZodType<Prisma.UuidWithAggregatesFilter>;
441
+ export declare const StringWithAggregatesFilterSchema: z.ZodType<Prisma.StringWithAggregatesFilter>;
442
+ export declare const StringNullableWithAggregatesFilterSchema: z.ZodType<Prisma.StringNullableWithAggregatesFilter>;
443
+ export declare const DateTimeWithAggregatesFilterSchema: z.ZodType<Prisma.DateTimeWithAggregatesFilter>;
444
+ export declare const IntFilterSchema: z.ZodType<Prisma.IntFilter>;
445
+ export declare const CravingLevelCountOrderByAggregateInputSchema: z.ZodType<Prisma.CravingLevelCountOrderByAggregateInput>;
446
+ export declare const CravingLevelAvgOrderByAggregateInputSchema: z.ZodType<Prisma.CravingLevelAvgOrderByAggregateInput>;
447
+ export declare const CravingLevelMaxOrderByAggregateInputSchema: z.ZodType<Prisma.CravingLevelMaxOrderByAggregateInput>;
448
+ export declare const CravingLevelMinOrderByAggregateInputSchema: z.ZodType<Prisma.CravingLevelMinOrderByAggregateInput>;
449
+ export declare const CravingLevelSumOrderByAggregateInputSchema: z.ZodType<Prisma.CravingLevelSumOrderByAggregateInput>;
450
+ export declare const IntWithAggregatesFilterSchema: z.ZodType<Prisma.IntWithAggregatesFilter>;
451
+ export declare const EmotionalStateCountOrderByAggregateInputSchema: z.ZodType<Prisma.EmotionalStateCountOrderByAggregateInput>;
452
+ export declare const EmotionalStateAvgOrderByAggregateInputSchema: z.ZodType<Prisma.EmotionalStateAvgOrderByAggregateInput>;
453
+ export declare const EmotionalStateMaxOrderByAggregateInputSchema: z.ZodType<Prisma.EmotionalStateMaxOrderByAggregateInput>;
454
+ export declare const EmotionalStateMinOrderByAggregateInputSchema: z.ZodType<Prisma.EmotionalStateMinOrderByAggregateInput>;
455
+ export declare const EmotionalStateSumOrderByAggregateInputSchema: z.ZodType<Prisma.EmotionalStateSumOrderByAggregateInput>;
456
+ export declare const BoolFilterSchema: z.ZodType<Prisma.BoolFilter>;
457
+ export declare const UserScalarRelationFilterSchema: z.ZodType<Prisma.UserScalarRelationFilter>;
458
+ export declare const UserAddictionCountOrderByAggregateInputSchema: z.ZodType<Prisma.UserAddictionCountOrderByAggregateInput>;
459
+ export declare const UserAddictionMaxOrderByAggregateInputSchema: z.ZodType<Prisma.UserAddictionMaxOrderByAggregateInput>;
460
+ export declare const UserAddictionMinOrderByAggregateInputSchema: z.ZodType<Prisma.UserAddictionMinOrderByAggregateInput>;
461
+ export declare const BoolWithAggregatesFilterSchema: z.ZodType<Prisma.BoolWithAggregatesFilter>;
462
+ export declare const UuidNullableFilterSchema: z.ZodType<Prisma.UuidNullableFilter>;
463
+ export declare const DateTimeNullableFilterSchema: z.ZodType<Prisma.DateTimeNullableFilter>;
464
+ export declare const UserNullableScalarRelationFilterSchema: z.ZodType<Prisma.UserNullableScalarRelationFilter>;
465
+ export declare const SponsorshipCountOrderByAggregateInputSchema: z.ZodType<Prisma.SponsorshipCountOrderByAggregateInput>;
466
+ export declare const SponsorshipMaxOrderByAggregateInputSchema: z.ZodType<Prisma.SponsorshipMaxOrderByAggregateInput>;
467
+ export declare const SponsorshipMinOrderByAggregateInputSchema: z.ZodType<Prisma.SponsorshipMinOrderByAggregateInput>;
468
+ export declare const UuidNullableWithAggregatesFilterSchema: z.ZodType<Prisma.UuidNullableWithAggregatesFilter>;
469
+ export declare const DateTimeNullableWithAggregatesFilterSchema: z.ZodType<Prisma.DateTimeNullableWithAggregatesFilter>;
470
+ export declare const CravingLevelNullableScalarRelationFilterSchema: z.ZodType<Prisma.CravingLevelNullableScalarRelationFilter>;
471
+ export declare const EmotionalStateNullableScalarRelationFilterSchema: z.ZodType<Prisma.EmotionalStateNullableScalarRelationFilter>;
472
+ export declare const DailyLogUser_idLog_dateCompoundUniqueInputSchema: z.ZodType<Prisma.DailyLogUser_idLog_dateCompoundUniqueInput>;
473
+ export declare const DailyLogCountOrderByAggregateInputSchema: z.ZodType<Prisma.DailyLogCountOrderByAggregateInput>;
474
+ export declare const DailyLogMaxOrderByAggregateInputSchema: z.ZodType<Prisma.DailyLogMaxOrderByAggregateInput>;
475
+ export declare const DailyLogMinOrderByAggregateInputSchema: z.ZodType<Prisma.DailyLogMinOrderByAggregateInput>;
476
+ export declare const IntNullableFilterSchema: z.ZodType<Prisma.IntNullableFilter>;
477
+ export declare const DecimalNullableFilterSchema: z.ZodType<Prisma.DecimalNullableFilter>;
478
+ export declare const StreakScalarRelationFilterSchema: z.ZodType<Prisma.StreakScalarRelationFilter>;
479
+ export declare const StreakEventCountOrderByAggregateInputSchema: z.ZodType<Prisma.StreakEventCountOrderByAggregateInput>;
480
+ export declare const StreakEventAvgOrderByAggregateInputSchema: z.ZodType<Prisma.StreakEventAvgOrderByAggregateInput>;
481
+ export declare const StreakEventMaxOrderByAggregateInputSchema: z.ZodType<Prisma.StreakEventMaxOrderByAggregateInput>;
482
+ export declare const StreakEventMinOrderByAggregateInputSchema: z.ZodType<Prisma.StreakEventMinOrderByAggregateInput>;
483
+ export declare const StreakEventSumOrderByAggregateInputSchema: z.ZodType<Prisma.StreakEventSumOrderByAggregateInput>;
484
+ export declare const IntNullableWithAggregatesFilterSchema: z.ZodType<Prisma.IntNullableWithAggregatesFilter>;
485
+ export declare const DecimalNullableWithAggregatesFilterSchema: z.ZodType<Prisma.DecimalNullableWithAggregatesFilter>;
486
+ export declare const StreakEventNullableScalarRelationFilterSchema: z.ZodType<Prisma.StreakEventNullableScalarRelationFilter>;
487
+ export declare const LogAbsenceCountOrderByAggregateInputSchema: z.ZodType<Prisma.LogAbsenceCountOrderByAggregateInput>;
488
+ export declare const LogAbsenceAvgOrderByAggregateInputSchema: z.ZodType<Prisma.LogAbsenceAvgOrderByAggregateInput>;
489
+ export declare const LogAbsenceMaxOrderByAggregateInputSchema: z.ZodType<Prisma.LogAbsenceMaxOrderByAggregateInput>;
490
+ export declare const LogAbsenceMinOrderByAggregateInputSchema: z.ZodType<Prisma.LogAbsenceMinOrderByAggregateInput>;
491
+ export declare const LogAbsenceSumOrderByAggregateInputSchema: z.ZodType<Prisma.LogAbsenceSumOrderByAggregateInput>;
492
+ export declare const SupportContactCountOrderByAggregateInputSchema: z.ZodType<Prisma.SupportContactCountOrderByAggregateInput>;
493
+ export declare const SupportContactAvgOrderByAggregateInputSchema: z.ZodType<Prisma.SupportContactAvgOrderByAggregateInput>;
494
+ export declare const SupportContactMaxOrderByAggregateInputSchema: z.ZodType<Prisma.SupportContactMaxOrderByAggregateInput>;
495
+ export declare const SupportContactMinOrderByAggregateInputSchema: z.ZodType<Prisma.SupportContactMinOrderByAggregateInput>;
496
+ export declare const SupportContactSumOrderByAggregateInputSchema: z.ZodType<Prisma.SupportContactSumOrderByAggregateInput>;
497
+ export declare const UserAddictionScalarRelationFilterSchema: z.ZodType<Prisma.UserAddictionScalarRelationFilter>;
498
+ export declare const EmergencyAlertCountOrderByAggregateInputSchema: z.ZodType<Prisma.EmergencyAlertCountOrderByAggregateInput>;
499
+ export declare const EmergencyAlertMaxOrderByAggregateInputSchema: z.ZodType<Prisma.EmergencyAlertMaxOrderByAggregateInput>;
500
+ export declare const EmergencyAlertMinOrderByAggregateInputSchema: z.ZodType<Prisma.EmergencyAlertMinOrderByAggregateInput>;
501
+ export declare const StreakEventListRelationFilterSchema: z.ZodType<Prisma.StreakEventListRelationFilter>;
502
+ export declare const StreakEventOrderByRelationAggregateInputSchema: z.ZodType<Prisma.StreakEventOrderByRelationAggregateInput>;
503
+ export declare const StreakCountOrderByAggregateInputSchema: z.ZodType<Prisma.StreakCountOrderByAggregateInput>;
504
+ export declare const StreakAvgOrderByAggregateInputSchema: z.ZodType<Prisma.StreakAvgOrderByAggregateInput>;
505
+ export declare const StreakMaxOrderByAggregateInputSchema: z.ZodType<Prisma.StreakMaxOrderByAggregateInput>;
506
+ export declare const StreakMinOrderByAggregateInputSchema: z.ZodType<Prisma.StreakMinOrderByAggregateInput>;
507
+ export declare const StreakSumOrderByAggregateInputSchema: z.ZodType<Prisma.StreakSumOrderByAggregateInput>;
508
+ export declare const UserAddictionCreateNestedOneWithoutUserInputSchema: z.ZodType<Prisma.UserAddictionCreateNestedOneWithoutUserInput>;
509
+ export declare const DailyLogCreateNestedManyWithoutUserInputSchema: z.ZodType<Prisma.DailyLogCreateNestedManyWithoutUserInput>;
510
+ export declare const SponsorshipCreateNestedManyWithoutSponsorInputSchema: z.ZodType<Prisma.SponsorshipCreateNestedManyWithoutSponsorInput>;
511
+ export declare const SponsorshipCreateNestedManyWithoutAddictInputSchema: z.ZodType<Prisma.SponsorshipCreateNestedManyWithoutAddictInput>;
512
+ export declare const SupportContactCreateNestedManyWithoutUserInputSchema: z.ZodType<Prisma.SupportContactCreateNestedManyWithoutUserInput>;
513
+ export declare const EmergencyAlertCreateNestedManyWithoutUserInputSchema: z.ZodType<Prisma.EmergencyAlertCreateNestedManyWithoutUserInput>;
514
+ export declare const StreakCreateNestedOneWithoutUserInputSchema: z.ZodType<Prisma.StreakCreateNestedOneWithoutUserInput>;
515
+ export declare const LogAbsenceCreateNestedManyWithoutUserInputSchema: z.ZodType<Prisma.LogAbsenceCreateNestedManyWithoutUserInput>;
516
+ export declare const UserAddictionUncheckedCreateNestedOneWithoutUserInputSchema: z.ZodType<Prisma.UserAddictionUncheckedCreateNestedOneWithoutUserInput>;
517
+ export declare const DailyLogUncheckedCreateNestedManyWithoutUserInputSchema: z.ZodType<Prisma.DailyLogUncheckedCreateNestedManyWithoutUserInput>;
518
+ export declare const SponsorshipUncheckedCreateNestedManyWithoutSponsorInputSchema: z.ZodType<Prisma.SponsorshipUncheckedCreateNestedManyWithoutSponsorInput>;
519
+ export declare const SponsorshipUncheckedCreateNestedManyWithoutAddictInputSchema: z.ZodType<Prisma.SponsorshipUncheckedCreateNestedManyWithoutAddictInput>;
520
+ export declare const SupportContactUncheckedCreateNestedManyWithoutUserInputSchema: z.ZodType<Prisma.SupportContactUncheckedCreateNestedManyWithoutUserInput>;
521
+ export declare const EmergencyAlertUncheckedCreateNestedManyWithoutUserInputSchema: z.ZodType<Prisma.EmergencyAlertUncheckedCreateNestedManyWithoutUserInput>;
522
+ export declare const StreakUncheckedCreateNestedOneWithoutUserInputSchema: z.ZodType<Prisma.StreakUncheckedCreateNestedOneWithoutUserInput>;
523
+ export declare const LogAbsenceUncheckedCreateNestedManyWithoutUserInputSchema: z.ZodType<Prisma.LogAbsenceUncheckedCreateNestedManyWithoutUserInput>;
524
+ export declare const StringFieldUpdateOperationsInputSchema: z.ZodType<Prisma.StringFieldUpdateOperationsInput>;
525
+ export declare const NullableStringFieldUpdateOperationsInputSchema: z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput>;
526
+ export declare const DateTimeFieldUpdateOperationsInputSchema: z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput>;
527
+ export declare const UserAddictionUpdateOneWithoutUserNestedInputSchema: z.ZodType<Prisma.UserAddictionUpdateOneWithoutUserNestedInput>;
528
+ export declare const DailyLogUpdateManyWithoutUserNestedInputSchema: z.ZodType<Prisma.DailyLogUpdateManyWithoutUserNestedInput>;
529
+ export declare const SponsorshipUpdateManyWithoutSponsorNestedInputSchema: z.ZodType<Prisma.SponsorshipUpdateManyWithoutSponsorNestedInput>;
530
+ export declare const SponsorshipUpdateManyWithoutAddictNestedInputSchema: z.ZodType<Prisma.SponsorshipUpdateManyWithoutAddictNestedInput>;
531
+ export declare const SupportContactUpdateManyWithoutUserNestedInputSchema: z.ZodType<Prisma.SupportContactUpdateManyWithoutUserNestedInput>;
532
+ export declare const EmergencyAlertUpdateManyWithoutUserNestedInputSchema: z.ZodType<Prisma.EmergencyAlertUpdateManyWithoutUserNestedInput>;
533
+ export declare const StreakUpdateOneWithoutUserNestedInputSchema: z.ZodType<Prisma.StreakUpdateOneWithoutUserNestedInput>;
534
+ export declare const LogAbsenceUpdateManyWithoutUserNestedInputSchema: z.ZodType<Prisma.LogAbsenceUpdateManyWithoutUserNestedInput>;
535
+ export declare const UserAddictionUncheckedUpdateOneWithoutUserNestedInputSchema: z.ZodType<Prisma.UserAddictionUncheckedUpdateOneWithoutUserNestedInput>;
536
+ export declare const DailyLogUncheckedUpdateManyWithoutUserNestedInputSchema: z.ZodType<Prisma.DailyLogUncheckedUpdateManyWithoutUserNestedInput>;
537
+ export declare const SponsorshipUncheckedUpdateManyWithoutSponsorNestedInputSchema: z.ZodType<Prisma.SponsorshipUncheckedUpdateManyWithoutSponsorNestedInput>;
538
+ export declare const SponsorshipUncheckedUpdateManyWithoutAddictNestedInputSchema: z.ZodType<Prisma.SponsorshipUncheckedUpdateManyWithoutAddictNestedInput>;
539
+ export declare const SupportContactUncheckedUpdateManyWithoutUserNestedInputSchema: z.ZodType<Prisma.SupportContactUncheckedUpdateManyWithoutUserNestedInput>;
540
+ export declare const EmergencyAlertUncheckedUpdateManyWithoutUserNestedInputSchema: z.ZodType<Prisma.EmergencyAlertUncheckedUpdateManyWithoutUserNestedInput>;
541
+ export declare const StreakUncheckedUpdateOneWithoutUserNestedInputSchema: z.ZodType<Prisma.StreakUncheckedUpdateOneWithoutUserNestedInput>;
542
+ export declare const LogAbsenceUncheckedUpdateManyWithoutUserNestedInputSchema: z.ZodType<Prisma.LogAbsenceUncheckedUpdateManyWithoutUserNestedInput>;
543
+ export declare const DailyLogCreateNestedManyWithoutCraving_levelInputSchema: z.ZodType<Prisma.DailyLogCreateNestedManyWithoutCraving_levelInput>;
544
+ export declare const DailyLogUncheckedCreateNestedManyWithoutCraving_levelInputSchema: z.ZodType<Prisma.DailyLogUncheckedCreateNestedManyWithoutCraving_levelInput>;
545
+ export declare const IntFieldUpdateOperationsInputSchema: z.ZodType<Prisma.IntFieldUpdateOperationsInput>;
546
+ export declare const DailyLogUpdateManyWithoutCraving_levelNestedInputSchema: z.ZodType<Prisma.DailyLogUpdateManyWithoutCraving_levelNestedInput>;
547
+ export declare const DailyLogUncheckedUpdateManyWithoutCraving_levelNestedInputSchema: z.ZodType<Prisma.DailyLogUncheckedUpdateManyWithoutCraving_levelNestedInput>;
548
+ export declare const DailyLogCreateNestedManyWithoutEmotional_stateInputSchema: z.ZodType<Prisma.DailyLogCreateNestedManyWithoutEmotional_stateInput>;
549
+ export declare const DailyLogUncheckedCreateNestedManyWithoutEmotional_stateInputSchema: z.ZodType<Prisma.DailyLogUncheckedCreateNestedManyWithoutEmotional_stateInput>;
550
+ export declare const DailyLogUpdateManyWithoutEmotional_stateNestedInputSchema: z.ZodType<Prisma.DailyLogUpdateManyWithoutEmotional_stateNestedInput>;
551
+ export declare const DailyLogUncheckedUpdateManyWithoutEmotional_stateNestedInputSchema: z.ZodType<Prisma.DailyLogUncheckedUpdateManyWithoutEmotional_stateNestedInput>;
552
+ export declare const UserCreateNestedOneWithoutAddictionsInputSchema: z.ZodType<Prisma.UserCreateNestedOneWithoutAddictionsInput>;
553
+ export declare const StreakCreateNestedOneWithoutAddictionInputSchema: z.ZodType<Prisma.StreakCreateNestedOneWithoutAddictionInput>;
554
+ export declare const EmergencyAlertCreateNestedManyWithoutAddictionInputSchema: z.ZodType<Prisma.EmergencyAlertCreateNestedManyWithoutAddictionInput>;
555
+ export declare const StreakUncheckedCreateNestedOneWithoutAddictionInputSchema: z.ZodType<Prisma.StreakUncheckedCreateNestedOneWithoutAddictionInput>;
556
+ export declare const EmergencyAlertUncheckedCreateNestedManyWithoutAddictionInputSchema: z.ZodType<Prisma.EmergencyAlertUncheckedCreateNestedManyWithoutAddictionInput>;
557
+ export declare const BoolFieldUpdateOperationsInputSchema: z.ZodType<Prisma.BoolFieldUpdateOperationsInput>;
558
+ export declare const UserUpdateOneRequiredWithoutAddictionsNestedInputSchema: z.ZodType<Prisma.UserUpdateOneRequiredWithoutAddictionsNestedInput>;
559
+ export declare const StreakUpdateOneWithoutAddictionNestedInputSchema: z.ZodType<Prisma.StreakUpdateOneWithoutAddictionNestedInput>;
560
+ export declare const EmergencyAlertUpdateManyWithoutAddictionNestedInputSchema: z.ZodType<Prisma.EmergencyAlertUpdateManyWithoutAddictionNestedInput>;
561
+ export declare const StreakUncheckedUpdateOneWithoutAddictionNestedInputSchema: z.ZodType<Prisma.StreakUncheckedUpdateOneWithoutAddictionNestedInput>;
562
+ export declare const EmergencyAlertUncheckedUpdateManyWithoutAddictionNestedInputSchema: z.ZodType<Prisma.EmergencyAlertUncheckedUpdateManyWithoutAddictionNestedInput>;
563
+ export declare const UserCreateNestedOneWithoutSponsorships_as_sponsorInputSchema: z.ZodType<Prisma.UserCreateNestedOneWithoutSponsorships_as_sponsorInput>;
564
+ export declare const UserCreateNestedOneWithoutSponsorships_as_addictInputSchema: z.ZodType<Prisma.UserCreateNestedOneWithoutSponsorships_as_addictInput>;
565
+ export declare const NullableDateTimeFieldUpdateOperationsInputSchema: z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput>;
566
+ export declare const UserUpdateOneWithoutSponsorships_as_sponsorNestedInputSchema: z.ZodType<Prisma.UserUpdateOneWithoutSponsorships_as_sponsorNestedInput>;
567
+ export declare const UserUpdateOneWithoutSponsorships_as_addictNestedInputSchema: z.ZodType<Prisma.UserUpdateOneWithoutSponsorships_as_addictNestedInput>;
568
+ export declare const UserCreateNestedOneWithoutDaily_logsInputSchema: z.ZodType<Prisma.UserCreateNestedOneWithoutDaily_logsInput>;
569
+ export declare const CravingLevelCreateNestedOneWithoutDaily_logsInputSchema: z.ZodType<Prisma.CravingLevelCreateNestedOneWithoutDaily_logsInput>;
570
+ export declare const EmotionalStateCreateNestedOneWithoutDaily_logsInputSchema: z.ZodType<Prisma.EmotionalStateCreateNestedOneWithoutDaily_logsInput>;
571
+ export declare const UserUpdateOneRequiredWithoutDaily_logsNestedInputSchema: z.ZodType<Prisma.UserUpdateOneRequiredWithoutDaily_logsNestedInput>;
572
+ export declare const CravingLevelUpdateOneWithoutDaily_logsNestedInputSchema: z.ZodType<Prisma.CravingLevelUpdateOneWithoutDaily_logsNestedInput>;
573
+ export declare const EmotionalStateUpdateOneWithoutDaily_logsNestedInputSchema: z.ZodType<Prisma.EmotionalStateUpdateOneWithoutDaily_logsNestedInput>;
574
+ export declare const StreakCreateNestedOneWithoutEventsInputSchema: z.ZodType<Prisma.StreakCreateNestedOneWithoutEventsInput>;
575
+ export declare const LogAbsenceCreateNestedManyWithoutStreak_eventInputSchema: z.ZodType<Prisma.LogAbsenceCreateNestedManyWithoutStreak_eventInput>;
576
+ export declare const LogAbsenceUncheckedCreateNestedManyWithoutStreak_eventInputSchema: z.ZodType<Prisma.LogAbsenceUncheckedCreateNestedManyWithoutStreak_eventInput>;
577
+ export declare const NullableIntFieldUpdateOperationsInputSchema: z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput>;
578
+ export declare const NullableDecimalFieldUpdateOperationsInputSchema: z.ZodType<Prisma.NullableDecimalFieldUpdateOperationsInput>;
579
+ export declare const StreakUpdateOneRequiredWithoutEventsNestedInputSchema: z.ZodType<Prisma.StreakUpdateOneRequiredWithoutEventsNestedInput>;
580
+ export declare const LogAbsenceUpdateManyWithoutStreak_eventNestedInputSchema: z.ZodType<Prisma.LogAbsenceUpdateManyWithoutStreak_eventNestedInput>;
581
+ export declare const LogAbsenceUncheckedUpdateManyWithoutStreak_eventNestedInputSchema: z.ZodType<Prisma.LogAbsenceUncheckedUpdateManyWithoutStreak_eventNestedInput>;
582
+ export declare const UserCreateNestedOneWithoutAbsencesInputSchema: z.ZodType<Prisma.UserCreateNestedOneWithoutAbsencesInput>;
583
+ export declare const StreakEventCreateNestedOneWithoutAbsencesInputSchema: z.ZodType<Prisma.StreakEventCreateNestedOneWithoutAbsencesInput>;
584
+ export declare const UserUpdateOneRequiredWithoutAbsencesNestedInputSchema: z.ZodType<Prisma.UserUpdateOneRequiredWithoutAbsencesNestedInput>;
585
+ export declare const StreakEventUpdateOneWithoutAbsencesNestedInputSchema: z.ZodType<Prisma.StreakEventUpdateOneWithoutAbsencesNestedInput>;
586
+ export declare const UserCreateNestedOneWithoutContactsInputSchema: z.ZodType<Prisma.UserCreateNestedOneWithoutContactsInput>;
587
+ export declare const UserUpdateOneRequiredWithoutContactsNestedInputSchema: z.ZodType<Prisma.UserUpdateOneRequiredWithoutContactsNestedInput>;
588
+ export declare const UserCreateNestedOneWithoutAlertsInputSchema: z.ZodType<Prisma.UserCreateNestedOneWithoutAlertsInput>;
589
+ export declare const UserAddictionCreateNestedOneWithoutAlertsInputSchema: z.ZodType<Prisma.UserAddictionCreateNestedOneWithoutAlertsInput>;
590
+ export declare const UserUpdateOneRequiredWithoutAlertsNestedInputSchema: z.ZodType<Prisma.UserUpdateOneRequiredWithoutAlertsNestedInput>;
591
+ export declare const UserAddictionUpdateOneRequiredWithoutAlertsNestedInputSchema: z.ZodType<Prisma.UserAddictionUpdateOneRequiredWithoutAlertsNestedInput>;
592
+ export declare const UserCreateNestedOneWithoutStreakInputSchema: z.ZodType<Prisma.UserCreateNestedOneWithoutStreakInput>;
593
+ export declare const UserAddictionCreateNestedOneWithoutStreakInputSchema: z.ZodType<Prisma.UserAddictionCreateNestedOneWithoutStreakInput>;
594
+ export declare const StreakEventCreateNestedManyWithoutStreakInputSchema: z.ZodType<Prisma.StreakEventCreateNestedManyWithoutStreakInput>;
595
+ export declare const StreakEventUncheckedCreateNestedManyWithoutStreakInputSchema: z.ZodType<Prisma.StreakEventUncheckedCreateNestedManyWithoutStreakInput>;
596
+ export declare const UserUpdateOneRequiredWithoutStreakNestedInputSchema: z.ZodType<Prisma.UserUpdateOneRequiredWithoutStreakNestedInput>;
597
+ export declare const UserAddictionUpdateOneRequiredWithoutStreakNestedInputSchema: z.ZodType<Prisma.UserAddictionUpdateOneRequiredWithoutStreakNestedInput>;
598
+ export declare const StreakEventUpdateManyWithoutStreakNestedInputSchema: z.ZodType<Prisma.StreakEventUpdateManyWithoutStreakNestedInput>;
599
+ export declare const StreakEventUncheckedUpdateManyWithoutStreakNestedInputSchema: z.ZodType<Prisma.StreakEventUncheckedUpdateManyWithoutStreakNestedInput>;
600
+ export declare const NestedUuidFilterSchema: z.ZodType<Prisma.NestedUuidFilter>;
601
+ export declare const NestedStringFilterSchema: z.ZodType<Prisma.NestedStringFilter>;
602
+ export declare const NestedStringNullableFilterSchema: z.ZodType<Prisma.NestedStringNullableFilter>;
603
+ export declare const NestedDateTimeFilterSchema: z.ZodType<Prisma.NestedDateTimeFilter>;
604
+ export declare const NestedUuidWithAggregatesFilterSchema: z.ZodType<Prisma.NestedUuidWithAggregatesFilter>;
605
+ export declare const NestedIntFilterSchema: z.ZodType<Prisma.NestedIntFilter>;
606
+ export declare const NestedStringWithAggregatesFilterSchema: z.ZodType<Prisma.NestedStringWithAggregatesFilter>;
607
+ export declare const NestedStringNullableWithAggregatesFilterSchema: z.ZodType<Prisma.NestedStringNullableWithAggregatesFilter>;
608
+ export declare const NestedIntNullableFilterSchema: z.ZodType<Prisma.NestedIntNullableFilter>;
609
+ export declare const NestedDateTimeWithAggregatesFilterSchema: z.ZodType<Prisma.NestedDateTimeWithAggregatesFilter>;
610
+ export declare const NestedIntWithAggregatesFilterSchema: z.ZodType<Prisma.NestedIntWithAggregatesFilter>;
611
+ export declare const NestedFloatFilterSchema: z.ZodType<Prisma.NestedFloatFilter>;
612
+ export declare const NestedBoolFilterSchema: z.ZodType<Prisma.NestedBoolFilter>;
613
+ export declare const NestedBoolWithAggregatesFilterSchema: z.ZodType<Prisma.NestedBoolWithAggregatesFilter>;
614
+ export declare const NestedUuidNullableFilterSchema: z.ZodType<Prisma.NestedUuidNullableFilter>;
615
+ export declare const NestedDateTimeNullableFilterSchema: z.ZodType<Prisma.NestedDateTimeNullableFilter>;
616
+ export declare const NestedUuidNullableWithAggregatesFilterSchema: z.ZodType<Prisma.NestedUuidNullableWithAggregatesFilter>;
617
+ export declare const NestedDateTimeNullableWithAggregatesFilterSchema: z.ZodType<Prisma.NestedDateTimeNullableWithAggregatesFilter>;
618
+ export declare const NestedDecimalNullableFilterSchema: z.ZodType<Prisma.NestedDecimalNullableFilter>;
619
+ export declare const NestedIntNullableWithAggregatesFilterSchema: z.ZodType<Prisma.NestedIntNullableWithAggregatesFilter>;
620
+ export declare const NestedFloatNullableFilterSchema: z.ZodType<Prisma.NestedFloatNullableFilter>;
621
+ export declare const NestedDecimalNullableWithAggregatesFilterSchema: z.ZodType<Prisma.NestedDecimalNullableWithAggregatesFilter>;
622
+ export declare const UserAddictionCreateWithoutUserInputSchema: z.ZodType<Prisma.UserAddictionCreateWithoutUserInput>;
623
+ export declare const UserAddictionUncheckedCreateWithoutUserInputSchema: z.ZodType<Prisma.UserAddictionUncheckedCreateWithoutUserInput>;
624
+ export declare const UserAddictionCreateOrConnectWithoutUserInputSchema: z.ZodType<Prisma.UserAddictionCreateOrConnectWithoutUserInput>;
625
+ export declare const DailyLogCreateWithoutUserInputSchema: z.ZodType<Prisma.DailyLogCreateWithoutUserInput>;
626
+ export declare const DailyLogUncheckedCreateWithoutUserInputSchema: z.ZodType<Prisma.DailyLogUncheckedCreateWithoutUserInput>;
627
+ export declare const DailyLogCreateOrConnectWithoutUserInputSchema: z.ZodType<Prisma.DailyLogCreateOrConnectWithoutUserInput>;
628
+ export declare const DailyLogCreateManyUserInputEnvelopeSchema: z.ZodType<Prisma.DailyLogCreateManyUserInputEnvelope>;
629
+ export declare const SponsorshipCreateWithoutSponsorInputSchema: z.ZodType<Prisma.SponsorshipCreateWithoutSponsorInput>;
630
+ export declare const SponsorshipUncheckedCreateWithoutSponsorInputSchema: z.ZodType<Prisma.SponsorshipUncheckedCreateWithoutSponsorInput>;
631
+ export declare const SponsorshipCreateOrConnectWithoutSponsorInputSchema: z.ZodType<Prisma.SponsorshipCreateOrConnectWithoutSponsorInput>;
632
+ export declare const SponsorshipCreateManySponsorInputEnvelopeSchema: z.ZodType<Prisma.SponsorshipCreateManySponsorInputEnvelope>;
633
+ export declare const SponsorshipCreateWithoutAddictInputSchema: z.ZodType<Prisma.SponsorshipCreateWithoutAddictInput>;
634
+ export declare const SponsorshipUncheckedCreateWithoutAddictInputSchema: z.ZodType<Prisma.SponsorshipUncheckedCreateWithoutAddictInput>;
635
+ export declare const SponsorshipCreateOrConnectWithoutAddictInputSchema: z.ZodType<Prisma.SponsorshipCreateOrConnectWithoutAddictInput>;
636
+ export declare const SponsorshipCreateManyAddictInputEnvelopeSchema: z.ZodType<Prisma.SponsorshipCreateManyAddictInputEnvelope>;
637
+ export declare const SupportContactCreateWithoutUserInputSchema: z.ZodType<Prisma.SupportContactCreateWithoutUserInput>;
638
+ export declare const SupportContactUncheckedCreateWithoutUserInputSchema: z.ZodType<Prisma.SupportContactUncheckedCreateWithoutUserInput>;
639
+ export declare const SupportContactCreateOrConnectWithoutUserInputSchema: z.ZodType<Prisma.SupportContactCreateOrConnectWithoutUserInput>;
640
+ export declare const SupportContactCreateManyUserInputEnvelopeSchema: z.ZodType<Prisma.SupportContactCreateManyUserInputEnvelope>;
641
+ export declare const EmergencyAlertCreateWithoutUserInputSchema: z.ZodType<Prisma.EmergencyAlertCreateWithoutUserInput>;
642
+ export declare const EmergencyAlertUncheckedCreateWithoutUserInputSchema: z.ZodType<Prisma.EmergencyAlertUncheckedCreateWithoutUserInput>;
643
+ export declare const EmergencyAlertCreateOrConnectWithoutUserInputSchema: z.ZodType<Prisma.EmergencyAlertCreateOrConnectWithoutUserInput>;
644
+ export declare const EmergencyAlertCreateManyUserInputEnvelopeSchema: z.ZodType<Prisma.EmergencyAlertCreateManyUserInputEnvelope>;
645
+ export declare const StreakCreateWithoutUserInputSchema: z.ZodType<Prisma.StreakCreateWithoutUserInput>;
646
+ export declare const StreakUncheckedCreateWithoutUserInputSchema: z.ZodType<Prisma.StreakUncheckedCreateWithoutUserInput>;
647
+ export declare const StreakCreateOrConnectWithoutUserInputSchema: z.ZodType<Prisma.StreakCreateOrConnectWithoutUserInput>;
648
+ export declare const LogAbsenceCreateWithoutUserInputSchema: z.ZodType<Prisma.LogAbsenceCreateWithoutUserInput>;
649
+ export declare const LogAbsenceUncheckedCreateWithoutUserInputSchema: z.ZodType<Prisma.LogAbsenceUncheckedCreateWithoutUserInput>;
650
+ export declare const LogAbsenceCreateOrConnectWithoutUserInputSchema: z.ZodType<Prisma.LogAbsenceCreateOrConnectWithoutUserInput>;
651
+ export declare const LogAbsenceCreateManyUserInputEnvelopeSchema: z.ZodType<Prisma.LogAbsenceCreateManyUserInputEnvelope>;
652
+ export declare const UserAddictionUpsertWithoutUserInputSchema: z.ZodType<Prisma.UserAddictionUpsertWithoutUserInput>;
653
+ export declare const UserAddictionUpdateToOneWithWhereWithoutUserInputSchema: z.ZodType<Prisma.UserAddictionUpdateToOneWithWhereWithoutUserInput>;
654
+ export declare const UserAddictionUpdateWithoutUserInputSchema: z.ZodType<Prisma.UserAddictionUpdateWithoutUserInput>;
655
+ export declare const UserAddictionUncheckedUpdateWithoutUserInputSchema: z.ZodType<Prisma.UserAddictionUncheckedUpdateWithoutUserInput>;
656
+ export declare const DailyLogUpsertWithWhereUniqueWithoutUserInputSchema: z.ZodType<Prisma.DailyLogUpsertWithWhereUniqueWithoutUserInput>;
657
+ export declare const DailyLogUpdateWithWhereUniqueWithoutUserInputSchema: z.ZodType<Prisma.DailyLogUpdateWithWhereUniqueWithoutUserInput>;
658
+ export declare const DailyLogUpdateManyWithWhereWithoutUserInputSchema: z.ZodType<Prisma.DailyLogUpdateManyWithWhereWithoutUserInput>;
659
+ export declare const DailyLogScalarWhereInputSchema: z.ZodType<Prisma.DailyLogScalarWhereInput>;
660
+ export declare const SponsorshipUpsertWithWhereUniqueWithoutSponsorInputSchema: z.ZodType<Prisma.SponsorshipUpsertWithWhereUniqueWithoutSponsorInput>;
661
+ export declare const SponsorshipUpdateWithWhereUniqueWithoutSponsorInputSchema: z.ZodType<Prisma.SponsorshipUpdateWithWhereUniqueWithoutSponsorInput>;
662
+ export declare const SponsorshipUpdateManyWithWhereWithoutSponsorInputSchema: z.ZodType<Prisma.SponsorshipUpdateManyWithWhereWithoutSponsorInput>;
663
+ export declare const SponsorshipScalarWhereInputSchema: z.ZodType<Prisma.SponsorshipScalarWhereInput>;
664
+ export declare const SponsorshipUpsertWithWhereUniqueWithoutAddictInputSchema: z.ZodType<Prisma.SponsorshipUpsertWithWhereUniqueWithoutAddictInput>;
665
+ export declare const SponsorshipUpdateWithWhereUniqueWithoutAddictInputSchema: z.ZodType<Prisma.SponsorshipUpdateWithWhereUniqueWithoutAddictInput>;
666
+ export declare const SponsorshipUpdateManyWithWhereWithoutAddictInputSchema: z.ZodType<Prisma.SponsorshipUpdateManyWithWhereWithoutAddictInput>;
667
+ export declare const SupportContactUpsertWithWhereUniqueWithoutUserInputSchema: z.ZodType<Prisma.SupportContactUpsertWithWhereUniqueWithoutUserInput>;
668
+ export declare const SupportContactUpdateWithWhereUniqueWithoutUserInputSchema: z.ZodType<Prisma.SupportContactUpdateWithWhereUniqueWithoutUserInput>;
669
+ export declare const SupportContactUpdateManyWithWhereWithoutUserInputSchema: z.ZodType<Prisma.SupportContactUpdateManyWithWhereWithoutUserInput>;
670
+ export declare const SupportContactScalarWhereInputSchema: z.ZodType<Prisma.SupportContactScalarWhereInput>;
671
+ export declare const EmergencyAlertUpsertWithWhereUniqueWithoutUserInputSchema: z.ZodType<Prisma.EmergencyAlertUpsertWithWhereUniqueWithoutUserInput>;
672
+ export declare const EmergencyAlertUpdateWithWhereUniqueWithoutUserInputSchema: z.ZodType<Prisma.EmergencyAlertUpdateWithWhereUniqueWithoutUserInput>;
673
+ export declare const EmergencyAlertUpdateManyWithWhereWithoutUserInputSchema: z.ZodType<Prisma.EmergencyAlertUpdateManyWithWhereWithoutUserInput>;
674
+ export declare const EmergencyAlertScalarWhereInputSchema: z.ZodType<Prisma.EmergencyAlertScalarWhereInput>;
675
+ export declare const StreakUpsertWithoutUserInputSchema: z.ZodType<Prisma.StreakUpsertWithoutUserInput>;
676
+ export declare const StreakUpdateToOneWithWhereWithoutUserInputSchema: z.ZodType<Prisma.StreakUpdateToOneWithWhereWithoutUserInput>;
677
+ export declare const StreakUpdateWithoutUserInputSchema: z.ZodType<Prisma.StreakUpdateWithoutUserInput>;
678
+ export declare const StreakUncheckedUpdateWithoutUserInputSchema: z.ZodType<Prisma.StreakUncheckedUpdateWithoutUserInput>;
679
+ export declare const LogAbsenceUpsertWithWhereUniqueWithoutUserInputSchema: z.ZodType<Prisma.LogAbsenceUpsertWithWhereUniqueWithoutUserInput>;
680
+ export declare const LogAbsenceUpdateWithWhereUniqueWithoutUserInputSchema: z.ZodType<Prisma.LogAbsenceUpdateWithWhereUniqueWithoutUserInput>;
681
+ export declare const LogAbsenceUpdateManyWithWhereWithoutUserInputSchema: z.ZodType<Prisma.LogAbsenceUpdateManyWithWhereWithoutUserInput>;
682
+ export declare const LogAbsenceScalarWhereInputSchema: z.ZodType<Prisma.LogAbsenceScalarWhereInput>;
683
+ export declare const DailyLogCreateWithoutCraving_levelInputSchema: z.ZodType<Prisma.DailyLogCreateWithoutCraving_levelInput>;
684
+ export declare const DailyLogUncheckedCreateWithoutCraving_levelInputSchema: z.ZodType<Prisma.DailyLogUncheckedCreateWithoutCraving_levelInput>;
685
+ export declare const DailyLogCreateOrConnectWithoutCraving_levelInputSchema: z.ZodType<Prisma.DailyLogCreateOrConnectWithoutCraving_levelInput>;
686
+ export declare const DailyLogCreateManyCraving_levelInputEnvelopeSchema: z.ZodType<Prisma.DailyLogCreateManyCraving_levelInputEnvelope>;
687
+ export declare const DailyLogUpsertWithWhereUniqueWithoutCraving_levelInputSchema: z.ZodType<Prisma.DailyLogUpsertWithWhereUniqueWithoutCraving_levelInput>;
688
+ export declare const DailyLogUpdateWithWhereUniqueWithoutCraving_levelInputSchema: z.ZodType<Prisma.DailyLogUpdateWithWhereUniqueWithoutCraving_levelInput>;
689
+ export declare const DailyLogUpdateManyWithWhereWithoutCraving_levelInputSchema: z.ZodType<Prisma.DailyLogUpdateManyWithWhereWithoutCraving_levelInput>;
690
+ export declare const DailyLogCreateWithoutEmotional_stateInputSchema: z.ZodType<Prisma.DailyLogCreateWithoutEmotional_stateInput>;
691
+ export declare const DailyLogUncheckedCreateWithoutEmotional_stateInputSchema: z.ZodType<Prisma.DailyLogUncheckedCreateWithoutEmotional_stateInput>;
692
+ export declare const DailyLogCreateOrConnectWithoutEmotional_stateInputSchema: z.ZodType<Prisma.DailyLogCreateOrConnectWithoutEmotional_stateInput>;
693
+ export declare const DailyLogCreateManyEmotional_stateInputEnvelopeSchema: z.ZodType<Prisma.DailyLogCreateManyEmotional_stateInputEnvelope>;
694
+ export declare const DailyLogUpsertWithWhereUniqueWithoutEmotional_stateInputSchema: z.ZodType<Prisma.DailyLogUpsertWithWhereUniqueWithoutEmotional_stateInput>;
695
+ export declare const DailyLogUpdateWithWhereUniqueWithoutEmotional_stateInputSchema: z.ZodType<Prisma.DailyLogUpdateWithWhereUniqueWithoutEmotional_stateInput>;
696
+ export declare const DailyLogUpdateManyWithWhereWithoutEmotional_stateInputSchema: z.ZodType<Prisma.DailyLogUpdateManyWithWhereWithoutEmotional_stateInput>;
697
+ export declare const UserCreateWithoutAddictionsInputSchema: z.ZodType<Prisma.UserCreateWithoutAddictionsInput>;
698
+ export declare const UserUncheckedCreateWithoutAddictionsInputSchema: z.ZodType<Prisma.UserUncheckedCreateWithoutAddictionsInput>;
699
+ export declare const UserCreateOrConnectWithoutAddictionsInputSchema: z.ZodType<Prisma.UserCreateOrConnectWithoutAddictionsInput>;
700
+ export declare const StreakCreateWithoutAddictionInputSchema: z.ZodType<Prisma.StreakCreateWithoutAddictionInput>;
701
+ export declare const StreakUncheckedCreateWithoutAddictionInputSchema: z.ZodType<Prisma.StreakUncheckedCreateWithoutAddictionInput>;
702
+ export declare const StreakCreateOrConnectWithoutAddictionInputSchema: z.ZodType<Prisma.StreakCreateOrConnectWithoutAddictionInput>;
703
+ export declare const EmergencyAlertCreateWithoutAddictionInputSchema: z.ZodType<Prisma.EmergencyAlertCreateWithoutAddictionInput>;
704
+ export declare const EmergencyAlertUncheckedCreateWithoutAddictionInputSchema: z.ZodType<Prisma.EmergencyAlertUncheckedCreateWithoutAddictionInput>;
705
+ export declare const EmergencyAlertCreateOrConnectWithoutAddictionInputSchema: z.ZodType<Prisma.EmergencyAlertCreateOrConnectWithoutAddictionInput>;
706
+ export declare const EmergencyAlertCreateManyAddictionInputEnvelopeSchema: z.ZodType<Prisma.EmergencyAlertCreateManyAddictionInputEnvelope>;
707
+ export declare const UserUpsertWithoutAddictionsInputSchema: z.ZodType<Prisma.UserUpsertWithoutAddictionsInput>;
708
+ export declare const UserUpdateToOneWithWhereWithoutAddictionsInputSchema: z.ZodType<Prisma.UserUpdateToOneWithWhereWithoutAddictionsInput>;
709
+ export declare const UserUpdateWithoutAddictionsInputSchema: z.ZodType<Prisma.UserUpdateWithoutAddictionsInput>;
710
+ export declare const UserUncheckedUpdateWithoutAddictionsInputSchema: z.ZodType<Prisma.UserUncheckedUpdateWithoutAddictionsInput>;
711
+ export declare const StreakUpsertWithoutAddictionInputSchema: z.ZodType<Prisma.StreakUpsertWithoutAddictionInput>;
712
+ export declare const StreakUpdateToOneWithWhereWithoutAddictionInputSchema: z.ZodType<Prisma.StreakUpdateToOneWithWhereWithoutAddictionInput>;
713
+ export declare const StreakUpdateWithoutAddictionInputSchema: z.ZodType<Prisma.StreakUpdateWithoutAddictionInput>;
714
+ export declare const StreakUncheckedUpdateWithoutAddictionInputSchema: z.ZodType<Prisma.StreakUncheckedUpdateWithoutAddictionInput>;
715
+ export declare const EmergencyAlertUpsertWithWhereUniqueWithoutAddictionInputSchema: z.ZodType<Prisma.EmergencyAlertUpsertWithWhereUniqueWithoutAddictionInput>;
716
+ export declare const EmergencyAlertUpdateWithWhereUniqueWithoutAddictionInputSchema: z.ZodType<Prisma.EmergencyAlertUpdateWithWhereUniqueWithoutAddictionInput>;
717
+ export declare const EmergencyAlertUpdateManyWithWhereWithoutAddictionInputSchema: z.ZodType<Prisma.EmergencyAlertUpdateManyWithWhereWithoutAddictionInput>;
718
+ export declare const UserCreateWithoutSponsorships_as_sponsorInputSchema: z.ZodType<Prisma.UserCreateWithoutSponsorships_as_sponsorInput>;
719
+ export declare const UserUncheckedCreateWithoutSponsorships_as_sponsorInputSchema: z.ZodType<Prisma.UserUncheckedCreateWithoutSponsorships_as_sponsorInput>;
720
+ export declare const UserCreateOrConnectWithoutSponsorships_as_sponsorInputSchema: z.ZodType<Prisma.UserCreateOrConnectWithoutSponsorships_as_sponsorInput>;
721
+ export declare const UserCreateWithoutSponsorships_as_addictInputSchema: z.ZodType<Prisma.UserCreateWithoutSponsorships_as_addictInput>;
722
+ export declare const UserUncheckedCreateWithoutSponsorships_as_addictInputSchema: z.ZodType<Prisma.UserUncheckedCreateWithoutSponsorships_as_addictInput>;
723
+ export declare const UserCreateOrConnectWithoutSponsorships_as_addictInputSchema: z.ZodType<Prisma.UserCreateOrConnectWithoutSponsorships_as_addictInput>;
724
+ export declare const UserUpsertWithoutSponsorships_as_sponsorInputSchema: z.ZodType<Prisma.UserUpsertWithoutSponsorships_as_sponsorInput>;
725
+ export declare const UserUpdateToOneWithWhereWithoutSponsorships_as_sponsorInputSchema: z.ZodType<Prisma.UserUpdateToOneWithWhereWithoutSponsorships_as_sponsorInput>;
726
+ export declare const UserUpdateWithoutSponsorships_as_sponsorInputSchema: z.ZodType<Prisma.UserUpdateWithoutSponsorships_as_sponsorInput>;
727
+ export declare const UserUncheckedUpdateWithoutSponsorships_as_sponsorInputSchema: z.ZodType<Prisma.UserUncheckedUpdateWithoutSponsorships_as_sponsorInput>;
728
+ export declare const UserUpsertWithoutSponsorships_as_addictInputSchema: z.ZodType<Prisma.UserUpsertWithoutSponsorships_as_addictInput>;
729
+ export declare const UserUpdateToOneWithWhereWithoutSponsorships_as_addictInputSchema: z.ZodType<Prisma.UserUpdateToOneWithWhereWithoutSponsorships_as_addictInput>;
730
+ export declare const UserUpdateWithoutSponsorships_as_addictInputSchema: z.ZodType<Prisma.UserUpdateWithoutSponsorships_as_addictInput>;
731
+ export declare const UserUncheckedUpdateWithoutSponsorships_as_addictInputSchema: z.ZodType<Prisma.UserUncheckedUpdateWithoutSponsorships_as_addictInput>;
732
+ export declare const UserCreateWithoutDaily_logsInputSchema: z.ZodType<Prisma.UserCreateWithoutDaily_logsInput>;
733
+ export declare const UserUncheckedCreateWithoutDaily_logsInputSchema: z.ZodType<Prisma.UserUncheckedCreateWithoutDaily_logsInput>;
734
+ export declare const UserCreateOrConnectWithoutDaily_logsInputSchema: z.ZodType<Prisma.UserCreateOrConnectWithoutDaily_logsInput>;
735
+ export declare const CravingLevelCreateWithoutDaily_logsInputSchema: z.ZodType<Prisma.CravingLevelCreateWithoutDaily_logsInput>;
736
+ export declare const CravingLevelUncheckedCreateWithoutDaily_logsInputSchema: z.ZodType<Prisma.CravingLevelUncheckedCreateWithoutDaily_logsInput>;
737
+ export declare const CravingLevelCreateOrConnectWithoutDaily_logsInputSchema: z.ZodType<Prisma.CravingLevelCreateOrConnectWithoutDaily_logsInput>;
738
+ export declare const EmotionalStateCreateWithoutDaily_logsInputSchema: z.ZodType<Prisma.EmotionalStateCreateWithoutDaily_logsInput>;
739
+ export declare const EmotionalStateUncheckedCreateWithoutDaily_logsInputSchema: z.ZodType<Prisma.EmotionalStateUncheckedCreateWithoutDaily_logsInput>;
740
+ export declare const EmotionalStateCreateOrConnectWithoutDaily_logsInputSchema: z.ZodType<Prisma.EmotionalStateCreateOrConnectWithoutDaily_logsInput>;
741
+ export declare const UserUpsertWithoutDaily_logsInputSchema: z.ZodType<Prisma.UserUpsertWithoutDaily_logsInput>;
742
+ export declare const UserUpdateToOneWithWhereWithoutDaily_logsInputSchema: z.ZodType<Prisma.UserUpdateToOneWithWhereWithoutDaily_logsInput>;
743
+ export declare const UserUpdateWithoutDaily_logsInputSchema: z.ZodType<Prisma.UserUpdateWithoutDaily_logsInput>;
744
+ export declare const UserUncheckedUpdateWithoutDaily_logsInputSchema: z.ZodType<Prisma.UserUncheckedUpdateWithoutDaily_logsInput>;
745
+ export declare const CravingLevelUpsertWithoutDaily_logsInputSchema: z.ZodType<Prisma.CravingLevelUpsertWithoutDaily_logsInput>;
746
+ export declare const CravingLevelUpdateToOneWithWhereWithoutDaily_logsInputSchema: z.ZodType<Prisma.CravingLevelUpdateToOneWithWhereWithoutDaily_logsInput>;
747
+ export declare const CravingLevelUpdateWithoutDaily_logsInputSchema: z.ZodType<Prisma.CravingLevelUpdateWithoutDaily_logsInput>;
748
+ export declare const CravingLevelUncheckedUpdateWithoutDaily_logsInputSchema: z.ZodType<Prisma.CravingLevelUncheckedUpdateWithoutDaily_logsInput>;
749
+ export declare const EmotionalStateUpsertWithoutDaily_logsInputSchema: z.ZodType<Prisma.EmotionalStateUpsertWithoutDaily_logsInput>;
750
+ export declare const EmotionalStateUpdateToOneWithWhereWithoutDaily_logsInputSchema: z.ZodType<Prisma.EmotionalStateUpdateToOneWithWhereWithoutDaily_logsInput>;
751
+ export declare const EmotionalStateUpdateWithoutDaily_logsInputSchema: z.ZodType<Prisma.EmotionalStateUpdateWithoutDaily_logsInput>;
752
+ export declare const EmotionalStateUncheckedUpdateWithoutDaily_logsInputSchema: z.ZodType<Prisma.EmotionalStateUncheckedUpdateWithoutDaily_logsInput>;
753
+ export declare const StreakCreateWithoutEventsInputSchema: z.ZodType<Prisma.StreakCreateWithoutEventsInput>;
754
+ export declare const StreakUncheckedCreateWithoutEventsInputSchema: z.ZodType<Prisma.StreakUncheckedCreateWithoutEventsInput>;
755
+ export declare const StreakCreateOrConnectWithoutEventsInputSchema: z.ZodType<Prisma.StreakCreateOrConnectWithoutEventsInput>;
756
+ export declare const LogAbsenceCreateWithoutStreak_eventInputSchema: z.ZodType<Prisma.LogAbsenceCreateWithoutStreak_eventInput>;
757
+ export declare const LogAbsenceUncheckedCreateWithoutStreak_eventInputSchema: z.ZodType<Prisma.LogAbsenceUncheckedCreateWithoutStreak_eventInput>;
758
+ export declare const LogAbsenceCreateOrConnectWithoutStreak_eventInputSchema: z.ZodType<Prisma.LogAbsenceCreateOrConnectWithoutStreak_eventInput>;
759
+ export declare const LogAbsenceCreateManyStreak_eventInputEnvelopeSchema: z.ZodType<Prisma.LogAbsenceCreateManyStreak_eventInputEnvelope>;
760
+ export declare const StreakUpsertWithoutEventsInputSchema: z.ZodType<Prisma.StreakUpsertWithoutEventsInput>;
761
+ export declare const StreakUpdateToOneWithWhereWithoutEventsInputSchema: z.ZodType<Prisma.StreakUpdateToOneWithWhereWithoutEventsInput>;
762
+ export declare const StreakUpdateWithoutEventsInputSchema: z.ZodType<Prisma.StreakUpdateWithoutEventsInput>;
763
+ export declare const StreakUncheckedUpdateWithoutEventsInputSchema: z.ZodType<Prisma.StreakUncheckedUpdateWithoutEventsInput>;
764
+ export declare const LogAbsenceUpsertWithWhereUniqueWithoutStreak_eventInputSchema: z.ZodType<Prisma.LogAbsenceUpsertWithWhereUniqueWithoutStreak_eventInput>;
765
+ export declare const LogAbsenceUpdateWithWhereUniqueWithoutStreak_eventInputSchema: z.ZodType<Prisma.LogAbsenceUpdateWithWhereUniqueWithoutStreak_eventInput>;
766
+ export declare const LogAbsenceUpdateManyWithWhereWithoutStreak_eventInputSchema: z.ZodType<Prisma.LogAbsenceUpdateManyWithWhereWithoutStreak_eventInput>;
767
+ export declare const UserCreateWithoutAbsencesInputSchema: z.ZodType<Prisma.UserCreateWithoutAbsencesInput>;
768
+ export declare const UserUncheckedCreateWithoutAbsencesInputSchema: z.ZodType<Prisma.UserUncheckedCreateWithoutAbsencesInput>;
769
+ export declare const UserCreateOrConnectWithoutAbsencesInputSchema: z.ZodType<Prisma.UserCreateOrConnectWithoutAbsencesInput>;
770
+ export declare const StreakEventCreateWithoutAbsencesInputSchema: z.ZodType<Prisma.StreakEventCreateWithoutAbsencesInput>;
771
+ export declare const StreakEventUncheckedCreateWithoutAbsencesInputSchema: z.ZodType<Prisma.StreakEventUncheckedCreateWithoutAbsencesInput>;
772
+ export declare const StreakEventCreateOrConnectWithoutAbsencesInputSchema: z.ZodType<Prisma.StreakEventCreateOrConnectWithoutAbsencesInput>;
773
+ export declare const UserUpsertWithoutAbsencesInputSchema: z.ZodType<Prisma.UserUpsertWithoutAbsencesInput>;
774
+ export declare const UserUpdateToOneWithWhereWithoutAbsencesInputSchema: z.ZodType<Prisma.UserUpdateToOneWithWhereWithoutAbsencesInput>;
775
+ export declare const UserUpdateWithoutAbsencesInputSchema: z.ZodType<Prisma.UserUpdateWithoutAbsencesInput>;
776
+ export declare const UserUncheckedUpdateWithoutAbsencesInputSchema: z.ZodType<Prisma.UserUncheckedUpdateWithoutAbsencesInput>;
777
+ export declare const StreakEventUpsertWithoutAbsencesInputSchema: z.ZodType<Prisma.StreakEventUpsertWithoutAbsencesInput>;
778
+ export declare const StreakEventUpdateToOneWithWhereWithoutAbsencesInputSchema: z.ZodType<Prisma.StreakEventUpdateToOneWithWhereWithoutAbsencesInput>;
779
+ export declare const StreakEventUpdateWithoutAbsencesInputSchema: z.ZodType<Prisma.StreakEventUpdateWithoutAbsencesInput>;
780
+ export declare const StreakEventUncheckedUpdateWithoutAbsencesInputSchema: z.ZodType<Prisma.StreakEventUncheckedUpdateWithoutAbsencesInput>;
781
+ export declare const UserCreateWithoutContactsInputSchema: z.ZodType<Prisma.UserCreateWithoutContactsInput>;
782
+ export declare const UserUncheckedCreateWithoutContactsInputSchema: z.ZodType<Prisma.UserUncheckedCreateWithoutContactsInput>;
783
+ export declare const UserCreateOrConnectWithoutContactsInputSchema: z.ZodType<Prisma.UserCreateOrConnectWithoutContactsInput>;
784
+ export declare const UserUpsertWithoutContactsInputSchema: z.ZodType<Prisma.UserUpsertWithoutContactsInput>;
785
+ export declare const UserUpdateToOneWithWhereWithoutContactsInputSchema: z.ZodType<Prisma.UserUpdateToOneWithWhereWithoutContactsInput>;
786
+ export declare const UserUpdateWithoutContactsInputSchema: z.ZodType<Prisma.UserUpdateWithoutContactsInput>;
787
+ export declare const UserUncheckedUpdateWithoutContactsInputSchema: z.ZodType<Prisma.UserUncheckedUpdateWithoutContactsInput>;
788
+ export declare const UserCreateWithoutAlertsInputSchema: z.ZodType<Prisma.UserCreateWithoutAlertsInput>;
789
+ export declare const UserUncheckedCreateWithoutAlertsInputSchema: z.ZodType<Prisma.UserUncheckedCreateWithoutAlertsInput>;
790
+ export declare const UserCreateOrConnectWithoutAlertsInputSchema: z.ZodType<Prisma.UserCreateOrConnectWithoutAlertsInput>;
791
+ export declare const UserAddictionCreateWithoutAlertsInputSchema: z.ZodType<Prisma.UserAddictionCreateWithoutAlertsInput>;
792
+ export declare const UserAddictionUncheckedCreateWithoutAlertsInputSchema: z.ZodType<Prisma.UserAddictionUncheckedCreateWithoutAlertsInput>;
793
+ export declare const UserAddictionCreateOrConnectWithoutAlertsInputSchema: z.ZodType<Prisma.UserAddictionCreateOrConnectWithoutAlertsInput>;
794
+ export declare const UserUpsertWithoutAlertsInputSchema: z.ZodType<Prisma.UserUpsertWithoutAlertsInput>;
795
+ export declare const UserUpdateToOneWithWhereWithoutAlertsInputSchema: z.ZodType<Prisma.UserUpdateToOneWithWhereWithoutAlertsInput>;
796
+ export declare const UserUpdateWithoutAlertsInputSchema: z.ZodType<Prisma.UserUpdateWithoutAlertsInput>;
797
+ export declare const UserUncheckedUpdateWithoutAlertsInputSchema: z.ZodType<Prisma.UserUncheckedUpdateWithoutAlertsInput>;
798
+ export declare const UserAddictionUpsertWithoutAlertsInputSchema: z.ZodType<Prisma.UserAddictionUpsertWithoutAlertsInput>;
799
+ export declare const UserAddictionUpdateToOneWithWhereWithoutAlertsInputSchema: z.ZodType<Prisma.UserAddictionUpdateToOneWithWhereWithoutAlertsInput>;
800
+ export declare const UserAddictionUpdateWithoutAlertsInputSchema: z.ZodType<Prisma.UserAddictionUpdateWithoutAlertsInput>;
801
+ export declare const UserAddictionUncheckedUpdateWithoutAlertsInputSchema: z.ZodType<Prisma.UserAddictionUncheckedUpdateWithoutAlertsInput>;
802
+ export declare const UserCreateWithoutStreakInputSchema: z.ZodType<Prisma.UserCreateWithoutStreakInput>;
803
+ export declare const UserUncheckedCreateWithoutStreakInputSchema: z.ZodType<Prisma.UserUncheckedCreateWithoutStreakInput>;
804
+ export declare const UserCreateOrConnectWithoutStreakInputSchema: z.ZodType<Prisma.UserCreateOrConnectWithoutStreakInput>;
805
+ export declare const UserAddictionCreateWithoutStreakInputSchema: z.ZodType<Prisma.UserAddictionCreateWithoutStreakInput>;
806
+ export declare const UserAddictionUncheckedCreateWithoutStreakInputSchema: z.ZodType<Prisma.UserAddictionUncheckedCreateWithoutStreakInput>;
807
+ export declare const UserAddictionCreateOrConnectWithoutStreakInputSchema: z.ZodType<Prisma.UserAddictionCreateOrConnectWithoutStreakInput>;
808
+ export declare const StreakEventCreateWithoutStreakInputSchema: z.ZodType<Prisma.StreakEventCreateWithoutStreakInput>;
809
+ export declare const StreakEventUncheckedCreateWithoutStreakInputSchema: z.ZodType<Prisma.StreakEventUncheckedCreateWithoutStreakInput>;
810
+ export declare const StreakEventCreateOrConnectWithoutStreakInputSchema: z.ZodType<Prisma.StreakEventCreateOrConnectWithoutStreakInput>;
811
+ export declare const StreakEventCreateManyStreakInputEnvelopeSchema: z.ZodType<Prisma.StreakEventCreateManyStreakInputEnvelope>;
812
+ export declare const UserUpsertWithoutStreakInputSchema: z.ZodType<Prisma.UserUpsertWithoutStreakInput>;
813
+ export declare const UserUpdateToOneWithWhereWithoutStreakInputSchema: z.ZodType<Prisma.UserUpdateToOneWithWhereWithoutStreakInput>;
814
+ export declare const UserUpdateWithoutStreakInputSchema: z.ZodType<Prisma.UserUpdateWithoutStreakInput>;
815
+ export declare const UserUncheckedUpdateWithoutStreakInputSchema: z.ZodType<Prisma.UserUncheckedUpdateWithoutStreakInput>;
816
+ export declare const UserAddictionUpsertWithoutStreakInputSchema: z.ZodType<Prisma.UserAddictionUpsertWithoutStreakInput>;
817
+ export declare const UserAddictionUpdateToOneWithWhereWithoutStreakInputSchema: z.ZodType<Prisma.UserAddictionUpdateToOneWithWhereWithoutStreakInput>;
818
+ export declare const UserAddictionUpdateWithoutStreakInputSchema: z.ZodType<Prisma.UserAddictionUpdateWithoutStreakInput>;
819
+ export declare const UserAddictionUncheckedUpdateWithoutStreakInputSchema: z.ZodType<Prisma.UserAddictionUncheckedUpdateWithoutStreakInput>;
820
+ export declare const StreakEventUpsertWithWhereUniqueWithoutStreakInputSchema: z.ZodType<Prisma.StreakEventUpsertWithWhereUniqueWithoutStreakInput>;
821
+ export declare const StreakEventUpdateWithWhereUniqueWithoutStreakInputSchema: z.ZodType<Prisma.StreakEventUpdateWithWhereUniqueWithoutStreakInput>;
822
+ export declare const StreakEventUpdateManyWithWhereWithoutStreakInputSchema: z.ZodType<Prisma.StreakEventUpdateManyWithWhereWithoutStreakInput>;
823
+ export declare const StreakEventScalarWhereInputSchema: z.ZodType<Prisma.StreakEventScalarWhereInput>;
824
+ export declare const DailyLogCreateManyUserInputSchema: z.ZodType<Prisma.DailyLogCreateManyUserInput>;
825
+ export declare const SponsorshipCreateManySponsorInputSchema: z.ZodType<Prisma.SponsorshipCreateManySponsorInput>;
826
+ export declare const SponsorshipCreateManyAddictInputSchema: z.ZodType<Prisma.SponsorshipCreateManyAddictInput>;
827
+ export declare const SupportContactCreateManyUserInputSchema: z.ZodType<Prisma.SupportContactCreateManyUserInput>;
828
+ export declare const EmergencyAlertCreateManyUserInputSchema: z.ZodType<Prisma.EmergencyAlertCreateManyUserInput>;
829
+ export declare const LogAbsenceCreateManyUserInputSchema: z.ZodType<Prisma.LogAbsenceCreateManyUserInput>;
830
+ export declare const DailyLogUpdateWithoutUserInputSchema: z.ZodType<Prisma.DailyLogUpdateWithoutUserInput>;
831
+ export declare const DailyLogUncheckedUpdateWithoutUserInputSchema: z.ZodType<Prisma.DailyLogUncheckedUpdateWithoutUserInput>;
832
+ export declare const DailyLogUncheckedUpdateManyWithoutUserInputSchema: z.ZodType<Prisma.DailyLogUncheckedUpdateManyWithoutUserInput>;
833
+ export declare const SponsorshipUpdateWithoutSponsorInputSchema: z.ZodType<Prisma.SponsorshipUpdateWithoutSponsorInput>;
834
+ export declare const SponsorshipUncheckedUpdateWithoutSponsorInputSchema: z.ZodType<Prisma.SponsorshipUncheckedUpdateWithoutSponsorInput>;
835
+ export declare const SponsorshipUncheckedUpdateManyWithoutSponsorInputSchema: z.ZodType<Prisma.SponsorshipUncheckedUpdateManyWithoutSponsorInput>;
836
+ export declare const SponsorshipUpdateWithoutAddictInputSchema: z.ZodType<Prisma.SponsorshipUpdateWithoutAddictInput>;
837
+ export declare const SponsorshipUncheckedUpdateWithoutAddictInputSchema: z.ZodType<Prisma.SponsorshipUncheckedUpdateWithoutAddictInput>;
838
+ export declare const SponsorshipUncheckedUpdateManyWithoutAddictInputSchema: z.ZodType<Prisma.SponsorshipUncheckedUpdateManyWithoutAddictInput>;
839
+ export declare const SupportContactUpdateWithoutUserInputSchema: z.ZodType<Prisma.SupportContactUpdateWithoutUserInput>;
840
+ export declare const SupportContactUncheckedUpdateWithoutUserInputSchema: z.ZodType<Prisma.SupportContactUncheckedUpdateWithoutUserInput>;
841
+ export declare const SupportContactUncheckedUpdateManyWithoutUserInputSchema: z.ZodType<Prisma.SupportContactUncheckedUpdateManyWithoutUserInput>;
842
+ export declare const EmergencyAlertUpdateWithoutUserInputSchema: z.ZodType<Prisma.EmergencyAlertUpdateWithoutUserInput>;
843
+ export declare const EmergencyAlertUncheckedUpdateWithoutUserInputSchema: z.ZodType<Prisma.EmergencyAlertUncheckedUpdateWithoutUserInput>;
844
+ export declare const EmergencyAlertUncheckedUpdateManyWithoutUserInputSchema: z.ZodType<Prisma.EmergencyAlertUncheckedUpdateManyWithoutUserInput>;
845
+ export declare const LogAbsenceUpdateWithoutUserInputSchema: z.ZodType<Prisma.LogAbsenceUpdateWithoutUserInput>;
846
+ export declare const LogAbsenceUncheckedUpdateWithoutUserInputSchema: z.ZodType<Prisma.LogAbsenceUncheckedUpdateWithoutUserInput>;
847
+ export declare const LogAbsenceUncheckedUpdateManyWithoutUserInputSchema: z.ZodType<Prisma.LogAbsenceUncheckedUpdateManyWithoutUserInput>;
848
+ export declare const DailyLogCreateManyCraving_levelInputSchema: z.ZodType<Prisma.DailyLogCreateManyCraving_levelInput>;
849
+ export declare const DailyLogUpdateWithoutCraving_levelInputSchema: z.ZodType<Prisma.DailyLogUpdateWithoutCraving_levelInput>;
850
+ export declare const DailyLogUncheckedUpdateWithoutCraving_levelInputSchema: z.ZodType<Prisma.DailyLogUncheckedUpdateWithoutCraving_levelInput>;
851
+ export declare const DailyLogUncheckedUpdateManyWithoutCraving_levelInputSchema: z.ZodType<Prisma.DailyLogUncheckedUpdateManyWithoutCraving_levelInput>;
852
+ export declare const DailyLogCreateManyEmotional_stateInputSchema: z.ZodType<Prisma.DailyLogCreateManyEmotional_stateInput>;
853
+ export declare const DailyLogUpdateWithoutEmotional_stateInputSchema: z.ZodType<Prisma.DailyLogUpdateWithoutEmotional_stateInput>;
854
+ export declare const DailyLogUncheckedUpdateWithoutEmotional_stateInputSchema: z.ZodType<Prisma.DailyLogUncheckedUpdateWithoutEmotional_stateInput>;
855
+ export declare const DailyLogUncheckedUpdateManyWithoutEmotional_stateInputSchema: z.ZodType<Prisma.DailyLogUncheckedUpdateManyWithoutEmotional_stateInput>;
856
+ export declare const EmergencyAlertCreateManyAddictionInputSchema: z.ZodType<Prisma.EmergencyAlertCreateManyAddictionInput>;
857
+ export declare const EmergencyAlertUpdateWithoutAddictionInputSchema: z.ZodType<Prisma.EmergencyAlertUpdateWithoutAddictionInput>;
858
+ export declare const EmergencyAlertUncheckedUpdateWithoutAddictionInputSchema: z.ZodType<Prisma.EmergencyAlertUncheckedUpdateWithoutAddictionInput>;
859
+ export declare const EmergencyAlertUncheckedUpdateManyWithoutAddictionInputSchema: z.ZodType<Prisma.EmergencyAlertUncheckedUpdateManyWithoutAddictionInput>;
860
+ export declare const LogAbsenceCreateManyStreak_eventInputSchema: z.ZodType<Prisma.LogAbsenceCreateManyStreak_eventInput>;
861
+ export declare const LogAbsenceUpdateWithoutStreak_eventInputSchema: z.ZodType<Prisma.LogAbsenceUpdateWithoutStreak_eventInput>;
862
+ export declare const LogAbsenceUncheckedUpdateWithoutStreak_eventInputSchema: z.ZodType<Prisma.LogAbsenceUncheckedUpdateWithoutStreak_eventInput>;
863
+ export declare const LogAbsenceUncheckedUpdateManyWithoutStreak_eventInputSchema: z.ZodType<Prisma.LogAbsenceUncheckedUpdateManyWithoutStreak_eventInput>;
864
+ export declare const StreakEventCreateManyStreakInputSchema: z.ZodType<Prisma.StreakEventCreateManyStreakInput>;
865
+ export declare const StreakEventUpdateWithoutStreakInputSchema: z.ZodType<Prisma.StreakEventUpdateWithoutStreakInput>;
866
+ export declare const StreakEventUncheckedUpdateWithoutStreakInputSchema: z.ZodType<Prisma.StreakEventUncheckedUpdateWithoutStreakInput>;
867
+ export declare const StreakEventUncheckedUpdateManyWithoutStreakInputSchema: z.ZodType<Prisma.StreakEventUncheckedUpdateManyWithoutStreakInput>;
868
+ export declare const UserFindFirstArgsSchema: z.ZodType<Prisma.UserFindFirstArgs>;
869
+ export declare const UserFindFirstOrThrowArgsSchema: z.ZodType<Prisma.UserFindFirstOrThrowArgs>;
870
+ export declare const UserFindManyArgsSchema: z.ZodType<Prisma.UserFindManyArgs>;
871
+ export declare const UserAggregateArgsSchema: z.ZodType<Prisma.UserAggregateArgs>;
872
+ export declare const UserGroupByArgsSchema: z.ZodType<Prisma.UserGroupByArgs>;
873
+ export declare const UserFindUniqueArgsSchema: z.ZodType<Prisma.UserFindUniqueArgs>;
874
+ export declare const UserFindUniqueOrThrowArgsSchema: z.ZodType<Prisma.UserFindUniqueOrThrowArgs>;
875
+ export declare const CravingLevelFindFirstArgsSchema: z.ZodType<Prisma.CravingLevelFindFirstArgs>;
876
+ export declare const CravingLevelFindFirstOrThrowArgsSchema: z.ZodType<Prisma.CravingLevelFindFirstOrThrowArgs>;
877
+ export declare const CravingLevelFindManyArgsSchema: z.ZodType<Prisma.CravingLevelFindManyArgs>;
878
+ export declare const CravingLevelAggregateArgsSchema: z.ZodType<Prisma.CravingLevelAggregateArgs>;
879
+ export declare const CravingLevelGroupByArgsSchema: z.ZodType<Prisma.CravingLevelGroupByArgs>;
880
+ export declare const CravingLevelFindUniqueArgsSchema: z.ZodType<Prisma.CravingLevelFindUniqueArgs>;
881
+ export declare const CravingLevelFindUniqueOrThrowArgsSchema: z.ZodType<Prisma.CravingLevelFindUniqueOrThrowArgs>;
882
+ export declare const EmotionalStateFindFirstArgsSchema: z.ZodType<Prisma.EmotionalStateFindFirstArgs>;
883
+ export declare const EmotionalStateFindFirstOrThrowArgsSchema: z.ZodType<Prisma.EmotionalStateFindFirstOrThrowArgs>;
884
+ export declare const EmotionalStateFindManyArgsSchema: z.ZodType<Prisma.EmotionalStateFindManyArgs>;
885
+ export declare const EmotionalStateAggregateArgsSchema: z.ZodType<Prisma.EmotionalStateAggregateArgs>;
886
+ export declare const EmotionalStateGroupByArgsSchema: z.ZodType<Prisma.EmotionalStateGroupByArgs>;
887
+ export declare const EmotionalStateFindUniqueArgsSchema: z.ZodType<Prisma.EmotionalStateFindUniqueArgs>;
888
+ export declare const EmotionalStateFindUniqueOrThrowArgsSchema: z.ZodType<Prisma.EmotionalStateFindUniqueOrThrowArgs>;
889
+ export declare const UserAddictionFindFirstArgsSchema: z.ZodType<Prisma.UserAddictionFindFirstArgs>;
890
+ export declare const UserAddictionFindFirstOrThrowArgsSchema: z.ZodType<Prisma.UserAddictionFindFirstOrThrowArgs>;
891
+ export declare const UserAddictionFindManyArgsSchema: z.ZodType<Prisma.UserAddictionFindManyArgs>;
892
+ export declare const UserAddictionAggregateArgsSchema: z.ZodType<Prisma.UserAddictionAggregateArgs>;
893
+ export declare const UserAddictionGroupByArgsSchema: z.ZodType<Prisma.UserAddictionGroupByArgs>;
894
+ export declare const UserAddictionFindUniqueArgsSchema: z.ZodType<Prisma.UserAddictionFindUniqueArgs>;
895
+ export declare const UserAddictionFindUniqueOrThrowArgsSchema: z.ZodType<Prisma.UserAddictionFindUniqueOrThrowArgs>;
896
+ export declare const SponsorshipFindFirstArgsSchema: z.ZodType<Prisma.SponsorshipFindFirstArgs>;
897
+ export declare const SponsorshipFindFirstOrThrowArgsSchema: z.ZodType<Prisma.SponsorshipFindFirstOrThrowArgs>;
898
+ export declare const SponsorshipFindManyArgsSchema: z.ZodType<Prisma.SponsorshipFindManyArgs>;
899
+ export declare const SponsorshipAggregateArgsSchema: z.ZodType<Prisma.SponsorshipAggregateArgs>;
900
+ export declare const SponsorshipGroupByArgsSchema: z.ZodType<Prisma.SponsorshipGroupByArgs>;
901
+ export declare const SponsorshipFindUniqueArgsSchema: z.ZodType<Prisma.SponsorshipFindUniqueArgs>;
902
+ export declare const SponsorshipFindUniqueOrThrowArgsSchema: z.ZodType<Prisma.SponsorshipFindUniqueOrThrowArgs>;
903
+ export declare const DailyLogFindFirstArgsSchema: z.ZodType<Prisma.DailyLogFindFirstArgs>;
904
+ export declare const DailyLogFindFirstOrThrowArgsSchema: z.ZodType<Prisma.DailyLogFindFirstOrThrowArgs>;
905
+ export declare const DailyLogFindManyArgsSchema: z.ZodType<Prisma.DailyLogFindManyArgs>;
906
+ export declare const DailyLogAggregateArgsSchema: z.ZodType<Prisma.DailyLogAggregateArgs>;
907
+ export declare const DailyLogGroupByArgsSchema: z.ZodType<Prisma.DailyLogGroupByArgs>;
908
+ export declare const DailyLogFindUniqueArgsSchema: z.ZodType<Prisma.DailyLogFindUniqueArgs>;
909
+ export declare const DailyLogFindUniqueOrThrowArgsSchema: z.ZodType<Prisma.DailyLogFindUniqueOrThrowArgs>;
910
+ export declare const StreakEventFindFirstArgsSchema: z.ZodType<Prisma.StreakEventFindFirstArgs>;
911
+ export declare const StreakEventFindFirstOrThrowArgsSchema: z.ZodType<Prisma.StreakEventFindFirstOrThrowArgs>;
912
+ export declare const StreakEventFindManyArgsSchema: z.ZodType<Prisma.StreakEventFindManyArgs>;
913
+ export declare const StreakEventAggregateArgsSchema: z.ZodType<Prisma.StreakEventAggregateArgs>;
914
+ export declare const StreakEventGroupByArgsSchema: z.ZodType<Prisma.StreakEventGroupByArgs>;
915
+ export declare const StreakEventFindUniqueArgsSchema: z.ZodType<Prisma.StreakEventFindUniqueArgs>;
916
+ export declare const StreakEventFindUniqueOrThrowArgsSchema: z.ZodType<Prisma.StreakEventFindUniqueOrThrowArgs>;
917
+ export declare const LogAbsenceFindFirstArgsSchema: z.ZodType<Prisma.LogAbsenceFindFirstArgs>;
918
+ export declare const LogAbsenceFindFirstOrThrowArgsSchema: z.ZodType<Prisma.LogAbsenceFindFirstOrThrowArgs>;
919
+ export declare const LogAbsenceFindManyArgsSchema: z.ZodType<Prisma.LogAbsenceFindManyArgs>;
920
+ export declare const LogAbsenceAggregateArgsSchema: z.ZodType<Prisma.LogAbsenceAggregateArgs>;
921
+ export declare const LogAbsenceGroupByArgsSchema: z.ZodType<Prisma.LogAbsenceGroupByArgs>;
922
+ export declare const LogAbsenceFindUniqueArgsSchema: z.ZodType<Prisma.LogAbsenceFindUniqueArgs>;
923
+ export declare const LogAbsenceFindUniqueOrThrowArgsSchema: z.ZodType<Prisma.LogAbsenceFindUniqueOrThrowArgs>;
924
+ export declare const SupportContactFindFirstArgsSchema: z.ZodType<Prisma.SupportContactFindFirstArgs>;
925
+ export declare const SupportContactFindFirstOrThrowArgsSchema: z.ZodType<Prisma.SupportContactFindFirstOrThrowArgs>;
926
+ export declare const SupportContactFindManyArgsSchema: z.ZodType<Prisma.SupportContactFindManyArgs>;
927
+ export declare const SupportContactAggregateArgsSchema: z.ZodType<Prisma.SupportContactAggregateArgs>;
928
+ export declare const SupportContactGroupByArgsSchema: z.ZodType<Prisma.SupportContactGroupByArgs>;
929
+ export declare const SupportContactFindUniqueArgsSchema: z.ZodType<Prisma.SupportContactFindUniqueArgs>;
930
+ export declare const SupportContactFindUniqueOrThrowArgsSchema: z.ZodType<Prisma.SupportContactFindUniqueOrThrowArgs>;
931
+ export declare const EmergencyAlertFindFirstArgsSchema: z.ZodType<Prisma.EmergencyAlertFindFirstArgs>;
932
+ export declare const EmergencyAlertFindFirstOrThrowArgsSchema: z.ZodType<Prisma.EmergencyAlertFindFirstOrThrowArgs>;
933
+ export declare const EmergencyAlertFindManyArgsSchema: z.ZodType<Prisma.EmergencyAlertFindManyArgs>;
934
+ export declare const EmergencyAlertAggregateArgsSchema: z.ZodType<Prisma.EmergencyAlertAggregateArgs>;
935
+ export declare const EmergencyAlertGroupByArgsSchema: z.ZodType<Prisma.EmergencyAlertGroupByArgs>;
936
+ export declare const EmergencyAlertFindUniqueArgsSchema: z.ZodType<Prisma.EmergencyAlertFindUniqueArgs>;
937
+ export declare const EmergencyAlertFindUniqueOrThrowArgsSchema: z.ZodType<Prisma.EmergencyAlertFindUniqueOrThrowArgs>;
938
+ export declare const StreakFindFirstArgsSchema: z.ZodType<Prisma.StreakFindFirstArgs>;
939
+ export declare const StreakFindFirstOrThrowArgsSchema: z.ZodType<Prisma.StreakFindFirstOrThrowArgs>;
940
+ export declare const StreakFindManyArgsSchema: z.ZodType<Prisma.StreakFindManyArgs>;
941
+ export declare const StreakAggregateArgsSchema: z.ZodType<Prisma.StreakAggregateArgs>;
942
+ export declare const StreakGroupByArgsSchema: z.ZodType<Prisma.StreakGroupByArgs>;
943
+ export declare const StreakFindUniqueArgsSchema: z.ZodType<Prisma.StreakFindUniqueArgs>;
944
+ export declare const StreakFindUniqueOrThrowArgsSchema: z.ZodType<Prisma.StreakFindUniqueOrThrowArgs>;
945
+ export declare const UserCreateArgsSchema: z.ZodType<Prisma.UserCreateArgs>;
946
+ export declare const UserUpsertArgsSchema: z.ZodType<Prisma.UserUpsertArgs>;
947
+ export declare const UserCreateManyArgsSchema: z.ZodType<Prisma.UserCreateManyArgs>;
948
+ export declare const UserCreateManyAndReturnArgsSchema: z.ZodType<Prisma.UserCreateManyAndReturnArgs>;
949
+ export declare const UserDeleteArgsSchema: z.ZodType<Prisma.UserDeleteArgs>;
950
+ export declare const UserUpdateArgsSchema: z.ZodType<Prisma.UserUpdateArgs>;
951
+ export declare const UserUpdateManyArgsSchema: z.ZodType<Prisma.UserUpdateManyArgs>;
952
+ export declare const UserUpdateManyAndReturnArgsSchema: z.ZodType<Prisma.UserUpdateManyAndReturnArgs>;
953
+ export declare const UserDeleteManyArgsSchema: z.ZodType<Prisma.UserDeleteManyArgs>;
954
+ export declare const CravingLevelCreateArgsSchema: z.ZodType<Prisma.CravingLevelCreateArgs>;
955
+ export declare const CravingLevelUpsertArgsSchema: z.ZodType<Prisma.CravingLevelUpsertArgs>;
956
+ export declare const CravingLevelCreateManyArgsSchema: z.ZodType<Prisma.CravingLevelCreateManyArgs>;
957
+ export declare const CravingLevelCreateManyAndReturnArgsSchema: z.ZodType<Prisma.CravingLevelCreateManyAndReturnArgs>;
958
+ export declare const CravingLevelDeleteArgsSchema: z.ZodType<Prisma.CravingLevelDeleteArgs>;
959
+ export declare const CravingLevelUpdateArgsSchema: z.ZodType<Prisma.CravingLevelUpdateArgs>;
960
+ export declare const CravingLevelUpdateManyArgsSchema: z.ZodType<Prisma.CravingLevelUpdateManyArgs>;
961
+ export declare const CravingLevelUpdateManyAndReturnArgsSchema: z.ZodType<Prisma.CravingLevelUpdateManyAndReturnArgs>;
962
+ export declare const CravingLevelDeleteManyArgsSchema: z.ZodType<Prisma.CravingLevelDeleteManyArgs>;
963
+ export declare const EmotionalStateCreateArgsSchema: z.ZodType<Prisma.EmotionalStateCreateArgs>;
964
+ export declare const EmotionalStateUpsertArgsSchema: z.ZodType<Prisma.EmotionalStateUpsertArgs>;
965
+ export declare const EmotionalStateCreateManyArgsSchema: z.ZodType<Prisma.EmotionalStateCreateManyArgs>;
966
+ export declare const EmotionalStateCreateManyAndReturnArgsSchema: z.ZodType<Prisma.EmotionalStateCreateManyAndReturnArgs>;
967
+ export declare const EmotionalStateDeleteArgsSchema: z.ZodType<Prisma.EmotionalStateDeleteArgs>;
968
+ export declare const EmotionalStateUpdateArgsSchema: z.ZodType<Prisma.EmotionalStateUpdateArgs>;
969
+ export declare const EmotionalStateUpdateManyArgsSchema: z.ZodType<Prisma.EmotionalStateUpdateManyArgs>;
970
+ export declare const EmotionalStateUpdateManyAndReturnArgsSchema: z.ZodType<Prisma.EmotionalStateUpdateManyAndReturnArgs>;
971
+ export declare const EmotionalStateDeleteManyArgsSchema: z.ZodType<Prisma.EmotionalStateDeleteManyArgs>;
972
+ export declare const UserAddictionCreateArgsSchema: z.ZodType<Prisma.UserAddictionCreateArgs>;
973
+ export declare const UserAddictionUpsertArgsSchema: z.ZodType<Prisma.UserAddictionUpsertArgs>;
974
+ export declare const UserAddictionCreateManyArgsSchema: z.ZodType<Prisma.UserAddictionCreateManyArgs>;
975
+ export declare const UserAddictionCreateManyAndReturnArgsSchema: z.ZodType<Prisma.UserAddictionCreateManyAndReturnArgs>;
976
+ export declare const UserAddictionDeleteArgsSchema: z.ZodType<Prisma.UserAddictionDeleteArgs>;
977
+ export declare const UserAddictionUpdateArgsSchema: z.ZodType<Prisma.UserAddictionUpdateArgs>;
978
+ export declare const UserAddictionUpdateManyArgsSchema: z.ZodType<Prisma.UserAddictionUpdateManyArgs>;
979
+ export declare const UserAddictionUpdateManyAndReturnArgsSchema: z.ZodType<Prisma.UserAddictionUpdateManyAndReturnArgs>;
980
+ export declare const UserAddictionDeleteManyArgsSchema: z.ZodType<Prisma.UserAddictionDeleteManyArgs>;
981
+ export declare const SponsorshipCreateArgsSchema: z.ZodType<Prisma.SponsorshipCreateArgs>;
982
+ export declare const SponsorshipUpsertArgsSchema: z.ZodType<Prisma.SponsorshipUpsertArgs>;
983
+ export declare const SponsorshipCreateManyArgsSchema: z.ZodType<Prisma.SponsorshipCreateManyArgs>;
984
+ export declare const SponsorshipCreateManyAndReturnArgsSchema: z.ZodType<Prisma.SponsorshipCreateManyAndReturnArgs>;
985
+ export declare const SponsorshipDeleteArgsSchema: z.ZodType<Prisma.SponsorshipDeleteArgs>;
986
+ export declare const SponsorshipUpdateArgsSchema: z.ZodType<Prisma.SponsorshipUpdateArgs>;
987
+ export declare const SponsorshipUpdateManyArgsSchema: z.ZodType<Prisma.SponsorshipUpdateManyArgs>;
988
+ export declare const SponsorshipUpdateManyAndReturnArgsSchema: z.ZodType<Prisma.SponsorshipUpdateManyAndReturnArgs>;
989
+ export declare const SponsorshipDeleteManyArgsSchema: z.ZodType<Prisma.SponsorshipDeleteManyArgs>;
990
+ export declare const DailyLogCreateArgsSchema: z.ZodType<Prisma.DailyLogCreateArgs>;
991
+ export declare const DailyLogUpsertArgsSchema: z.ZodType<Prisma.DailyLogUpsertArgs>;
992
+ export declare const DailyLogCreateManyArgsSchema: z.ZodType<Prisma.DailyLogCreateManyArgs>;
993
+ export declare const DailyLogCreateManyAndReturnArgsSchema: z.ZodType<Prisma.DailyLogCreateManyAndReturnArgs>;
994
+ export declare const DailyLogDeleteArgsSchema: z.ZodType<Prisma.DailyLogDeleteArgs>;
995
+ export declare const DailyLogUpdateArgsSchema: z.ZodType<Prisma.DailyLogUpdateArgs>;
996
+ export declare const DailyLogUpdateManyArgsSchema: z.ZodType<Prisma.DailyLogUpdateManyArgs>;
997
+ export declare const DailyLogUpdateManyAndReturnArgsSchema: z.ZodType<Prisma.DailyLogUpdateManyAndReturnArgs>;
998
+ export declare const DailyLogDeleteManyArgsSchema: z.ZodType<Prisma.DailyLogDeleteManyArgs>;
999
+ export declare const StreakEventCreateArgsSchema: z.ZodType<Prisma.StreakEventCreateArgs>;
1000
+ export declare const StreakEventUpsertArgsSchema: z.ZodType<Prisma.StreakEventUpsertArgs>;
1001
+ export declare const StreakEventCreateManyArgsSchema: z.ZodType<Prisma.StreakEventCreateManyArgs>;
1002
+ export declare const StreakEventCreateManyAndReturnArgsSchema: z.ZodType<Prisma.StreakEventCreateManyAndReturnArgs>;
1003
+ export declare const StreakEventDeleteArgsSchema: z.ZodType<Prisma.StreakEventDeleteArgs>;
1004
+ export declare const StreakEventUpdateArgsSchema: z.ZodType<Prisma.StreakEventUpdateArgs>;
1005
+ export declare const StreakEventUpdateManyArgsSchema: z.ZodType<Prisma.StreakEventUpdateManyArgs>;
1006
+ export declare const StreakEventUpdateManyAndReturnArgsSchema: z.ZodType<Prisma.StreakEventUpdateManyAndReturnArgs>;
1007
+ export declare const StreakEventDeleteManyArgsSchema: z.ZodType<Prisma.StreakEventDeleteManyArgs>;
1008
+ export declare const LogAbsenceCreateArgsSchema: z.ZodType<Prisma.LogAbsenceCreateArgs>;
1009
+ export declare const LogAbsenceUpsertArgsSchema: z.ZodType<Prisma.LogAbsenceUpsertArgs>;
1010
+ export declare const LogAbsenceCreateManyArgsSchema: z.ZodType<Prisma.LogAbsenceCreateManyArgs>;
1011
+ export declare const LogAbsenceCreateManyAndReturnArgsSchema: z.ZodType<Prisma.LogAbsenceCreateManyAndReturnArgs>;
1012
+ export declare const LogAbsenceDeleteArgsSchema: z.ZodType<Prisma.LogAbsenceDeleteArgs>;
1013
+ export declare const LogAbsenceUpdateArgsSchema: z.ZodType<Prisma.LogAbsenceUpdateArgs>;
1014
+ export declare const LogAbsenceUpdateManyArgsSchema: z.ZodType<Prisma.LogAbsenceUpdateManyArgs>;
1015
+ export declare const LogAbsenceUpdateManyAndReturnArgsSchema: z.ZodType<Prisma.LogAbsenceUpdateManyAndReturnArgs>;
1016
+ export declare const LogAbsenceDeleteManyArgsSchema: z.ZodType<Prisma.LogAbsenceDeleteManyArgs>;
1017
+ export declare const SupportContactCreateArgsSchema: z.ZodType<Prisma.SupportContactCreateArgs>;
1018
+ export declare const SupportContactUpsertArgsSchema: z.ZodType<Prisma.SupportContactUpsertArgs>;
1019
+ export declare const SupportContactCreateManyArgsSchema: z.ZodType<Prisma.SupportContactCreateManyArgs>;
1020
+ export declare const SupportContactCreateManyAndReturnArgsSchema: z.ZodType<Prisma.SupportContactCreateManyAndReturnArgs>;
1021
+ export declare const SupportContactDeleteArgsSchema: z.ZodType<Prisma.SupportContactDeleteArgs>;
1022
+ export declare const SupportContactUpdateArgsSchema: z.ZodType<Prisma.SupportContactUpdateArgs>;
1023
+ export declare const SupportContactUpdateManyArgsSchema: z.ZodType<Prisma.SupportContactUpdateManyArgs>;
1024
+ export declare const SupportContactUpdateManyAndReturnArgsSchema: z.ZodType<Prisma.SupportContactUpdateManyAndReturnArgs>;
1025
+ export declare const SupportContactDeleteManyArgsSchema: z.ZodType<Prisma.SupportContactDeleteManyArgs>;
1026
+ export declare const EmergencyAlertCreateArgsSchema: z.ZodType<Prisma.EmergencyAlertCreateArgs>;
1027
+ export declare const EmergencyAlertUpsertArgsSchema: z.ZodType<Prisma.EmergencyAlertUpsertArgs>;
1028
+ export declare const EmergencyAlertCreateManyArgsSchema: z.ZodType<Prisma.EmergencyAlertCreateManyArgs>;
1029
+ export declare const EmergencyAlertCreateManyAndReturnArgsSchema: z.ZodType<Prisma.EmergencyAlertCreateManyAndReturnArgs>;
1030
+ export declare const EmergencyAlertDeleteArgsSchema: z.ZodType<Prisma.EmergencyAlertDeleteArgs>;
1031
+ export declare const EmergencyAlertUpdateArgsSchema: z.ZodType<Prisma.EmergencyAlertUpdateArgs>;
1032
+ export declare const EmergencyAlertUpdateManyArgsSchema: z.ZodType<Prisma.EmergencyAlertUpdateManyArgs>;
1033
+ export declare const EmergencyAlertUpdateManyAndReturnArgsSchema: z.ZodType<Prisma.EmergencyAlertUpdateManyAndReturnArgs>;
1034
+ export declare const EmergencyAlertDeleteManyArgsSchema: z.ZodType<Prisma.EmergencyAlertDeleteManyArgs>;
1035
+ export declare const StreakCreateArgsSchema: z.ZodType<Prisma.StreakCreateArgs>;
1036
+ export declare const StreakUpsertArgsSchema: z.ZodType<Prisma.StreakUpsertArgs>;
1037
+ export declare const StreakCreateManyArgsSchema: z.ZodType<Prisma.StreakCreateManyArgs>;
1038
+ export declare const StreakCreateManyAndReturnArgsSchema: z.ZodType<Prisma.StreakCreateManyAndReturnArgs>;
1039
+ export declare const StreakDeleteArgsSchema: z.ZodType<Prisma.StreakDeleteArgs>;
1040
+ export declare const StreakUpdateArgsSchema: z.ZodType<Prisma.StreakUpdateArgs>;
1041
+ export declare const StreakUpdateManyArgsSchema: z.ZodType<Prisma.StreakUpdateManyArgs>;
1042
+ export declare const StreakUpdateManyAndReturnArgsSchema: z.ZodType<Prisma.StreakUpdateManyAndReturnArgs>;
1043
+ export declare const StreakDeleteManyArgsSchema: z.ZodType<Prisma.StreakDeleteManyArgs>;
1044
+ //# sourceMappingURL=index.d.ts.map