reset-infra 1.0.12 → 1.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/schemas/index.d.ts +252 -6
- package/dist/schemas/index.d.ts.map +1 -1
- package/dist/schemas/index.js +2034 -106
- package/dist/schemas/index.js.map +1 -1
- package/package.json +1 -1
- package/prisma/schema.prisma +32 -0
package/dist/schemas/index.d.ts
CHANGED
|
@@ -19,6 +19,33 @@ export declare const UserScalarFieldEnumSchema: z.ZodEnum<{
|
|
|
19
19
|
updated_at: "updated_at";
|
|
20
20
|
sponsor_code: "sponsor_code";
|
|
21
21
|
avatar_url: "avatar_url";
|
|
22
|
+
is_verified: "is_verified";
|
|
23
|
+
two_factor_enabled: "two_factor_enabled";
|
|
24
|
+
is_deleted: "is_deleted";
|
|
25
|
+
deleted_at: "deleted_at";
|
|
26
|
+
}>;
|
|
27
|
+
export declare const PasswordResetTokenScalarFieldEnumSchema: z.ZodEnum<{
|
|
28
|
+
id: "id";
|
|
29
|
+
created_at: "created_at";
|
|
30
|
+
token: "token";
|
|
31
|
+
user_id: "user_id";
|
|
32
|
+
expires_at: "expires_at";
|
|
33
|
+
}>;
|
|
34
|
+
export declare const TrustedDeviceScalarFieldEnumSchema: z.ZodEnum<{
|
|
35
|
+
id: "id";
|
|
36
|
+
created_at: "created_at";
|
|
37
|
+
user_id: "user_id";
|
|
38
|
+
expires_at: "expires_at";
|
|
39
|
+
device_identifier: "device_identifier";
|
|
40
|
+
device_name: "device_name";
|
|
41
|
+
last_used_at: "last_used_at";
|
|
42
|
+
}>;
|
|
43
|
+
export declare const VerificationTokenScalarFieldEnumSchema: z.ZodEnum<{
|
|
44
|
+
id: "id";
|
|
45
|
+
created_at: "created_at";
|
|
46
|
+
token: "token";
|
|
47
|
+
user_id: "user_id";
|
|
48
|
+
expires_at: "expires_at";
|
|
22
49
|
}>;
|
|
23
50
|
export declare const CravingLevelScalarFieldEnumSchema: z.ZodEnum<{
|
|
24
51
|
id: "id";
|
|
@@ -155,8 +182,38 @@ export declare const UserSchema: z.ZodObject<{
|
|
|
155
182
|
updated_at: z.ZodCoercedDate<unknown>;
|
|
156
183
|
sponsor_code: z.ZodNullable<z.ZodString>;
|
|
157
184
|
avatar_url: z.ZodString;
|
|
185
|
+
is_verified: z.ZodBoolean;
|
|
186
|
+
two_factor_enabled: z.ZodBoolean;
|
|
187
|
+
is_deleted: z.ZodBoolean;
|
|
188
|
+
deleted_at: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
158
189
|
}, z.core.$strip>;
|
|
159
190
|
export type User = z.infer<typeof UserSchema>;
|
|
191
|
+
export declare const PasswordResetTokenSchema: z.ZodObject<{
|
|
192
|
+
id: z.ZodString;
|
|
193
|
+
token: z.ZodString;
|
|
194
|
+
user_id: z.ZodString;
|
|
195
|
+
expires_at: z.ZodCoercedDate<unknown>;
|
|
196
|
+
created_at: z.ZodCoercedDate<unknown>;
|
|
197
|
+
}, z.core.$strip>;
|
|
198
|
+
export type PasswordResetToken = z.infer<typeof PasswordResetTokenSchema>;
|
|
199
|
+
export declare const TrustedDeviceSchema: z.ZodObject<{
|
|
200
|
+
id: z.ZodString;
|
|
201
|
+
user_id: z.ZodString;
|
|
202
|
+
device_identifier: z.ZodString;
|
|
203
|
+
device_name: z.ZodNullable<z.ZodString>;
|
|
204
|
+
last_used_at: z.ZodCoercedDate<unknown>;
|
|
205
|
+
expires_at: z.ZodCoercedDate<unknown>;
|
|
206
|
+
created_at: z.ZodCoercedDate<unknown>;
|
|
207
|
+
}, z.core.$strip>;
|
|
208
|
+
export type TrustedDevice = z.infer<typeof TrustedDeviceSchema>;
|
|
209
|
+
export declare const VerificationTokenSchema: z.ZodObject<{
|
|
210
|
+
id: z.ZodString;
|
|
211
|
+
token: z.ZodString;
|
|
212
|
+
user_id: z.ZodString;
|
|
213
|
+
expires_at: z.ZodCoercedDate<unknown>;
|
|
214
|
+
created_at: z.ZodCoercedDate<unknown>;
|
|
215
|
+
}, z.core.$strip>;
|
|
216
|
+
export type VerificationToken = z.infer<typeof VerificationTokenSchema>;
|
|
160
217
|
export declare const CravingLevelSchema: z.ZodObject<{
|
|
161
218
|
id: z.ZodString;
|
|
162
219
|
level: z.ZodNumber;
|
|
@@ -273,6 +330,15 @@ export declare const UserArgsSchema: z.ZodType<Prisma.UserDefaultArgs>;
|
|
|
273
330
|
export declare const UserCountOutputTypeArgsSchema: z.ZodType<Prisma.UserCountOutputTypeDefaultArgs>;
|
|
274
331
|
export declare const UserCountOutputTypeSelectSchema: z.ZodType<Prisma.UserCountOutputTypeSelect>;
|
|
275
332
|
export declare const UserSelectSchema: z.ZodType<Prisma.UserSelect>;
|
|
333
|
+
export declare const PasswordResetTokenIncludeSchema: z.ZodType<Prisma.PasswordResetTokenInclude>;
|
|
334
|
+
export declare const PasswordResetTokenArgsSchema: z.ZodType<Prisma.PasswordResetTokenDefaultArgs>;
|
|
335
|
+
export declare const PasswordResetTokenSelectSchema: z.ZodType<Prisma.PasswordResetTokenSelect>;
|
|
336
|
+
export declare const TrustedDeviceIncludeSchema: z.ZodType<Prisma.TrustedDeviceInclude>;
|
|
337
|
+
export declare const TrustedDeviceArgsSchema: z.ZodType<Prisma.TrustedDeviceDefaultArgs>;
|
|
338
|
+
export declare const TrustedDeviceSelectSchema: z.ZodType<Prisma.TrustedDeviceSelect>;
|
|
339
|
+
export declare const VerificationTokenIncludeSchema: z.ZodType<Prisma.VerificationTokenInclude>;
|
|
340
|
+
export declare const VerificationTokenArgsSchema: z.ZodType<Prisma.VerificationTokenDefaultArgs>;
|
|
341
|
+
export declare const VerificationTokenSelectSchema: z.ZodType<Prisma.VerificationTokenSelect>;
|
|
276
342
|
export declare const CravingLevelIncludeSchema: z.ZodType<Prisma.CravingLevelInclude>;
|
|
277
343
|
export declare const CravingLevelArgsSchema: z.ZodType<Prisma.CravingLevelDefaultArgs>;
|
|
278
344
|
export declare const CravingLevelCountOutputTypeArgsSchema: z.ZodType<Prisma.CravingLevelCountOutputTypeDefaultArgs>;
|
|
@@ -318,6 +384,21 @@ export declare const UserOrderByWithRelationInputSchema: z.ZodType<Prisma.UserOr
|
|
|
318
384
|
export declare const UserWhereUniqueInputSchema: z.ZodType<Prisma.UserWhereUniqueInput>;
|
|
319
385
|
export declare const UserOrderByWithAggregationInputSchema: z.ZodType<Prisma.UserOrderByWithAggregationInput>;
|
|
320
386
|
export declare const UserScalarWhereWithAggregatesInputSchema: z.ZodType<Prisma.UserScalarWhereWithAggregatesInput>;
|
|
387
|
+
export declare const PasswordResetTokenWhereInputSchema: z.ZodType<Prisma.PasswordResetTokenWhereInput>;
|
|
388
|
+
export declare const PasswordResetTokenOrderByWithRelationInputSchema: z.ZodType<Prisma.PasswordResetTokenOrderByWithRelationInput>;
|
|
389
|
+
export declare const PasswordResetTokenWhereUniqueInputSchema: z.ZodType<Prisma.PasswordResetTokenWhereUniqueInput>;
|
|
390
|
+
export declare const PasswordResetTokenOrderByWithAggregationInputSchema: z.ZodType<Prisma.PasswordResetTokenOrderByWithAggregationInput>;
|
|
391
|
+
export declare const PasswordResetTokenScalarWhereWithAggregatesInputSchema: z.ZodType<Prisma.PasswordResetTokenScalarWhereWithAggregatesInput>;
|
|
392
|
+
export declare const TrustedDeviceWhereInputSchema: z.ZodType<Prisma.TrustedDeviceWhereInput>;
|
|
393
|
+
export declare const TrustedDeviceOrderByWithRelationInputSchema: z.ZodType<Prisma.TrustedDeviceOrderByWithRelationInput>;
|
|
394
|
+
export declare const TrustedDeviceWhereUniqueInputSchema: z.ZodType<Prisma.TrustedDeviceWhereUniqueInput>;
|
|
395
|
+
export declare const TrustedDeviceOrderByWithAggregationInputSchema: z.ZodType<Prisma.TrustedDeviceOrderByWithAggregationInput>;
|
|
396
|
+
export declare const TrustedDeviceScalarWhereWithAggregatesInputSchema: z.ZodType<Prisma.TrustedDeviceScalarWhereWithAggregatesInput>;
|
|
397
|
+
export declare const VerificationTokenWhereInputSchema: z.ZodType<Prisma.VerificationTokenWhereInput>;
|
|
398
|
+
export declare const VerificationTokenOrderByWithRelationInputSchema: z.ZodType<Prisma.VerificationTokenOrderByWithRelationInput>;
|
|
399
|
+
export declare const VerificationTokenWhereUniqueInputSchema: z.ZodType<Prisma.VerificationTokenWhereUniqueInput>;
|
|
400
|
+
export declare const VerificationTokenOrderByWithAggregationInputSchema: z.ZodType<Prisma.VerificationTokenOrderByWithAggregationInput>;
|
|
401
|
+
export declare const VerificationTokenScalarWhereWithAggregatesInputSchema: z.ZodType<Prisma.VerificationTokenScalarWhereWithAggregatesInput>;
|
|
321
402
|
export declare const CravingLevelWhereInputSchema: z.ZodType<Prisma.CravingLevelWhereInput>;
|
|
322
403
|
export declare const CravingLevelOrderByWithRelationInputSchema: z.ZodType<Prisma.CravingLevelOrderByWithRelationInput>;
|
|
323
404
|
export declare const CravingLevelWhereUniqueInputSchema: z.ZodType<Prisma.CravingLevelWhereUniqueInput>;
|
|
@@ -375,6 +456,27 @@ export declare const UserUncheckedUpdateInputSchema: z.ZodType<Prisma.UserUnchec
|
|
|
375
456
|
export declare const UserCreateManyInputSchema: z.ZodType<Prisma.UserCreateManyInput>;
|
|
376
457
|
export declare const UserUpdateManyMutationInputSchema: z.ZodType<Prisma.UserUpdateManyMutationInput>;
|
|
377
458
|
export declare const UserUncheckedUpdateManyInputSchema: z.ZodType<Prisma.UserUncheckedUpdateManyInput>;
|
|
459
|
+
export declare const PasswordResetTokenCreateInputSchema: z.ZodType<Prisma.PasswordResetTokenCreateInput>;
|
|
460
|
+
export declare const PasswordResetTokenUncheckedCreateInputSchema: z.ZodType<Prisma.PasswordResetTokenUncheckedCreateInput>;
|
|
461
|
+
export declare const PasswordResetTokenUpdateInputSchema: z.ZodType<Prisma.PasswordResetTokenUpdateInput>;
|
|
462
|
+
export declare const PasswordResetTokenUncheckedUpdateInputSchema: z.ZodType<Prisma.PasswordResetTokenUncheckedUpdateInput>;
|
|
463
|
+
export declare const PasswordResetTokenCreateManyInputSchema: z.ZodType<Prisma.PasswordResetTokenCreateManyInput>;
|
|
464
|
+
export declare const PasswordResetTokenUpdateManyMutationInputSchema: z.ZodType<Prisma.PasswordResetTokenUpdateManyMutationInput>;
|
|
465
|
+
export declare const PasswordResetTokenUncheckedUpdateManyInputSchema: z.ZodType<Prisma.PasswordResetTokenUncheckedUpdateManyInput>;
|
|
466
|
+
export declare const TrustedDeviceCreateInputSchema: z.ZodType<Prisma.TrustedDeviceCreateInput>;
|
|
467
|
+
export declare const TrustedDeviceUncheckedCreateInputSchema: z.ZodType<Prisma.TrustedDeviceUncheckedCreateInput>;
|
|
468
|
+
export declare const TrustedDeviceUpdateInputSchema: z.ZodType<Prisma.TrustedDeviceUpdateInput>;
|
|
469
|
+
export declare const TrustedDeviceUncheckedUpdateInputSchema: z.ZodType<Prisma.TrustedDeviceUncheckedUpdateInput>;
|
|
470
|
+
export declare const TrustedDeviceCreateManyInputSchema: z.ZodType<Prisma.TrustedDeviceCreateManyInput>;
|
|
471
|
+
export declare const TrustedDeviceUpdateManyMutationInputSchema: z.ZodType<Prisma.TrustedDeviceUpdateManyMutationInput>;
|
|
472
|
+
export declare const TrustedDeviceUncheckedUpdateManyInputSchema: z.ZodType<Prisma.TrustedDeviceUncheckedUpdateManyInput>;
|
|
473
|
+
export declare const VerificationTokenCreateInputSchema: z.ZodType<Prisma.VerificationTokenCreateInput>;
|
|
474
|
+
export declare const VerificationTokenUncheckedCreateInputSchema: z.ZodType<Prisma.VerificationTokenUncheckedCreateInput>;
|
|
475
|
+
export declare const VerificationTokenUpdateInputSchema: z.ZodType<Prisma.VerificationTokenUpdateInput>;
|
|
476
|
+
export declare const VerificationTokenUncheckedUpdateInputSchema: z.ZodType<Prisma.VerificationTokenUncheckedUpdateInput>;
|
|
477
|
+
export declare const VerificationTokenCreateManyInputSchema: z.ZodType<Prisma.VerificationTokenCreateManyInput>;
|
|
478
|
+
export declare const VerificationTokenUpdateManyMutationInputSchema: z.ZodType<Prisma.VerificationTokenUpdateManyMutationInput>;
|
|
479
|
+
export declare const VerificationTokenUncheckedUpdateManyInputSchema: z.ZodType<Prisma.VerificationTokenUncheckedUpdateManyInput>;
|
|
378
480
|
export declare const CravingLevelCreateInputSchema: z.ZodType<Prisma.CravingLevelCreateInput>;
|
|
379
481
|
export declare const CravingLevelUncheckedCreateInputSchema: z.ZodType<Prisma.CravingLevelUncheckedCreateInput>;
|
|
380
482
|
export declare const CravingLevelUpdateInputSchema: z.ZodType<Prisma.CravingLevelUpdateInput>;
|
|
@@ -450,6 +552,8 @@ export declare const StringFilterSchema: z.ZodType<Prisma.StringFilter>;
|
|
|
450
552
|
export declare const EnumUserRoleFilterSchema: z.ZodType<Prisma.EnumUserRoleFilter>;
|
|
451
553
|
export declare const DateTimeFilterSchema: z.ZodType<Prisma.DateTimeFilter>;
|
|
452
554
|
export declare const StringNullableFilterSchema: z.ZodType<Prisma.StringNullableFilter>;
|
|
555
|
+
export declare const BoolFilterSchema: z.ZodType<Prisma.BoolFilter>;
|
|
556
|
+
export declare const DateTimeNullableFilterSchema: z.ZodType<Prisma.DateTimeNullableFilter>;
|
|
453
557
|
export declare const UserAddictionListRelationFilterSchema: z.ZodType<Prisma.UserAddictionListRelationFilter>;
|
|
454
558
|
export declare const DailyLogListRelationFilterSchema: z.ZodType<Prisma.DailyLogListRelationFilter>;
|
|
455
559
|
export declare const SponsorshipListRelationFilterSchema: z.ZodType<Prisma.SponsorshipListRelationFilter>;
|
|
@@ -457,6 +561,9 @@ export declare const SupportContactListRelationFilterSchema: z.ZodType<Prisma.Su
|
|
|
457
561
|
export declare const EmergencyAlertListRelationFilterSchema: z.ZodType<Prisma.EmergencyAlertListRelationFilter>;
|
|
458
562
|
export declare const StreakListRelationFilterSchema: z.ZodType<Prisma.StreakListRelationFilter>;
|
|
459
563
|
export declare const LogAbsenceListRelationFilterSchema: z.ZodType<Prisma.LogAbsenceListRelationFilter>;
|
|
564
|
+
export declare const PasswordResetTokenListRelationFilterSchema: z.ZodType<Prisma.PasswordResetTokenListRelationFilter>;
|
|
565
|
+
export declare const TrustedDeviceListRelationFilterSchema: z.ZodType<Prisma.TrustedDeviceListRelationFilter>;
|
|
566
|
+
export declare const VerificationTokenListRelationFilterSchema: z.ZodType<Prisma.VerificationTokenListRelationFilter>;
|
|
460
567
|
export declare const SortOrderInputSchema: z.ZodType<Prisma.SortOrderInput>;
|
|
461
568
|
export declare const UserAddictionOrderByRelationAggregateInputSchema: z.ZodType<Prisma.UserAddictionOrderByRelationAggregateInput>;
|
|
462
569
|
export declare const DailyLogOrderByRelationAggregateInputSchema: z.ZodType<Prisma.DailyLogOrderByRelationAggregateInput>;
|
|
@@ -465,6 +572,9 @@ export declare const SupportContactOrderByRelationAggregateInputSchema: z.ZodTyp
|
|
|
465
572
|
export declare const EmergencyAlertOrderByRelationAggregateInputSchema: z.ZodType<Prisma.EmergencyAlertOrderByRelationAggregateInput>;
|
|
466
573
|
export declare const StreakOrderByRelationAggregateInputSchema: z.ZodType<Prisma.StreakOrderByRelationAggregateInput>;
|
|
467
574
|
export declare const LogAbsenceOrderByRelationAggregateInputSchema: z.ZodType<Prisma.LogAbsenceOrderByRelationAggregateInput>;
|
|
575
|
+
export declare const PasswordResetTokenOrderByRelationAggregateInputSchema: z.ZodType<Prisma.PasswordResetTokenOrderByRelationAggregateInput>;
|
|
576
|
+
export declare const TrustedDeviceOrderByRelationAggregateInputSchema: z.ZodType<Prisma.TrustedDeviceOrderByRelationAggregateInput>;
|
|
577
|
+
export declare const VerificationTokenOrderByRelationAggregateInputSchema: z.ZodType<Prisma.VerificationTokenOrderByRelationAggregateInput>;
|
|
468
578
|
export declare const UserCountOrderByAggregateInputSchema: z.ZodType<Prisma.UserCountOrderByAggregateInput>;
|
|
469
579
|
export declare const UserMaxOrderByAggregateInputSchema: z.ZodType<Prisma.UserMaxOrderByAggregateInput>;
|
|
470
580
|
export declare const UserMinOrderByAggregateInputSchema: z.ZodType<Prisma.UserMinOrderByAggregateInput>;
|
|
@@ -473,6 +583,18 @@ export declare const StringWithAggregatesFilterSchema: z.ZodType<Prisma.StringWi
|
|
|
473
583
|
export declare const EnumUserRoleWithAggregatesFilterSchema: z.ZodType<Prisma.EnumUserRoleWithAggregatesFilter>;
|
|
474
584
|
export declare const DateTimeWithAggregatesFilterSchema: z.ZodType<Prisma.DateTimeWithAggregatesFilter>;
|
|
475
585
|
export declare const StringNullableWithAggregatesFilterSchema: z.ZodType<Prisma.StringNullableWithAggregatesFilter>;
|
|
586
|
+
export declare const BoolWithAggregatesFilterSchema: z.ZodType<Prisma.BoolWithAggregatesFilter>;
|
|
587
|
+
export declare const DateTimeNullableWithAggregatesFilterSchema: z.ZodType<Prisma.DateTimeNullableWithAggregatesFilter>;
|
|
588
|
+
export declare const UserScalarRelationFilterSchema: z.ZodType<Prisma.UserScalarRelationFilter>;
|
|
589
|
+
export declare const PasswordResetTokenCountOrderByAggregateInputSchema: z.ZodType<Prisma.PasswordResetTokenCountOrderByAggregateInput>;
|
|
590
|
+
export declare const PasswordResetTokenMaxOrderByAggregateInputSchema: z.ZodType<Prisma.PasswordResetTokenMaxOrderByAggregateInput>;
|
|
591
|
+
export declare const PasswordResetTokenMinOrderByAggregateInputSchema: z.ZodType<Prisma.PasswordResetTokenMinOrderByAggregateInput>;
|
|
592
|
+
export declare const TrustedDeviceCountOrderByAggregateInputSchema: z.ZodType<Prisma.TrustedDeviceCountOrderByAggregateInput>;
|
|
593
|
+
export declare const TrustedDeviceMaxOrderByAggregateInputSchema: z.ZodType<Prisma.TrustedDeviceMaxOrderByAggregateInput>;
|
|
594
|
+
export declare const TrustedDeviceMinOrderByAggregateInputSchema: z.ZodType<Prisma.TrustedDeviceMinOrderByAggregateInput>;
|
|
595
|
+
export declare const VerificationTokenCountOrderByAggregateInputSchema: z.ZodType<Prisma.VerificationTokenCountOrderByAggregateInput>;
|
|
596
|
+
export declare const VerificationTokenMaxOrderByAggregateInputSchema: z.ZodType<Prisma.VerificationTokenMaxOrderByAggregateInput>;
|
|
597
|
+
export declare const VerificationTokenMinOrderByAggregateInputSchema: z.ZodType<Prisma.VerificationTokenMinOrderByAggregateInput>;
|
|
476
598
|
export declare const IntFilterSchema: z.ZodType<Prisma.IntFilter>;
|
|
477
599
|
export declare const CravingLevelCountOrderByAggregateInputSchema: z.ZodType<Prisma.CravingLevelCountOrderByAggregateInput>;
|
|
478
600
|
export declare const CravingLevelAvgOrderByAggregateInputSchema: z.ZodType<Prisma.CravingLevelAvgOrderByAggregateInput>;
|
|
@@ -485,12 +607,9 @@ export declare const EmotionalStateAvgOrderByAggregateInputSchema: z.ZodType<Pri
|
|
|
485
607
|
export declare const EmotionalStateMaxOrderByAggregateInputSchema: z.ZodType<Prisma.EmotionalStateMaxOrderByAggregateInput>;
|
|
486
608
|
export declare const EmotionalStateMinOrderByAggregateInputSchema: z.ZodType<Prisma.EmotionalStateMinOrderByAggregateInput>;
|
|
487
609
|
export declare const EmotionalStateSumOrderByAggregateInputSchema: z.ZodType<Prisma.EmotionalStateSumOrderByAggregateInput>;
|
|
488
|
-
export declare const BoolFilterSchema: z.ZodType<Prisma.BoolFilter>;
|
|
489
|
-
export declare const UserScalarRelationFilterSchema: z.ZodType<Prisma.UserScalarRelationFilter>;
|
|
490
610
|
export declare const UserAddictionCountOrderByAggregateInputSchema: z.ZodType<Prisma.UserAddictionCountOrderByAggregateInput>;
|
|
491
611
|
export declare const UserAddictionMaxOrderByAggregateInputSchema: z.ZodType<Prisma.UserAddictionMaxOrderByAggregateInput>;
|
|
492
612
|
export declare const UserAddictionMinOrderByAggregateInputSchema: z.ZodType<Prisma.UserAddictionMinOrderByAggregateInput>;
|
|
493
|
-
export declare const BoolWithAggregatesFilterSchema: z.ZodType<Prisma.BoolWithAggregatesFilter>;
|
|
494
613
|
export declare const EnumSponsorshipStatusFilterSchema: z.ZodType<Prisma.EnumSponsorshipStatusFilter>;
|
|
495
614
|
export declare const SponsorshipCountOrderByAggregateInputSchema: z.ZodType<Prisma.SponsorshipCountOrderByAggregateInput>;
|
|
496
615
|
export declare const SponsorshipMaxOrderByAggregateInputSchema: z.ZodType<Prisma.SponsorshipMaxOrderByAggregateInput>;
|
|
@@ -516,6 +635,7 @@ export declare const LogAbsenceAvgOrderByAggregateInputSchema: z.ZodType<Prisma.
|
|
|
516
635
|
export declare const LogAbsenceMaxOrderByAggregateInputSchema: z.ZodType<Prisma.LogAbsenceMaxOrderByAggregateInput>;
|
|
517
636
|
export declare const LogAbsenceMinOrderByAggregateInputSchema: z.ZodType<Prisma.LogAbsenceMinOrderByAggregateInput>;
|
|
518
637
|
export declare const LogAbsenceSumOrderByAggregateInputSchema: z.ZodType<Prisma.LogAbsenceSumOrderByAggregateInput>;
|
|
638
|
+
export declare const SupportContactUser_idEmailCompoundUniqueInputSchema: z.ZodType<Prisma.SupportContactUser_idEmailCompoundUniqueInput>;
|
|
519
639
|
export declare const SupportContactCountOrderByAggregateInputSchema: z.ZodType<Prisma.SupportContactCountOrderByAggregateInput>;
|
|
520
640
|
export declare const SupportContactAvgOrderByAggregateInputSchema: z.ZodType<Prisma.SupportContactAvgOrderByAggregateInput>;
|
|
521
641
|
export declare const SupportContactMaxOrderByAggregateInputSchema: z.ZodType<Prisma.SupportContactMaxOrderByAggregateInput>;
|
|
@@ -540,6 +660,9 @@ export declare const SupportContactCreateNestedManyWithoutUserInputSchema: z.Zod
|
|
|
540
660
|
export declare const EmergencyAlertCreateNestedManyWithoutUserInputSchema: z.ZodType<Prisma.EmergencyAlertCreateNestedManyWithoutUserInput>;
|
|
541
661
|
export declare const StreakCreateNestedManyWithoutUserInputSchema: z.ZodType<Prisma.StreakCreateNestedManyWithoutUserInput>;
|
|
542
662
|
export declare const LogAbsenceCreateNestedManyWithoutUserInputSchema: z.ZodType<Prisma.LogAbsenceCreateNestedManyWithoutUserInput>;
|
|
663
|
+
export declare const PasswordResetTokenCreateNestedManyWithoutUserInputSchema: z.ZodType<Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput>;
|
|
664
|
+
export declare const TrustedDeviceCreateNestedManyWithoutUserInputSchema: z.ZodType<Prisma.TrustedDeviceCreateNestedManyWithoutUserInput>;
|
|
665
|
+
export declare const VerificationTokenCreateNestedManyWithoutUserInputSchema: z.ZodType<Prisma.VerificationTokenCreateNestedManyWithoutUserInput>;
|
|
543
666
|
export declare const UserAddictionUncheckedCreateNestedManyWithoutUserInputSchema: z.ZodType<Prisma.UserAddictionUncheckedCreateNestedManyWithoutUserInput>;
|
|
544
667
|
export declare const DailyLogUncheckedCreateNestedManyWithoutUserInputSchema: z.ZodType<Prisma.DailyLogUncheckedCreateNestedManyWithoutUserInput>;
|
|
545
668
|
export declare const SponsorshipUncheckedCreateNestedManyWithoutSponsorInputSchema: z.ZodType<Prisma.SponsorshipUncheckedCreateNestedManyWithoutSponsorInput>;
|
|
@@ -548,10 +671,15 @@ export declare const SupportContactUncheckedCreateNestedManyWithoutUserInputSche
|
|
|
548
671
|
export declare const EmergencyAlertUncheckedCreateNestedManyWithoutUserInputSchema: z.ZodType<Prisma.EmergencyAlertUncheckedCreateNestedManyWithoutUserInput>;
|
|
549
672
|
export declare const StreakUncheckedCreateNestedManyWithoutUserInputSchema: z.ZodType<Prisma.StreakUncheckedCreateNestedManyWithoutUserInput>;
|
|
550
673
|
export declare const LogAbsenceUncheckedCreateNestedManyWithoutUserInputSchema: z.ZodType<Prisma.LogAbsenceUncheckedCreateNestedManyWithoutUserInput>;
|
|
674
|
+
export declare const PasswordResetTokenUncheckedCreateNestedManyWithoutUserInputSchema: z.ZodType<Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput>;
|
|
675
|
+
export declare const TrustedDeviceUncheckedCreateNestedManyWithoutUserInputSchema: z.ZodType<Prisma.TrustedDeviceUncheckedCreateNestedManyWithoutUserInput>;
|
|
676
|
+
export declare const VerificationTokenUncheckedCreateNestedManyWithoutUserInputSchema: z.ZodType<Prisma.VerificationTokenUncheckedCreateNestedManyWithoutUserInput>;
|
|
551
677
|
export declare const StringFieldUpdateOperationsInputSchema: z.ZodType<Prisma.StringFieldUpdateOperationsInput>;
|
|
552
678
|
export declare const EnumUserRoleFieldUpdateOperationsInputSchema: z.ZodType<Prisma.EnumUserRoleFieldUpdateOperationsInput>;
|
|
553
679
|
export declare const DateTimeFieldUpdateOperationsInputSchema: z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput>;
|
|
554
680
|
export declare const NullableStringFieldUpdateOperationsInputSchema: z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput>;
|
|
681
|
+
export declare const BoolFieldUpdateOperationsInputSchema: z.ZodType<Prisma.BoolFieldUpdateOperationsInput>;
|
|
682
|
+
export declare const NullableDateTimeFieldUpdateOperationsInputSchema: z.ZodType<Prisma.NullableDateTimeFieldUpdateOperationsInput>;
|
|
555
683
|
export declare const UserAddictionUpdateManyWithoutUserNestedInputSchema: z.ZodType<Prisma.UserAddictionUpdateManyWithoutUserNestedInput>;
|
|
556
684
|
export declare const DailyLogUpdateManyWithoutUserNestedInputSchema: z.ZodType<Prisma.DailyLogUpdateManyWithoutUserNestedInput>;
|
|
557
685
|
export declare const SponsorshipUpdateManyWithoutSponsorNestedInputSchema: z.ZodType<Prisma.SponsorshipUpdateManyWithoutSponsorNestedInput>;
|
|
@@ -560,6 +688,9 @@ export declare const SupportContactUpdateManyWithoutUserNestedInputSchema: z.Zod
|
|
|
560
688
|
export declare const EmergencyAlertUpdateManyWithoutUserNestedInputSchema: z.ZodType<Prisma.EmergencyAlertUpdateManyWithoutUserNestedInput>;
|
|
561
689
|
export declare const StreakUpdateManyWithoutUserNestedInputSchema: z.ZodType<Prisma.StreakUpdateManyWithoutUserNestedInput>;
|
|
562
690
|
export declare const LogAbsenceUpdateManyWithoutUserNestedInputSchema: z.ZodType<Prisma.LogAbsenceUpdateManyWithoutUserNestedInput>;
|
|
691
|
+
export declare const PasswordResetTokenUpdateManyWithoutUserNestedInputSchema: z.ZodType<Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput>;
|
|
692
|
+
export declare const TrustedDeviceUpdateManyWithoutUserNestedInputSchema: z.ZodType<Prisma.TrustedDeviceUpdateManyWithoutUserNestedInput>;
|
|
693
|
+
export declare const VerificationTokenUpdateManyWithoutUserNestedInputSchema: z.ZodType<Prisma.VerificationTokenUpdateManyWithoutUserNestedInput>;
|
|
563
694
|
export declare const UserAddictionUncheckedUpdateManyWithoutUserNestedInputSchema: z.ZodType<Prisma.UserAddictionUncheckedUpdateManyWithoutUserNestedInput>;
|
|
564
695
|
export declare const DailyLogUncheckedUpdateManyWithoutUserNestedInputSchema: z.ZodType<Prisma.DailyLogUncheckedUpdateManyWithoutUserNestedInput>;
|
|
565
696
|
export declare const SponsorshipUncheckedUpdateManyWithoutSponsorNestedInputSchema: z.ZodType<Prisma.SponsorshipUncheckedUpdateManyWithoutSponsorNestedInput>;
|
|
@@ -568,6 +699,15 @@ export declare const SupportContactUncheckedUpdateManyWithoutUserNestedInputSche
|
|
|
568
699
|
export declare const EmergencyAlertUncheckedUpdateManyWithoutUserNestedInputSchema: z.ZodType<Prisma.EmergencyAlertUncheckedUpdateManyWithoutUserNestedInput>;
|
|
569
700
|
export declare const StreakUncheckedUpdateManyWithoutUserNestedInputSchema: z.ZodType<Prisma.StreakUncheckedUpdateManyWithoutUserNestedInput>;
|
|
570
701
|
export declare const LogAbsenceUncheckedUpdateManyWithoutUserNestedInputSchema: z.ZodType<Prisma.LogAbsenceUncheckedUpdateManyWithoutUserNestedInput>;
|
|
702
|
+
export declare const PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInputSchema: z.ZodType<Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput>;
|
|
703
|
+
export declare const TrustedDeviceUncheckedUpdateManyWithoutUserNestedInputSchema: z.ZodType<Prisma.TrustedDeviceUncheckedUpdateManyWithoutUserNestedInput>;
|
|
704
|
+
export declare const VerificationTokenUncheckedUpdateManyWithoutUserNestedInputSchema: z.ZodType<Prisma.VerificationTokenUncheckedUpdateManyWithoutUserNestedInput>;
|
|
705
|
+
export declare const UserCreateNestedOneWithoutPassword_reset_tokensInputSchema: z.ZodType<Prisma.UserCreateNestedOneWithoutPassword_reset_tokensInput>;
|
|
706
|
+
export declare const UserUpdateOneRequiredWithoutPassword_reset_tokensNestedInputSchema: z.ZodType<Prisma.UserUpdateOneRequiredWithoutPassword_reset_tokensNestedInput>;
|
|
707
|
+
export declare const UserCreateNestedOneWithoutTrusted_devicesInputSchema: z.ZodType<Prisma.UserCreateNestedOneWithoutTrusted_devicesInput>;
|
|
708
|
+
export declare const UserUpdateOneRequiredWithoutTrusted_devicesNestedInputSchema: z.ZodType<Prisma.UserUpdateOneRequiredWithoutTrusted_devicesNestedInput>;
|
|
709
|
+
export declare const UserCreateNestedOneWithoutVerification_tokensInputSchema: z.ZodType<Prisma.UserCreateNestedOneWithoutVerification_tokensInput>;
|
|
710
|
+
export declare const UserUpdateOneRequiredWithoutVerification_tokensNestedInputSchema: z.ZodType<Prisma.UserUpdateOneRequiredWithoutVerification_tokensNestedInput>;
|
|
571
711
|
export declare const DailyLogCreateNestedManyWithoutCraving_levelInputSchema: z.ZodType<Prisma.DailyLogCreateNestedManyWithoutCraving_levelInput>;
|
|
572
712
|
export declare const DailyLogUncheckedCreateNestedManyWithoutCraving_levelInputSchema: z.ZodType<Prisma.DailyLogUncheckedCreateNestedManyWithoutCraving_levelInput>;
|
|
573
713
|
export declare const IntFieldUpdateOperationsInputSchema: z.ZodType<Prisma.IntFieldUpdateOperationsInput>;
|
|
@@ -582,7 +722,6 @@ export declare const StreakCreateNestedManyWithoutAddictionInputSchema: z.ZodTyp
|
|
|
582
722
|
export declare const EmergencyAlertCreateNestedManyWithoutAddictionInputSchema: z.ZodType<Prisma.EmergencyAlertCreateNestedManyWithoutAddictionInput>;
|
|
583
723
|
export declare const StreakUncheckedCreateNestedManyWithoutAddictionInputSchema: z.ZodType<Prisma.StreakUncheckedCreateNestedManyWithoutAddictionInput>;
|
|
584
724
|
export declare const EmergencyAlertUncheckedCreateNestedManyWithoutAddictionInputSchema: z.ZodType<Prisma.EmergencyAlertUncheckedCreateNestedManyWithoutAddictionInput>;
|
|
585
|
-
export declare const BoolFieldUpdateOperationsInputSchema: z.ZodType<Prisma.BoolFieldUpdateOperationsInput>;
|
|
586
725
|
export declare const UserUpdateOneRequiredWithoutAddictionsNestedInputSchema: z.ZodType<Prisma.UserUpdateOneRequiredWithoutAddictionsNestedInput>;
|
|
587
726
|
export declare const StreakUpdateManyWithoutAddictionNestedInputSchema: z.ZodType<Prisma.StreakUpdateManyWithoutAddictionNestedInput>;
|
|
588
727
|
export declare const EmergencyAlertUpdateManyWithoutAddictionNestedInputSchema: z.ZodType<Prisma.EmergencyAlertUpdateManyWithoutAddictionNestedInput>;
|
|
@@ -629,6 +768,8 @@ export declare const NestedStringFilterSchema: z.ZodType<Prisma.NestedStringFilt
|
|
|
629
768
|
export declare const NestedEnumUserRoleFilterSchema: z.ZodType<Prisma.NestedEnumUserRoleFilter>;
|
|
630
769
|
export declare const NestedDateTimeFilterSchema: z.ZodType<Prisma.NestedDateTimeFilter>;
|
|
631
770
|
export declare const NestedStringNullableFilterSchema: z.ZodType<Prisma.NestedStringNullableFilter>;
|
|
771
|
+
export declare const NestedBoolFilterSchema: z.ZodType<Prisma.NestedBoolFilter>;
|
|
772
|
+
export declare const NestedDateTimeNullableFilterSchema: z.ZodType<Prisma.NestedDateTimeNullableFilter>;
|
|
632
773
|
export declare const NestedUuidWithAggregatesFilterSchema: z.ZodType<Prisma.NestedUuidWithAggregatesFilter>;
|
|
633
774
|
export declare const NestedIntFilterSchema: z.ZodType<Prisma.NestedIntFilter>;
|
|
634
775
|
export declare const NestedStringWithAggregatesFilterSchema: z.ZodType<Prisma.NestedStringWithAggregatesFilter>;
|
|
@@ -636,10 +777,10 @@ export declare const NestedEnumUserRoleWithAggregatesFilterSchema: z.ZodType<Pri
|
|
|
636
777
|
export declare const NestedDateTimeWithAggregatesFilterSchema: z.ZodType<Prisma.NestedDateTimeWithAggregatesFilter>;
|
|
637
778
|
export declare const NestedStringNullableWithAggregatesFilterSchema: z.ZodType<Prisma.NestedStringNullableWithAggregatesFilter>;
|
|
638
779
|
export declare const NestedIntNullableFilterSchema: z.ZodType<Prisma.NestedIntNullableFilter>;
|
|
780
|
+
export declare const NestedBoolWithAggregatesFilterSchema: z.ZodType<Prisma.NestedBoolWithAggregatesFilter>;
|
|
781
|
+
export declare const NestedDateTimeNullableWithAggregatesFilterSchema: z.ZodType<Prisma.NestedDateTimeNullableWithAggregatesFilter>;
|
|
639
782
|
export declare const NestedIntWithAggregatesFilterSchema: z.ZodType<Prisma.NestedIntWithAggregatesFilter>;
|
|
640
783
|
export declare const NestedFloatFilterSchema: z.ZodType<Prisma.NestedFloatFilter>;
|
|
641
|
-
export declare const NestedBoolFilterSchema: z.ZodType<Prisma.NestedBoolFilter>;
|
|
642
|
-
export declare const NestedBoolWithAggregatesFilterSchema: z.ZodType<Prisma.NestedBoolWithAggregatesFilter>;
|
|
643
784
|
export declare const NestedEnumSponsorshipStatusFilterSchema: z.ZodType<Prisma.NestedEnumSponsorshipStatusFilter>;
|
|
644
785
|
export declare const NestedEnumSponsorshipStatusWithAggregatesFilterSchema: z.ZodType<Prisma.NestedEnumSponsorshipStatusWithAggregatesFilter>;
|
|
645
786
|
export declare const NestedDecimalFilterSchema: z.ZodType<Prisma.NestedDecimalFilter>;
|
|
@@ -676,6 +817,18 @@ export declare const LogAbsenceCreateWithoutUserInputSchema: z.ZodType<Prisma.Lo
|
|
|
676
817
|
export declare const LogAbsenceUncheckedCreateWithoutUserInputSchema: z.ZodType<Prisma.LogAbsenceUncheckedCreateWithoutUserInput>;
|
|
677
818
|
export declare const LogAbsenceCreateOrConnectWithoutUserInputSchema: z.ZodType<Prisma.LogAbsenceCreateOrConnectWithoutUserInput>;
|
|
678
819
|
export declare const LogAbsenceCreateManyUserInputEnvelopeSchema: z.ZodType<Prisma.LogAbsenceCreateManyUserInputEnvelope>;
|
|
820
|
+
export declare const PasswordResetTokenCreateWithoutUserInputSchema: z.ZodType<Prisma.PasswordResetTokenCreateWithoutUserInput>;
|
|
821
|
+
export declare const PasswordResetTokenUncheckedCreateWithoutUserInputSchema: z.ZodType<Prisma.PasswordResetTokenUncheckedCreateWithoutUserInput>;
|
|
822
|
+
export declare const PasswordResetTokenCreateOrConnectWithoutUserInputSchema: z.ZodType<Prisma.PasswordResetTokenCreateOrConnectWithoutUserInput>;
|
|
823
|
+
export declare const PasswordResetTokenCreateManyUserInputEnvelopeSchema: z.ZodType<Prisma.PasswordResetTokenCreateManyUserInputEnvelope>;
|
|
824
|
+
export declare const TrustedDeviceCreateWithoutUserInputSchema: z.ZodType<Prisma.TrustedDeviceCreateWithoutUserInput>;
|
|
825
|
+
export declare const TrustedDeviceUncheckedCreateWithoutUserInputSchema: z.ZodType<Prisma.TrustedDeviceUncheckedCreateWithoutUserInput>;
|
|
826
|
+
export declare const TrustedDeviceCreateOrConnectWithoutUserInputSchema: z.ZodType<Prisma.TrustedDeviceCreateOrConnectWithoutUserInput>;
|
|
827
|
+
export declare const TrustedDeviceCreateManyUserInputEnvelopeSchema: z.ZodType<Prisma.TrustedDeviceCreateManyUserInputEnvelope>;
|
|
828
|
+
export declare const VerificationTokenCreateWithoutUserInputSchema: z.ZodType<Prisma.VerificationTokenCreateWithoutUserInput>;
|
|
829
|
+
export declare const VerificationTokenUncheckedCreateWithoutUserInputSchema: z.ZodType<Prisma.VerificationTokenUncheckedCreateWithoutUserInput>;
|
|
830
|
+
export declare const VerificationTokenCreateOrConnectWithoutUserInputSchema: z.ZodType<Prisma.VerificationTokenCreateOrConnectWithoutUserInput>;
|
|
831
|
+
export declare const VerificationTokenCreateManyUserInputEnvelopeSchema: z.ZodType<Prisma.VerificationTokenCreateManyUserInputEnvelope>;
|
|
679
832
|
export declare const UserAddictionUpsertWithWhereUniqueWithoutUserInputSchema: z.ZodType<Prisma.UserAddictionUpsertWithWhereUniqueWithoutUserInput>;
|
|
680
833
|
export declare const UserAddictionUpdateWithWhereUniqueWithoutUserInputSchema: z.ZodType<Prisma.UserAddictionUpdateWithWhereUniqueWithoutUserInput>;
|
|
681
834
|
export declare const UserAddictionUpdateManyWithWhereWithoutUserInputSchema: z.ZodType<Prisma.UserAddictionUpdateManyWithWhereWithoutUserInput>;
|
|
@@ -707,6 +860,39 @@ export declare const LogAbsenceUpsertWithWhereUniqueWithoutUserInputSchema: z.Zo
|
|
|
707
860
|
export declare const LogAbsenceUpdateWithWhereUniqueWithoutUserInputSchema: z.ZodType<Prisma.LogAbsenceUpdateWithWhereUniqueWithoutUserInput>;
|
|
708
861
|
export declare const LogAbsenceUpdateManyWithWhereWithoutUserInputSchema: z.ZodType<Prisma.LogAbsenceUpdateManyWithWhereWithoutUserInput>;
|
|
709
862
|
export declare const LogAbsenceScalarWhereInputSchema: z.ZodType<Prisma.LogAbsenceScalarWhereInput>;
|
|
863
|
+
export declare const PasswordResetTokenUpsertWithWhereUniqueWithoutUserInputSchema: z.ZodType<Prisma.PasswordResetTokenUpsertWithWhereUniqueWithoutUserInput>;
|
|
864
|
+
export declare const PasswordResetTokenUpdateWithWhereUniqueWithoutUserInputSchema: z.ZodType<Prisma.PasswordResetTokenUpdateWithWhereUniqueWithoutUserInput>;
|
|
865
|
+
export declare const PasswordResetTokenUpdateManyWithWhereWithoutUserInputSchema: z.ZodType<Prisma.PasswordResetTokenUpdateManyWithWhereWithoutUserInput>;
|
|
866
|
+
export declare const PasswordResetTokenScalarWhereInputSchema: z.ZodType<Prisma.PasswordResetTokenScalarWhereInput>;
|
|
867
|
+
export declare const TrustedDeviceUpsertWithWhereUniqueWithoutUserInputSchema: z.ZodType<Prisma.TrustedDeviceUpsertWithWhereUniqueWithoutUserInput>;
|
|
868
|
+
export declare const TrustedDeviceUpdateWithWhereUniqueWithoutUserInputSchema: z.ZodType<Prisma.TrustedDeviceUpdateWithWhereUniqueWithoutUserInput>;
|
|
869
|
+
export declare const TrustedDeviceUpdateManyWithWhereWithoutUserInputSchema: z.ZodType<Prisma.TrustedDeviceUpdateManyWithWhereWithoutUserInput>;
|
|
870
|
+
export declare const TrustedDeviceScalarWhereInputSchema: z.ZodType<Prisma.TrustedDeviceScalarWhereInput>;
|
|
871
|
+
export declare const VerificationTokenUpsertWithWhereUniqueWithoutUserInputSchema: z.ZodType<Prisma.VerificationTokenUpsertWithWhereUniqueWithoutUserInput>;
|
|
872
|
+
export declare const VerificationTokenUpdateWithWhereUniqueWithoutUserInputSchema: z.ZodType<Prisma.VerificationTokenUpdateWithWhereUniqueWithoutUserInput>;
|
|
873
|
+
export declare const VerificationTokenUpdateManyWithWhereWithoutUserInputSchema: z.ZodType<Prisma.VerificationTokenUpdateManyWithWhereWithoutUserInput>;
|
|
874
|
+
export declare const VerificationTokenScalarWhereInputSchema: z.ZodType<Prisma.VerificationTokenScalarWhereInput>;
|
|
875
|
+
export declare const UserCreateWithoutPassword_reset_tokensInputSchema: z.ZodType<Prisma.UserCreateWithoutPassword_reset_tokensInput>;
|
|
876
|
+
export declare const UserUncheckedCreateWithoutPassword_reset_tokensInputSchema: z.ZodType<Prisma.UserUncheckedCreateWithoutPassword_reset_tokensInput>;
|
|
877
|
+
export declare const UserCreateOrConnectWithoutPassword_reset_tokensInputSchema: z.ZodType<Prisma.UserCreateOrConnectWithoutPassword_reset_tokensInput>;
|
|
878
|
+
export declare const UserUpsertWithoutPassword_reset_tokensInputSchema: z.ZodType<Prisma.UserUpsertWithoutPassword_reset_tokensInput>;
|
|
879
|
+
export declare const UserUpdateToOneWithWhereWithoutPassword_reset_tokensInputSchema: z.ZodType<Prisma.UserUpdateToOneWithWhereWithoutPassword_reset_tokensInput>;
|
|
880
|
+
export declare const UserUpdateWithoutPassword_reset_tokensInputSchema: z.ZodType<Prisma.UserUpdateWithoutPassword_reset_tokensInput>;
|
|
881
|
+
export declare const UserUncheckedUpdateWithoutPassword_reset_tokensInputSchema: z.ZodType<Prisma.UserUncheckedUpdateWithoutPassword_reset_tokensInput>;
|
|
882
|
+
export declare const UserCreateWithoutTrusted_devicesInputSchema: z.ZodType<Prisma.UserCreateWithoutTrusted_devicesInput>;
|
|
883
|
+
export declare const UserUncheckedCreateWithoutTrusted_devicesInputSchema: z.ZodType<Prisma.UserUncheckedCreateWithoutTrusted_devicesInput>;
|
|
884
|
+
export declare const UserCreateOrConnectWithoutTrusted_devicesInputSchema: z.ZodType<Prisma.UserCreateOrConnectWithoutTrusted_devicesInput>;
|
|
885
|
+
export declare const UserUpsertWithoutTrusted_devicesInputSchema: z.ZodType<Prisma.UserUpsertWithoutTrusted_devicesInput>;
|
|
886
|
+
export declare const UserUpdateToOneWithWhereWithoutTrusted_devicesInputSchema: z.ZodType<Prisma.UserUpdateToOneWithWhereWithoutTrusted_devicesInput>;
|
|
887
|
+
export declare const UserUpdateWithoutTrusted_devicesInputSchema: z.ZodType<Prisma.UserUpdateWithoutTrusted_devicesInput>;
|
|
888
|
+
export declare const UserUncheckedUpdateWithoutTrusted_devicesInputSchema: z.ZodType<Prisma.UserUncheckedUpdateWithoutTrusted_devicesInput>;
|
|
889
|
+
export declare const UserCreateWithoutVerification_tokensInputSchema: z.ZodType<Prisma.UserCreateWithoutVerification_tokensInput>;
|
|
890
|
+
export declare const UserUncheckedCreateWithoutVerification_tokensInputSchema: z.ZodType<Prisma.UserUncheckedCreateWithoutVerification_tokensInput>;
|
|
891
|
+
export declare const UserCreateOrConnectWithoutVerification_tokensInputSchema: z.ZodType<Prisma.UserCreateOrConnectWithoutVerification_tokensInput>;
|
|
892
|
+
export declare const UserUpsertWithoutVerification_tokensInputSchema: z.ZodType<Prisma.UserUpsertWithoutVerification_tokensInput>;
|
|
893
|
+
export declare const UserUpdateToOneWithWhereWithoutVerification_tokensInputSchema: z.ZodType<Prisma.UserUpdateToOneWithWhereWithoutVerification_tokensInput>;
|
|
894
|
+
export declare const UserUpdateWithoutVerification_tokensInputSchema: z.ZodType<Prisma.UserUpdateWithoutVerification_tokensInput>;
|
|
895
|
+
export declare const UserUncheckedUpdateWithoutVerification_tokensInputSchema: z.ZodType<Prisma.UserUncheckedUpdateWithoutVerification_tokensInput>;
|
|
710
896
|
export declare const DailyLogCreateWithoutCraving_levelInputSchema: z.ZodType<Prisma.DailyLogCreateWithoutCraving_levelInput>;
|
|
711
897
|
export declare const DailyLogUncheckedCreateWithoutCraving_levelInputSchema: z.ZodType<Prisma.DailyLogUncheckedCreateWithoutCraving_levelInput>;
|
|
712
898
|
export declare const DailyLogCreateOrConnectWithoutCraving_levelInputSchema: z.ZodType<Prisma.DailyLogCreateOrConnectWithoutCraving_levelInput>;
|
|
@@ -856,6 +1042,9 @@ export declare const SupportContactCreateManyUserInputSchema: z.ZodType<Prisma.S
|
|
|
856
1042
|
export declare const EmergencyAlertCreateManyUserInputSchema: z.ZodType<Prisma.EmergencyAlertCreateManyUserInput>;
|
|
857
1043
|
export declare const StreakCreateManyUserInputSchema: z.ZodType<Prisma.StreakCreateManyUserInput>;
|
|
858
1044
|
export declare const LogAbsenceCreateManyUserInputSchema: z.ZodType<Prisma.LogAbsenceCreateManyUserInput>;
|
|
1045
|
+
export declare const PasswordResetTokenCreateManyUserInputSchema: z.ZodType<Prisma.PasswordResetTokenCreateManyUserInput>;
|
|
1046
|
+
export declare const TrustedDeviceCreateManyUserInputSchema: z.ZodType<Prisma.TrustedDeviceCreateManyUserInput>;
|
|
1047
|
+
export declare const VerificationTokenCreateManyUserInputSchema: z.ZodType<Prisma.VerificationTokenCreateManyUserInput>;
|
|
859
1048
|
export declare const UserAddictionUpdateWithoutUserInputSchema: z.ZodType<Prisma.UserAddictionUpdateWithoutUserInput>;
|
|
860
1049
|
export declare const UserAddictionUncheckedUpdateWithoutUserInputSchema: z.ZodType<Prisma.UserAddictionUncheckedUpdateWithoutUserInput>;
|
|
861
1050
|
export declare const UserAddictionUncheckedUpdateManyWithoutUserInputSchema: z.ZodType<Prisma.UserAddictionUncheckedUpdateManyWithoutUserInput>;
|
|
@@ -880,6 +1069,15 @@ export declare const StreakUncheckedUpdateManyWithoutUserInputSchema: z.ZodType<
|
|
|
880
1069
|
export declare const LogAbsenceUpdateWithoutUserInputSchema: z.ZodType<Prisma.LogAbsenceUpdateWithoutUserInput>;
|
|
881
1070
|
export declare const LogAbsenceUncheckedUpdateWithoutUserInputSchema: z.ZodType<Prisma.LogAbsenceUncheckedUpdateWithoutUserInput>;
|
|
882
1071
|
export declare const LogAbsenceUncheckedUpdateManyWithoutUserInputSchema: z.ZodType<Prisma.LogAbsenceUncheckedUpdateManyWithoutUserInput>;
|
|
1072
|
+
export declare const PasswordResetTokenUpdateWithoutUserInputSchema: z.ZodType<Prisma.PasswordResetTokenUpdateWithoutUserInput>;
|
|
1073
|
+
export declare const PasswordResetTokenUncheckedUpdateWithoutUserInputSchema: z.ZodType<Prisma.PasswordResetTokenUncheckedUpdateWithoutUserInput>;
|
|
1074
|
+
export declare const PasswordResetTokenUncheckedUpdateManyWithoutUserInputSchema: z.ZodType<Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserInput>;
|
|
1075
|
+
export declare const TrustedDeviceUpdateWithoutUserInputSchema: z.ZodType<Prisma.TrustedDeviceUpdateWithoutUserInput>;
|
|
1076
|
+
export declare const TrustedDeviceUncheckedUpdateWithoutUserInputSchema: z.ZodType<Prisma.TrustedDeviceUncheckedUpdateWithoutUserInput>;
|
|
1077
|
+
export declare const TrustedDeviceUncheckedUpdateManyWithoutUserInputSchema: z.ZodType<Prisma.TrustedDeviceUncheckedUpdateManyWithoutUserInput>;
|
|
1078
|
+
export declare const VerificationTokenUpdateWithoutUserInputSchema: z.ZodType<Prisma.VerificationTokenUpdateWithoutUserInput>;
|
|
1079
|
+
export declare const VerificationTokenUncheckedUpdateWithoutUserInputSchema: z.ZodType<Prisma.VerificationTokenUncheckedUpdateWithoutUserInput>;
|
|
1080
|
+
export declare const VerificationTokenUncheckedUpdateManyWithoutUserInputSchema: z.ZodType<Prisma.VerificationTokenUncheckedUpdateManyWithoutUserInput>;
|
|
883
1081
|
export declare const DailyLogCreateManyCraving_levelInputSchema: z.ZodType<Prisma.DailyLogCreateManyCraving_levelInput>;
|
|
884
1082
|
export declare const DailyLogUpdateWithoutCraving_levelInputSchema: z.ZodType<Prisma.DailyLogUpdateWithoutCraving_levelInput>;
|
|
885
1083
|
export declare const DailyLogUncheckedUpdateWithoutCraving_levelInputSchema: z.ZodType<Prisma.DailyLogUncheckedUpdateWithoutCraving_levelInput>;
|
|
@@ -911,6 +1109,27 @@ export declare const UserAggregateArgsSchema: z.ZodType<Prisma.UserAggregateArgs
|
|
|
911
1109
|
export declare const UserGroupByArgsSchema: z.ZodType<Prisma.UserGroupByArgs>;
|
|
912
1110
|
export declare const UserFindUniqueArgsSchema: z.ZodType<Prisma.UserFindUniqueArgs>;
|
|
913
1111
|
export declare const UserFindUniqueOrThrowArgsSchema: z.ZodType<Prisma.UserFindUniqueOrThrowArgs>;
|
|
1112
|
+
export declare const PasswordResetTokenFindFirstArgsSchema: z.ZodType<Prisma.PasswordResetTokenFindFirstArgs>;
|
|
1113
|
+
export declare const PasswordResetTokenFindFirstOrThrowArgsSchema: z.ZodType<Prisma.PasswordResetTokenFindFirstOrThrowArgs>;
|
|
1114
|
+
export declare const PasswordResetTokenFindManyArgsSchema: z.ZodType<Prisma.PasswordResetTokenFindManyArgs>;
|
|
1115
|
+
export declare const PasswordResetTokenAggregateArgsSchema: z.ZodType<Prisma.PasswordResetTokenAggregateArgs>;
|
|
1116
|
+
export declare const PasswordResetTokenGroupByArgsSchema: z.ZodType<Prisma.PasswordResetTokenGroupByArgs>;
|
|
1117
|
+
export declare const PasswordResetTokenFindUniqueArgsSchema: z.ZodType<Prisma.PasswordResetTokenFindUniqueArgs>;
|
|
1118
|
+
export declare const PasswordResetTokenFindUniqueOrThrowArgsSchema: z.ZodType<Prisma.PasswordResetTokenFindUniqueOrThrowArgs>;
|
|
1119
|
+
export declare const TrustedDeviceFindFirstArgsSchema: z.ZodType<Prisma.TrustedDeviceFindFirstArgs>;
|
|
1120
|
+
export declare const TrustedDeviceFindFirstOrThrowArgsSchema: z.ZodType<Prisma.TrustedDeviceFindFirstOrThrowArgs>;
|
|
1121
|
+
export declare const TrustedDeviceFindManyArgsSchema: z.ZodType<Prisma.TrustedDeviceFindManyArgs>;
|
|
1122
|
+
export declare const TrustedDeviceAggregateArgsSchema: z.ZodType<Prisma.TrustedDeviceAggregateArgs>;
|
|
1123
|
+
export declare const TrustedDeviceGroupByArgsSchema: z.ZodType<Prisma.TrustedDeviceGroupByArgs>;
|
|
1124
|
+
export declare const TrustedDeviceFindUniqueArgsSchema: z.ZodType<Prisma.TrustedDeviceFindUniqueArgs>;
|
|
1125
|
+
export declare const TrustedDeviceFindUniqueOrThrowArgsSchema: z.ZodType<Prisma.TrustedDeviceFindUniqueOrThrowArgs>;
|
|
1126
|
+
export declare const VerificationTokenFindFirstArgsSchema: z.ZodType<Prisma.VerificationTokenFindFirstArgs>;
|
|
1127
|
+
export declare const VerificationTokenFindFirstOrThrowArgsSchema: z.ZodType<Prisma.VerificationTokenFindFirstOrThrowArgs>;
|
|
1128
|
+
export declare const VerificationTokenFindManyArgsSchema: z.ZodType<Prisma.VerificationTokenFindManyArgs>;
|
|
1129
|
+
export declare const VerificationTokenAggregateArgsSchema: z.ZodType<Prisma.VerificationTokenAggregateArgs>;
|
|
1130
|
+
export declare const VerificationTokenGroupByArgsSchema: z.ZodType<Prisma.VerificationTokenGroupByArgs>;
|
|
1131
|
+
export declare const VerificationTokenFindUniqueArgsSchema: z.ZodType<Prisma.VerificationTokenFindUniqueArgs>;
|
|
1132
|
+
export declare const VerificationTokenFindUniqueOrThrowArgsSchema: z.ZodType<Prisma.VerificationTokenFindUniqueOrThrowArgs>;
|
|
914
1133
|
export declare const CravingLevelFindFirstArgsSchema: z.ZodType<Prisma.CravingLevelFindFirstArgs>;
|
|
915
1134
|
export declare const CravingLevelFindFirstOrThrowArgsSchema: z.ZodType<Prisma.CravingLevelFindFirstOrThrowArgs>;
|
|
916
1135
|
export declare const CravingLevelFindManyArgsSchema: z.ZodType<Prisma.CravingLevelFindManyArgs>;
|
|
@@ -990,6 +1209,33 @@ export declare const UserUpdateArgsSchema: z.ZodType<Prisma.UserUpdateArgs>;
|
|
|
990
1209
|
export declare const UserUpdateManyArgsSchema: z.ZodType<Prisma.UserUpdateManyArgs>;
|
|
991
1210
|
export declare const UserUpdateManyAndReturnArgsSchema: z.ZodType<Prisma.UserUpdateManyAndReturnArgs>;
|
|
992
1211
|
export declare const UserDeleteManyArgsSchema: z.ZodType<Prisma.UserDeleteManyArgs>;
|
|
1212
|
+
export declare const PasswordResetTokenCreateArgsSchema: z.ZodType<Prisma.PasswordResetTokenCreateArgs>;
|
|
1213
|
+
export declare const PasswordResetTokenUpsertArgsSchema: z.ZodType<Prisma.PasswordResetTokenUpsertArgs>;
|
|
1214
|
+
export declare const PasswordResetTokenCreateManyArgsSchema: z.ZodType<Prisma.PasswordResetTokenCreateManyArgs>;
|
|
1215
|
+
export declare const PasswordResetTokenCreateManyAndReturnArgsSchema: z.ZodType<Prisma.PasswordResetTokenCreateManyAndReturnArgs>;
|
|
1216
|
+
export declare const PasswordResetTokenDeleteArgsSchema: z.ZodType<Prisma.PasswordResetTokenDeleteArgs>;
|
|
1217
|
+
export declare const PasswordResetTokenUpdateArgsSchema: z.ZodType<Prisma.PasswordResetTokenUpdateArgs>;
|
|
1218
|
+
export declare const PasswordResetTokenUpdateManyArgsSchema: z.ZodType<Prisma.PasswordResetTokenUpdateManyArgs>;
|
|
1219
|
+
export declare const PasswordResetTokenUpdateManyAndReturnArgsSchema: z.ZodType<Prisma.PasswordResetTokenUpdateManyAndReturnArgs>;
|
|
1220
|
+
export declare const PasswordResetTokenDeleteManyArgsSchema: z.ZodType<Prisma.PasswordResetTokenDeleteManyArgs>;
|
|
1221
|
+
export declare const TrustedDeviceCreateArgsSchema: z.ZodType<Prisma.TrustedDeviceCreateArgs>;
|
|
1222
|
+
export declare const TrustedDeviceUpsertArgsSchema: z.ZodType<Prisma.TrustedDeviceUpsertArgs>;
|
|
1223
|
+
export declare const TrustedDeviceCreateManyArgsSchema: z.ZodType<Prisma.TrustedDeviceCreateManyArgs>;
|
|
1224
|
+
export declare const TrustedDeviceCreateManyAndReturnArgsSchema: z.ZodType<Prisma.TrustedDeviceCreateManyAndReturnArgs>;
|
|
1225
|
+
export declare const TrustedDeviceDeleteArgsSchema: z.ZodType<Prisma.TrustedDeviceDeleteArgs>;
|
|
1226
|
+
export declare const TrustedDeviceUpdateArgsSchema: z.ZodType<Prisma.TrustedDeviceUpdateArgs>;
|
|
1227
|
+
export declare const TrustedDeviceUpdateManyArgsSchema: z.ZodType<Prisma.TrustedDeviceUpdateManyArgs>;
|
|
1228
|
+
export declare const TrustedDeviceUpdateManyAndReturnArgsSchema: z.ZodType<Prisma.TrustedDeviceUpdateManyAndReturnArgs>;
|
|
1229
|
+
export declare const TrustedDeviceDeleteManyArgsSchema: z.ZodType<Prisma.TrustedDeviceDeleteManyArgs>;
|
|
1230
|
+
export declare const VerificationTokenCreateArgsSchema: z.ZodType<Prisma.VerificationTokenCreateArgs>;
|
|
1231
|
+
export declare const VerificationTokenUpsertArgsSchema: z.ZodType<Prisma.VerificationTokenUpsertArgs>;
|
|
1232
|
+
export declare const VerificationTokenCreateManyArgsSchema: z.ZodType<Prisma.VerificationTokenCreateManyArgs>;
|
|
1233
|
+
export declare const VerificationTokenCreateManyAndReturnArgsSchema: z.ZodType<Prisma.VerificationTokenCreateManyAndReturnArgs>;
|
|
1234
|
+
export declare const VerificationTokenDeleteArgsSchema: z.ZodType<Prisma.VerificationTokenDeleteArgs>;
|
|
1235
|
+
export declare const VerificationTokenUpdateArgsSchema: z.ZodType<Prisma.VerificationTokenUpdateArgs>;
|
|
1236
|
+
export declare const VerificationTokenUpdateManyArgsSchema: z.ZodType<Prisma.VerificationTokenUpdateManyArgs>;
|
|
1237
|
+
export declare const VerificationTokenUpdateManyAndReturnArgsSchema: z.ZodType<Prisma.VerificationTokenUpdateManyAndReturnArgs>;
|
|
1238
|
+
export declare const VerificationTokenDeleteManyArgsSchema: z.ZodType<Prisma.VerificationTokenDeleteManyArgs>;
|
|
993
1239
|
export declare const CravingLevelCreateArgsSchema: z.ZodType<Prisma.CravingLevelCreateArgs>;
|
|
994
1240
|
export declare const CravingLevelUpsertArgsSchema: z.ZodType<Prisma.CravingLevelUpsertArgs>;
|
|
995
1241
|
export declare const CravingLevelCreateManyArgsSchema: z.ZodType<Prisma.CravingLevelCreateManyArgs>;
|