reset-infra 1.1.0 → 1.1.2
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.js
CHANGED
|
@@ -58,7 +58,7 @@ exports.SponsorshipScalarFieldEnumSchema = zod_1.z.enum(['id', 'sponsor_id', 'ad
|
|
|
58
58
|
exports.DailyLogScalarFieldEnumSchema = zod_1.z.enum(['id', 'user_id', 'log_date', 'consumed', 'craving_level_id', 'emotional_state_id', 'triggers', 'notes', 'created_at']);
|
|
59
59
|
exports.StreakEventScalarFieldEnumSchema = zod_1.z.enum(['id', 'streak_id', 'emergency_alert_id', 'event_type', 'event_date', 'days_achieved', 'avg_craving_period', 'avg_emotion_period', 'created_at']);
|
|
60
60
|
exports.LogAbsenceScalarFieldEnumSchema = zod_1.z.enum(['id', 'user_id', 'streak_id', 'last_log_date', 'detected_at', 'absence_hours', 'event_generated', 'streak_event_id']);
|
|
61
|
-
exports.SupportContactScalarFieldEnumSchema = zod_1.z.enum(['id', 'user_id', 'contact_name', '
|
|
61
|
+
exports.SupportContactScalarFieldEnumSchema = zod_1.z.enum(['id', 'user_id', 'contact_name', 'email', 'relationship', 'custom_relationship', 'is_active', 'priority_order', 'created_at', 'updated_at']);
|
|
62
62
|
exports.EmergencyAlertScalarFieldEnumSchema = zod_1.z.enum(['id', 'user_id', 'user_addiction_id', 'activated_at', 'resulted_in_relapse', 'resolution_notes', 'created_at']);
|
|
63
63
|
exports.StreakScalarFieldEnumSchema = zod_1.z.enum(['id', 'user_id', 'user_addiction_id', 'status', 'started_at', 'day_counter', 'last_log_date', 'updated_at']);
|
|
64
64
|
exports.SortOrderSchema = zod_1.z.enum(['asc', 'desc']);
|
|
@@ -212,7 +212,6 @@ exports.SupportContactSchema = zod_1.z.object({
|
|
|
212
212
|
id: zod_1.z.string(),
|
|
213
213
|
user_id: zod_1.z.string(),
|
|
214
214
|
contact_name: zod_1.z.string(),
|
|
215
|
-
phone: zod_1.z.string(),
|
|
216
215
|
email: zod_1.z.string(),
|
|
217
216
|
relationship: zod_1.z.string(),
|
|
218
217
|
custom_relationship: zod_1.z.string(),
|
|
@@ -560,7 +559,6 @@ exports.SupportContactSelectSchema = zod_1.z.object({
|
|
|
560
559
|
id: zod_1.z.boolean().optional(),
|
|
561
560
|
user_id: zod_1.z.boolean().optional(),
|
|
562
561
|
contact_name: zod_1.z.boolean().optional(),
|
|
563
|
-
phone: zod_1.z.boolean().optional(),
|
|
564
562
|
email: zod_1.z.boolean().optional(),
|
|
565
563
|
relationship: zod_1.z.boolean().optional(),
|
|
566
564
|
custom_relationship: zod_1.z.boolean().optional(),
|
|
@@ -684,26 +682,10 @@ exports.UserOrderByWithRelationInputSchema = zod_1.z.strictObject({
|
|
|
684
682
|
exports.UserWhereUniqueInputSchema = zod_1.z.union([
|
|
685
683
|
zod_1.z.object({
|
|
686
684
|
id: zod_1.z.string(),
|
|
687
|
-
email: zod_1.z.string(),
|
|
688
685
|
sponsor_code: zod_1.z.string(),
|
|
689
686
|
}),
|
|
690
687
|
zod_1.z.object({
|
|
691
688
|
id: zod_1.z.string(),
|
|
692
|
-
email: zod_1.z.string(),
|
|
693
|
-
}),
|
|
694
|
-
zod_1.z.object({
|
|
695
|
-
id: zod_1.z.string(),
|
|
696
|
-
sponsor_code: zod_1.z.string(),
|
|
697
|
-
}),
|
|
698
|
-
zod_1.z.object({
|
|
699
|
-
id: zod_1.z.string(),
|
|
700
|
-
}),
|
|
701
|
-
zod_1.z.object({
|
|
702
|
-
email: zod_1.z.string(),
|
|
703
|
-
sponsor_code: zod_1.z.string(),
|
|
704
|
-
}),
|
|
705
|
-
zod_1.z.object({
|
|
706
|
-
email: zod_1.z.string(),
|
|
707
689
|
}),
|
|
708
690
|
zod_1.z.object({
|
|
709
691
|
sponsor_code: zod_1.z.string(),
|
|
@@ -711,12 +693,12 @@ exports.UserWhereUniqueInputSchema = zod_1.z.union([
|
|
|
711
693
|
])
|
|
712
694
|
.and(zod_1.z.strictObject({
|
|
713
695
|
id: zod_1.z.string().optional(),
|
|
714
|
-
email: zod_1.z.string().optional(),
|
|
715
696
|
sponsor_code: zod_1.z.string().optional(),
|
|
716
697
|
AND: zod_1.z.union([zod_1.z.lazy(() => exports.UserWhereInputSchema), zod_1.z.lazy(() => exports.UserWhereInputSchema).array()]).optional(),
|
|
717
698
|
OR: zod_1.z.lazy(() => exports.UserWhereInputSchema).array().optional(),
|
|
718
699
|
NOT: zod_1.z.union([zod_1.z.lazy(() => exports.UserWhereInputSchema), zod_1.z.lazy(() => exports.UserWhereInputSchema).array()]).optional(),
|
|
719
700
|
name: zod_1.z.union([zod_1.z.lazy(() => exports.StringFilterSchema), zod_1.z.string()]).optional(),
|
|
701
|
+
email: zod_1.z.union([zod_1.z.lazy(() => exports.StringFilterSchema), zod_1.z.string()]).optional(),
|
|
720
702
|
password_hash: zod_1.z.union([zod_1.z.lazy(() => exports.StringFilterSchema), zod_1.z.string()]).optional(),
|
|
721
703
|
role: zod_1.z.union([zod_1.z.lazy(() => exports.EnumUserRoleFilterSchema), zod_1.z.lazy(() => exports.UserRoleSchema)]).optional(),
|
|
722
704
|
created_at: zod_1.z.union([zod_1.z.lazy(() => exports.DateTimeFilterSchema), zod_1.z.coerce.date()]).optional(),
|
|
@@ -1494,7 +1476,6 @@ exports.SupportContactWhereInputSchema = zod_1.z.strictObject({
|
|
|
1494
1476
|
id: zod_1.z.union([zod_1.z.lazy(() => exports.UuidFilterSchema), zod_1.z.string()]).optional(),
|
|
1495
1477
|
user_id: zod_1.z.union([zod_1.z.lazy(() => exports.UuidFilterSchema), zod_1.z.string()]).optional(),
|
|
1496
1478
|
contact_name: zod_1.z.union([zod_1.z.lazy(() => exports.StringFilterSchema), zod_1.z.string()]).optional(),
|
|
1497
|
-
phone: zod_1.z.union([zod_1.z.lazy(() => exports.StringFilterSchema), zod_1.z.string()]).optional(),
|
|
1498
1479
|
email: zod_1.z.union([zod_1.z.lazy(() => exports.StringFilterSchema), zod_1.z.string()]).optional(),
|
|
1499
1480
|
relationship: zod_1.z.union([zod_1.z.lazy(() => exports.StringFilterSchema), zod_1.z.string()]).optional(),
|
|
1500
1481
|
custom_relationship: zod_1.z.union([zod_1.z.lazy(() => exports.StringFilterSchema), zod_1.z.string()]).optional(),
|
|
@@ -1508,7 +1489,6 @@ exports.SupportContactOrderByWithRelationInputSchema = zod_1.z.strictObject({
|
|
|
1508
1489
|
id: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
1509
1490
|
user_id: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
1510
1491
|
contact_name: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
1511
|
-
phone: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
1512
1492
|
email: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
1513
1493
|
relationship: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
1514
1494
|
custom_relationship: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
@@ -1538,7 +1518,6 @@ exports.SupportContactWhereUniqueInputSchema = zod_1.z.union([
|
|
|
1538
1518
|
NOT: zod_1.z.union([zod_1.z.lazy(() => exports.SupportContactWhereInputSchema), zod_1.z.lazy(() => exports.SupportContactWhereInputSchema).array()]).optional(),
|
|
1539
1519
|
user_id: zod_1.z.union([zod_1.z.lazy(() => exports.UuidFilterSchema), zod_1.z.string()]).optional(),
|
|
1540
1520
|
contact_name: zod_1.z.union([zod_1.z.lazy(() => exports.StringFilterSchema), zod_1.z.string()]).optional(),
|
|
1541
|
-
phone: zod_1.z.union([zod_1.z.lazy(() => exports.StringFilterSchema), zod_1.z.string()]).optional(),
|
|
1542
1521
|
email: zod_1.z.union([zod_1.z.lazy(() => exports.StringFilterSchema), zod_1.z.string()]).optional(),
|
|
1543
1522
|
relationship: zod_1.z.union([zod_1.z.lazy(() => exports.StringFilterSchema), zod_1.z.string()]).optional(),
|
|
1544
1523
|
custom_relationship: zod_1.z.union([zod_1.z.lazy(() => exports.StringFilterSchema), zod_1.z.string()]).optional(),
|
|
@@ -1552,7 +1531,6 @@ exports.SupportContactOrderByWithAggregationInputSchema = zod_1.z.strictObject({
|
|
|
1552
1531
|
id: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
1553
1532
|
user_id: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
1554
1533
|
contact_name: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
1555
|
-
phone: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
1556
1534
|
email: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
1557
1535
|
relationship: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
1558
1536
|
custom_relationship: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
@@ -1573,7 +1551,6 @@ exports.SupportContactScalarWhereWithAggregatesInputSchema = zod_1.z.strictObjec
|
|
|
1573
1551
|
id: zod_1.z.union([zod_1.z.lazy(() => exports.UuidWithAggregatesFilterSchema), zod_1.z.string()]).optional(),
|
|
1574
1552
|
user_id: zod_1.z.union([zod_1.z.lazy(() => exports.UuidWithAggregatesFilterSchema), zod_1.z.string()]).optional(),
|
|
1575
1553
|
contact_name: zod_1.z.union([zod_1.z.lazy(() => exports.StringWithAggregatesFilterSchema), zod_1.z.string()]).optional(),
|
|
1576
|
-
phone: zod_1.z.union([zod_1.z.lazy(() => exports.StringWithAggregatesFilterSchema), zod_1.z.string()]).optional(),
|
|
1577
1554
|
email: zod_1.z.union([zod_1.z.lazy(() => exports.StringWithAggregatesFilterSchema), zod_1.z.string()]).optional(),
|
|
1578
1555
|
relationship: zod_1.z.union([zod_1.z.lazy(() => exports.StringWithAggregatesFilterSchema), zod_1.z.string()]).optional(),
|
|
1579
1556
|
custom_relationship: zod_1.z.union([zod_1.z.lazy(() => exports.StringWithAggregatesFilterSchema), zod_1.z.string()]).optional(),
|
|
@@ -2525,7 +2502,6 @@ exports.LogAbsenceUncheckedUpdateManyInputSchema = zod_1.z.strictObject({
|
|
|
2525
2502
|
exports.SupportContactCreateInputSchema = zod_1.z.strictObject({
|
|
2526
2503
|
id: zod_1.z.string().optional(),
|
|
2527
2504
|
contact_name: zod_1.z.string(),
|
|
2528
|
-
phone: zod_1.z.string().optional(),
|
|
2529
2505
|
email: zod_1.z.string().optional(),
|
|
2530
2506
|
relationship: zod_1.z.string().optional(),
|
|
2531
2507
|
custom_relationship: zod_1.z.string().optional(),
|
|
@@ -2539,7 +2515,6 @@ exports.SupportContactUncheckedCreateInputSchema = zod_1.z.strictObject({
|
|
|
2539
2515
|
id: zod_1.z.string().optional(),
|
|
2540
2516
|
user_id: zod_1.z.string(),
|
|
2541
2517
|
contact_name: zod_1.z.string(),
|
|
2542
|
-
phone: zod_1.z.string().optional(),
|
|
2543
2518
|
email: zod_1.z.string().optional(),
|
|
2544
2519
|
relationship: zod_1.z.string().optional(),
|
|
2545
2520
|
custom_relationship: zod_1.z.string().optional(),
|
|
@@ -2551,7 +2526,6 @@ exports.SupportContactUncheckedCreateInputSchema = zod_1.z.strictObject({
|
|
|
2551
2526
|
exports.SupportContactUpdateInputSchema = zod_1.z.strictObject({
|
|
2552
2527
|
id: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
2553
2528
|
contact_name: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
2554
|
-
phone: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
2555
2529
|
email: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
2556
2530
|
relationship: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
2557
2531
|
custom_relationship: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
@@ -2565,7 +2539,6 @@ exports.SupportContactUncheckedUpdateInputSchema = zod_1.z.strictObject({
|
|
|
2565
2539
|
id: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
2566
2540
|
user_id: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
2567
2541
|
contact_name: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
2568
|
-
phone: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
2569
2542
|
email: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
2570
2543
|
relationship: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
2571
2544
|
custom_relationship: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
@@ -2578,7 +2551,6 @@ exports.SupportContactCreateManyInputSchema = zod_1.z.strictObject({
|
|
|
2578
2551
|
id: zod_1.z.string().optional(),
|
|
2579
2552
|
user_id: zod_1.z.string(),
|
|
2580
2553
|
contact_name: zod_1.z.string(),
|
|
2581
|
-
phone: zod_1.z.string().optional(),
|
|
2582
2554
|
email: zod_1.z.string().optional(),
|
|
2583
2555
|
relationship: zod_1.z.string().optional(),
|
|
2584
2556
|
custom_relationship: zod_1.z.string().optional(),
|
|
@@ -2590,7 +2562,6 @@ exports.SupportContactCreateManyInputSchema = zod_1.z.strictObject({
|
|
|
2590
2562
|
exports.SupportContactUpdateManyMutationInputSchema = zod_1.z.strictObject({
|
|
2591
2563
|
id: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
2592
2564
|
contact_name: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
2593
|
-
phone: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
2594
2565
|
email: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
2595
2566
|
relationship: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
2596
2567
|
custom_relationship: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
@@ -2603,7 +2574,6 @@ exports.SupportContactUncheckedUpdateManyInputSchema = zod_1.z.strictObject({
|
|
|
2603
2574
|
id: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
2604
2575
|
user_id: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
2605
2576
|
contact_name: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
2606
|
-
phone: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
2607
2577
|
email: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
2608
2578
|
relationship: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
2609
2579
|
custom_relationship: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
@@ -3422,7 +3392,6 @@ exports.SupportContactCountOrderByAggregateInputSchema = zod_1.z.strictObject({
|
|
|
3422
3392
|
id: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
3423
3393
|
user_id: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
3424
3394
|
contact_name: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
3425
|
-
phone: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
3426
3395
|
email: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
3427
3396
|
relationship: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
3428
3397
|
custom_relationship: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
@@ -3438,7 +3407,6 @@ exports.SupportContactMaxOrderByAggregateInputSchema = zod_1.z.strictObject({
|
|
|
3438
3407
|
id: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
3439
3408
|
user_id: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
3440
3409
|
contact_name: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
3441
|
-
phone: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
3442
3410
|
email: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
3443
3411
|
relationship: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
3444
3412
|
custom_relationship: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
@@ -3451,7 +3419,6 @@ exports.SupportContactMinOrderByAggregateInputSchema = zod_1.z.strictObject({
|
|
|
3451
3419
|
id: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
3452
3420
|
user_id: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
3453
3421
|
contact_name: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
3454
|
-
phone: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
3455
3422
|
email: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
3456
3423
|
relationship: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
3457
3424
|
custom_relationship: zod_1.z.lazy(() => exports.SortOrderSchema).optional(),
|
|
@@ -4772,7 +4739,6 @@ exports.SponsorshipCreateManyAddictInputEnvelopeSchema = zod_1.z.strictObject({
|
|
|
4772
4739
|
exports.SupportContactCreateWithoutUserInputSchema = zod_1.z.strictObject({
|
|
4773
4740
|
id: zod_1.z.string().optional(),
|
|
4774
4741
|
contact_name: zod_1.z.string(),
|
|
4775
|
-
phone: zod_1.z.string().optional(),
|
|
4776
4742
|
email: zod_1.z.string().optional(),
|
|
4777
4743
|
relationship: zod_1.z.string().optional(),
|
|
4778
4744
|
custom_relationship: zod_1.z.string().optional(),
|
|
@@ -4784,7 +4750,6 @@ exports.SupportContactCreateWithoutUserInputSchema = zod_1.z.strictObject({
|
|
|
4784
4750
|
exports.SupportContactUncheckedCreateWithoutUserInputSchema = zod_1.z.strictObject({
|
|
4785
4751
|
id: zod_1.z.string().optional(),
|
|
4786
4752
|
contact_name: zod_1.z.string(),
|
|
4787
|
-
phone: zod_1.z.string().optional(),
|
|
4788
4753
|
email: zod_1.z.string().optional(),
|
|
4789
4754
|
relationship: zod_1.z.string().optional(),
|
|
4790
4755
|
custom_relationship: zod_1.z.string().optional(),
|
|
@@ -5054,7 +5019,6 @@ exports.SupportContactScalarWhereInputSchema = zod_1.z.strictObject({
|
|
|
5054
5019
|
id: zod_1.z.union([zod_1.z.lazy(() => exports.UuidFilterSchema), zod_1.z.string()]).optional(),
|
|
5055
5020
|
user_id: zod_1.z.union([zod_1.z.lazy(() => exports.UuidFilterSchema), zod_1.z.string()]).optional(),
|
|
5056
5021
|
contact_name: zod_1.z.union([zod_1.z.lazy(() => exports.StringFilterSchema), zod_1.z.string()]).optional(),
|
|
5057
|
-
phone: zod_1.z.union([zod_1.z.lazy(() => exports.StringFilterSchema), zod_1.z.string()]).optional(),
|
|
5058
5022
|
email: zod_1.z.union([zod_1.z.lazy(() => exports.StringFilterSchema), zod_1.z.string()]).optional(),
|
|
5059
5023
|
relationship: zod_1.z.union([zod_1.z.lazy(() => exports.StringFilterSchema), zod_1.z.string()]).optional(),
|
|
5060
5024
|
custom_relationship: zod_1.z.union([zod_1.z.lazy(() => exports.StringFilterSchema), zod_1.z.string()]).optional(),
|
|
@@ -7047,7 +7011,6 @@ exports.SponsorshipCreateManyAddictInputSchema = zod_1.z.strictObject({
|
|
|
7047
7011
|
exports.SupportContactCreateManyUserInputSchema = zod_1.z.strictObject({
|
|
7048
7012
|
id: zod_1.z.string().optional(),
|
|
7049
7013
|
contact_name: zod_1.z.string(),
|
|
7050
|
-
phone: zod_1.z.string().optional(),
|
|
7051
7014
|
email: zod_1.z.string().optional(),
|
|
7052
7015
|
relationship: zod_1.z.string().optional(),
|
|
7053
7016
|
custom_relationship: zod_1.z.string().optional(),
|
|
@@ -7217,7 +7180,6 @@ exports.SponsorshipUncheckedUpdateManyWithoutAddictInputSchema = zod_1.z.strictO
|
|
|
7217
7180
|
exports.SupportContactUpdateWithoutUserInputSchema = zod_1.z.strictObject({
|
|
7218
7181
|
id: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
7219
7182
|
contact_name: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
7220
|
-
phone: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
7221
7183
|
email: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
7222
7184
|
relationship: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
7223
7185
|
custom_relationship: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
@@ -7229,7 +7191,6 @@ exports.SupportContactUpdateWithoutUserInputSchema = zod_1.z.strictObject({
|
|
|
7229
7191
|
exports.SupportContactUncheckedUpdateWithoutUserInputSchema = zod_1.z.strictObject({
|
|
7230
7192
|
id: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
7231
7193
|
contact_name: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
7232
|
-
phone: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
7233
7194
|
email: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
7234
7195
|
relationship: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
7235
7196
|
custom_relationship: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
@@ -7241,7 +7202,6 @@ exports.SupportContactUncheckedUpdateWithoutUserInputSchema = zod_1.z.strictObje
|
|
|
7241
7202
|
exports.SupportContactUncheckedUpdateManyWithoutUserInputSchema = zod_1.z.strictObject({
|
|
7242
7203
|
id: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
7243
7204
|
contact_name: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
7244
|
-
phone: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
7245
7205
|
email: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
7246
7206
|
relationship: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|
|
7247
7207
|
custom_relationship: zod_1.z.union([zod_1.z.string(), zod_1.z.lazy(() => exports.StringFieldUpdateOperationsInputSchema)]).optional(),
|