@valentine-efagene/qshelter-common 2.0.37 → 2.0.39

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.
@@ -255,6 +255,8 @@ export type UserWhereInput = {
255
255
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestListRelationFilter;
256
256
  initiatedTerminations?: Prisma.ContractTerminationListRelationFilter;
257
257
  reviewedTerminations?: Prisma.ContractTerminationListRelationFilter;
258
+ offerLettersGenerated?: Prisma.OfferLetterListRelationFilter;
259
+ offerLettersSent?: Prisma.OfferLetterListRelationFilter;
258
260
  };
259
261
  export type UserOrderByWithRelationInput = {
260
262
  id?: Prisma.SortOrder;
@@ -295,6 +297,8 @@ export type UserOrderByWithRelationInput = {
295
297
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestOrderByRelationAggregateInput;
296
298
  initiatedTerminations?: Prisma.ContractTerminationOrderByRelationAggregateInput;
297
299
  reviewedTerminations?: Prisma.ContractTerminationOrderByRelationAggregateInput;
300
+ offerLettersGenerated?: Prisma.OfferLetterOrderByRelationAggregateInput;
301
+ offerLettersSent?: Prisma.OfferLetterOrderByRelationAggregateInput;
298
302
  _relevance?: Prisma.UserOrderByRelevanceInput;
299
303
  };
300
304
  export type UserWhereUniqueInput = Prisma.AtLeast<{
@@ -339,6 +343,8 @@ export type UserWhereUniqueInput = Prisma.AtLeast<{
339
343
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestListRelationFilter;
340
344
  initiatedTerminations?: Prisma.ContractTerminationListRelationFilter;
341
345
  reviewedTerminations?: Prisma.ContractTerminationListRelationFilter;
346
+ offerLettersGenerated?: Prisma.OfferLetterListRelationFilter;
347
+ offerLettersSent?: Prisma.OfferLetterListRelationFilter;
342
348
  }, "id" | "email" | "phone" | "walletId">;
343
349
  export type UserOrderByWithAggregationInput = {
344
350
  id?: Prisma.SortOrder;
@@ -421,6 +427,8 @@ export type UserCreateInput = {
421
427
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
422
428
  initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
423
429
  reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
430
+ offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
431
+ offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
424
432
  };
425
433
  export type UserUncheckedCreateInput = {
426
434
  id?: string;
@@ -459,6 +467,8 @@ export type UserUncheckedCreateInput = {
459
467
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
460
468
  initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
461
469
  reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
470
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
471
+ offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
462
472
  };
463
473
  export type UserUpdateInput = {
464
474
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -497,6 +507,8 @@ export type UserUpdateInput = {
497
507
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
498
508
  initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
499
509
  reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
510
+ offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
511
+ offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
500
512
  };
501
513
  export type UserUncheckedUpdateInput = {
502
514
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -535,6 +547,8 @@ export type UserUncheckedUpdateInput = {
535
547
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
536
548
  initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
537
549
  reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
550
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
551
+ offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
538
552
  };
539
553
  export type UserCreateManyInput = {
540
554
  id?: string;
@@ -928,6 +942,34 @@ export type UserUpdateOneWithoutUploadedDocsNestedInput = {
928
942
  connect?: Prisma.UserWhereUniqueInput;
929
943
  update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutUploadedDocsInput, Prisma.UserUpdateWithoutUploadedDocsInput>, Prisma.UserUncheckedUpdateWithoutUploadedDocsInput>;
930
944
  };
945
+ export type UserCreateNestedOneWithoutOfferLettersGeneratedInput = {
946
+ create?: Prisma.XOR<Prisma.UserCreateWithoutOfferLettersGeneratedInput, Prisma.UserUncheckedCreateWithoutOfferLettersGeneratedInput>;
947
+ connectOrCreate?: Prisma.UserCreateOrConnectWithoutOfferLettersGeneratedInput;
948
+ connect?: Prisma.UserWhereUniqueInput;
949
+ };
950
+ export type UserCreateNestedOneWithoutOfferLettersSentInput = {
951
+ create?: Prisma.XOR<Prisma.UserCreateWithoutOfferLettersSentInput, Prisma.UserUncheckedCreateWithoutOfferLettersSentInput>;
952
+ connectOrCreate?: Prisma.UserCreateOrConnectWithoutOfferLettersSentInput;
953
+ connect?: Prisma.UserWhereUniqueInput;
954
+ };
955
+ export type UserUpdateOneWithoutOfferLettersGeneratedNestedInput = {
956
+ create?: Prisma.XOR<Prisma.UserCreateWithoutOfferLettersGeneratedInput, Prisma.UserUncheckedCreateWithoutOfferLettersGeneratedInput>;
957
+ connectOrCreate?: Prisma.UserCreateOrConnectWithoutOfferLettersGeneratedInput;
958
+ upsert?: Prisma.UserUpsertWithoutOfferLettersGeneratedInput;
959
+ disconnect?: Prisma.UserWhereInput | boolean;
960
+ delete?: Prisma.UserWhereInput | boolean;
961
+ connect?: Prisma.UserWhereUniqueInput;
962
+ update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutOfferLettersGeneratedInput, Prisma.UserUpdateWithoutOfferLettersGeneratedInput>, Prisma.UserUncheckedUpdateWithoutOfferLettersGeneratedInput>;
963
+ };
964
+ export type UserUpdateOneWithoutOfferLettersSentNestedInput = {
965
+ create?: Prisma.XOR<Prisma.UserCreateWithoutOfferLettersSentInput, Prisma.UserUncheckedCreateWithoutOfferLettersSentInput>;
966
+ connectOrCreate?: Prisma.UserCreateOrConnectWithoutOfferLettersSentInput;
967
+ upsert?: Prisma.UserUpsertWithoutOfferLettersSentInput;
968
+ disconnect?: Prisma.UserWhereInput | boolean;
969
+ delete?: Prisma.UserWhereInput | boolean;
970
+ connect?: Prisma.UserWhereUniqueInput;
971
+ update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutOfferLettersSentInput, Prisma.UserUpdateWithoutOfferLettersSentInput>, Prisma.UserUncheckedUpdateWithoutOfferLettersSentInput>;
972
+ };
931
973
  export type UserCreateNestedOneWithoutInitiatedTerminationsInput = {
932
974
  create?: Prisma.XOR<Prisma.UserCreateWithoutInitiatedTerminationsInput, Prisma.UserUncheckedCreateWithoutInitiatedTerminationsInput>;
933
975
  connectOrCreate?: Prisma.UserCreateOrConnectWithoutInitiatedTerminationsInput;
@@ -1030,6 +1072,8 @@ export type UserCreateWithoutUserRolesInput = {
1030
1072
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
1031
1073
  initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
1032
1074
  reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
1075
+ offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
1076
+ offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
1033
1077
  };
1034
1078
  export type UserUncheckedCreateWithoutUserRolesInput = {
1035
1079
  id?: string;
@@ -1067,6 +1111,8 @@ export type UserUncheckedCreateWithoutUserRolesInput = {
1067
1111
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
1068
1112
  initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
1069
1113
  reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
1114
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
1115
+ offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
1070
1116
  };
1071
1117
  export type UserCreateOrConnectWithoutUserRolesInput = {
1072
1118
  where: Prisma.UserWhereUniqueInput;
@@ -1117,6 +1163,8 @@ export type UserUpdateWithoutUserRolesInput = {
1117
1163
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
1118
1164
  initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
1119
1165
  reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
1166
+ offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
1167
+ offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
1120
1168
  };
1121
1169
  export type UserUncheckedUpdateWithoutUserRolesInput = {
1122
1170
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1154,6 +1202,8 @@ export type UserUncheckedUpdateWithoutUserRolesInput = {
1154
1202
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
1155
1203
  initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
1156
1204
  reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
1205
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
1206
+ offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
1157
1207
  };
1158
1208
  export type UserCreateWithoutTenantInput = {
1159
1209
  id?: string;
@@ -1191,6 +1241,8 @@ export type UserCreateWithoutTenantInput = {
1191
1241
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
1192
1242
  initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
1193
1243
  reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
1244
+ offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
1245
+ offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
1194
1246
  };
1195
1247
  export type UserUncheckedCreateWithoutTenantInput = {
1196
1248
  id?: string;
@@ -1228,6 +1280,8 @@ export type UserUncheckedCreateWithoutTenantInput = {
1228
1280
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
1229
1281
  initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
1230
1282
  reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
1283
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
1284
+ offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
1231
1285
  };
1232
1286
  export type UserCreateOrConnectWithoutTenantInput = {
1233
1287
  where: Prisma.UserWhereUniqueInput;
@@ -1308,6 +1362,8 @@ export type UserCreateWithoutRefreshTokensInput = {
1308
1362
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
1309
1363
  initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
1310
1364
  reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
1365
+ offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
1366
+ offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
1311
1367
  };
1312
1368
  export type UserUncheckedCreateWithoutRefreshTokensInput = {
1313
1369
  id?: string;
@@ -1345,6 +1401,8 @@ export type UserUncheckedCreateWithoutRefreshTokensInput = {
1345
1401
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
1346
1402
  initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
1347
1403
  reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
1404
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
1405
+ offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
1348
1406
  };
1349
1407
  export type UserCreateOrConnectWithoutRefreshTokensInput = {
1350
1408
  where: Prisma.UserWhereUniqueInput;
@@ -1395,6 +1453,8 @@ export type UserUpdateWithoutRefreshTokensInput = {
1395
1453
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
1396
1454
  initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
1397
1455
  reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
1456
+ offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
1457
+ offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
1398
1458
  };
1399
1459
  export type UserUncheckedUpdateWithoutRefreshTokensInput = {
1400
1460
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1432,6 +1492,8 @@ export type UserUncheckedUpdateWithoutRefreshTokensInput = {
1432
1492
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
1433
1493
  initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
1434
1494
  reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
1495
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
1496
+ offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
1435
1497
  };
1436
1498
  export type UserCreateWithoutPasswordResetsInput = {
1437
1499
  id?: string;
@@ -1469,6 +1531,8 @@ export type UserCreateWithoutPasswordResetsInput = {
1469
1531
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
1470
1532
  initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
1471
1533
  reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
1534
+ offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
1535
+ offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
1472
1536
  };
1473
1537
  export type UserUncheckedCreateWithoutPasswordResetsInput = {
1474
1538
  id?: string;
@@ -1506,6 +1570,8 @@ export type UserUncheckedCreateWithoutPasswordResetsInput = {
1506
1570
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
1507
1571
  initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
1508
1572
  reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
1573
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
1574
+ offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
1509
1575
  };
1510
1576
  export type UserCreateOrConnectWithoutPasswordResetsInput = {
1511
1577
  where: Prisma.UserWhereUniqueInput;
@@ -1556,6 +1622,8 @@ export type UserUpdateWithoutPasswordResetsInput = {
1556
1622
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
1557
1623
  initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
1558
1624
  reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
1625
+ offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
1626
+ offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
1559
1627
  };
1560
1628
  export type UserUncheckedUpdateWithoutPasswordResetsInput = {
1561
1629
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1593,6 +1661,8 @@ export type UserUncheckedUpdateWithoutPasswordResetsInput = {
1593
1661
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
1594
1662
  initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
1595
1663
  reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
1664
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
1665
+ offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
1596
1666
  };
1597
1667
  export type UserCreateWithoutSuspensionsInput = {
1598
1668
  id?: string;
@@ -1630,6 +1700,8 @@ export type UserCreateWithoutSuspensionsInput = {
1630
1700
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
1631
1701
  initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
1632
1702
  reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
1703
+ offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
1704
+ offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
1633
1705
  };
1634
1706
  export type UserUncheckedCreateWithoutSuspensionsInput = {
1635
1707
  id?: string;
@@ -1667,6 +1739,8 @@ export type UserUncheckedCreateWithoutSuspensionsInput = {
1667
1739
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
1668
1740
  initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
1669
1741
  reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
1742
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
1743
+ offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
1670
1744
  };
1671
1745
  export type UserCreateOrConnectWithoutSuspensionsInput = {
1672
1746
  where: Prisma.UserWhereUniqueInput;
@@ -1717,6 +1791,8 @@ export type UserUpdateWithoutSuspensionsInput = {
1717
1791
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
1718
1792
  initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
1719
1793
  reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
1794
+ offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
1795
+ offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
1720
1796
  };
1721
1797
  export type UserUncheckedUpdateWithoutSuspensionsInput = {
1722
1798
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1754,6 +1830,8 @@ export type UserUncheckedUpdateWithoutSuspensionsInput = {
1754
1830
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
1755
1831
  initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
1756
1832
  reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
1833
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
1834
+ offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
1757
1835
  };
1758
1836
  export type UserCreateWithoutEmailPreferencesInput = {
1759
1837
  id?: string;
@@ -1791,6 +1869,8 @@ export type UserCreateWithoutEmailPreferencesInput = {
1791
1869
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
1792
1870
  initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
1793
1871
  reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
1872
+ offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
1873
+ offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
1794
1874
  };
1795
1875
  export type UserUncheckedCreateWithoutEmailPreferencesInput = {
1796
1876
  id?: string;
@@ -1828,6 +1908,8 @@ export type UserUncheckedCreateWithoutEmailPreferencesInput = {
1828
1908
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
1829
1909
  initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
1830
1910
  reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
1911
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
1912
+ offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
1831
1913
  };
1832
1914
  export type UserCreateOrConnectWithoutEmailPreferencesInput = {
1833
1915
  where: Prisma.UserWhereUniqueInput;
@@ -1878,6 +1960,8 @@ export type UserUpdateWithoutEmailPreferencesInput = {
1878
1960
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
1879
1961
  initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
1880
1962
  reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
1963
+ offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
1964
+ offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
1881
1965
  };
1882
1966
  export type UserUncheckedUpdateWithoutEmailPreferencesInput = {
1883
1967
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1915,6 +1999,8 @@ export type UserUncheckedUpdateWithoutEmailPreferencesInput = {
1915
1999
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
1916
2000
  initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
1917
2001
  reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
2002
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
2003
+ offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
1918
2004
  };
1919
2005
  export type UserCreateWithoutDeviceEndpointsInput = {
1920
2006
  id?: string;
@@ -1952,6 +2038,8 @@ export type UserCreateWithoutDeviceEndpointsInput = {
1952
2038
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
1953
2039
  initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
1954
2040
  reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
2041
+ offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
2042
+ offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
1955
2043
  };
1956
2044
  export type UserUncheckedCreateWithoutDeviceEndpointsInput = {
1957
2045
  id?: string;
@@ -1989,6 +2077,8 @@ export type UserUncheckedCreateWithoutDeviceEndpointsInput = {
1989
2077
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
1990
2078
  initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
1991
2079
  reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
2080
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
2081
+ offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
1992
2082
  };
1993
2083
  export type UserCreateOrConnectWithoutDeviceEndpointsInput = {
1994
2084
  where: Prisma.UserWhereUniqueInput;
@@ -2039,6 +2129,8 @@ export type UserUpdateWithoutDeviceEndpointsInput = {
2039
2129
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
2040
2130
  initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
2041
2131
  reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
2132
+ offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
2133
+ offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
2042
2134
  };
2043
2135
  export type UserUncheckedUpdateWithoutDeviceEndpointsInput = {
2044
2136
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -2076,6 +2168,8 @@ export type UserUncheckedUpdateWithoutDeviceEndpointsInput = {
2076
2168
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
2077
2169
  initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
2078
2170
  reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
2171
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
2172
+ offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
2079
2173
  };
2080
2174
  export type UserCreateWithoutSocialsInput = {
2081
2175
  id?: string;
@@ -2113,6 +2207,8 @@ export type UserCreateWithoutSocialsInput = {
2113
2207
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
2114
2208
  initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
2115
2209
  reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
2210
+ offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
2211
+ offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
2116
2212
  };
2117
2213
  export type UserUncheckedCreateWithoutSocialsInput = {
2118
2214
  id?: string;
@@ -2150,6 +2246,8 @@ export type UserUncheckedCreateWithoutSocialsInput = {
2150
2246
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
2151
2247
  initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
2152
2248
  reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
2249
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
2250
+ offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
2153
2251
  };
2154
2252
  export type UserCreateOrConnectWithoutSocialsInput = {
2155
2253
  where: Prisma.UserWhereUniqueInput;
@@ -2200,6 +2298,8 @@ export type UserUpdateWithoutSocialsInput = {
2200
2298
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
2201
2299
  initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
2202
2300
  reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
2301
+ offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
2302
+ offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
2203
2303
  };
2204
2304
  export type UserUncheckedUpdateWithoutSocialsInput = {
2205
2305
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -2237,6 +2337,8 @@ export type UserUncheckedUpdateWithoutSocialsInput = {
2237
2337
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
2238
2338
  initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
2239
2339
  reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
2340
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
2341
+ offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
2240
2342
  };
2241
2343
  export type UserCreateWithoutWalletInput = {
2242
2344
  id?: string;
@@ -2274,6 +2376,8 @@ export type UserCreateWithoutWalletInput = {
2274
2376
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
2275
2377
  initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
2276
2378
  reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
2379
+ offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
2380
+ offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
2277
2381
  };
2278
2382
  export type UserUncheckedCreateWithoutWalletInput = {
2279
2383
  id?: string;
@@ -2311,6 +2415,8 @@ export type UserUncheckedCreateWithoutWalletInput = {
2311
2415
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
2312
2416
  initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
2313
2417
  reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
2418
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
2419
+ offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
2314
2420
  };
2315
2421
  export type UserCreateOrConnectWithoutWalletInput = {
2316
2422
  where: Prisma.UserWhereUniqueInput;
@@ -2361,6 +2467,8 @@ export type UserUpdateWithoutWalletInput = {
2361
2467
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
2362
2468
  initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
2363
2469
  reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
2470
+ offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
2471
+ offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
2364
2472
  };
2365
2473
  export type UserUncheckedUpdateWithoutWalletInput = {
2366
2474
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -2398,6 +2506,8 @@ export type UserUncheckedUpdateWithoutWalletInput = {
2398
2506
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
2399
2507
  initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
2400
2508
  reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
2509
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
2510
+ offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
2401
2511
  };
2402
2512
  export type UserCreateWithoutPropertiesInput = {
2403
2513
  id?: string;
@@ -2435,6 +2545,8 @@ export type UserCreateWithoutPropertiesInput = {
2435
2545
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
2436
2546
  initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
2437
2547
  reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
2548
+ offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
2549
+ offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
2438
2550
  };
2439
2551
  export type UserUncheckedCreateWithoutPropertiesInput = {
2440
2552
  id?: string;
@@ -2472,6 +2584,8 @@ export type UserUncheckedCreateWithoutPropertiesInput = {
2472
2584
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
2473
2585
  initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
2474
2586
  reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
2587
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
2588
+ offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
2475
2589
  };
2476
2590
  export type UserCreateOrConnectWithoutPropertiesInput = {
2477
2591
  where: Prisma.UserWhereUniqueInput;
@@ -2522,6 +2636,8 @@ export type UserUpdateWithoutPropertiesInput = {
2522
2636
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
2523
2637
  initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
2524
2638
  reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
2639
+ offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
2640
+ offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
2525
2641
  };
2526
2642
  export type UserUncheckedUpdateWithoutPropertiesInput = {
2527
2643
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -2559,6 +2675,8 @@ export type UserUncheckedUpdateWithoutPropertiesInput = {
2559
2675
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
2560
2676
  initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
2561
2677
  reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
2678
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
2679
+ offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
2562
2680
  };
2563
2681
  export type UserCreateWithoutContractsInput = {
2564
2682
  id?: string;
@@ -2596,6 +2714,8 @@ export type UserCreateWithoutContractsInput = {
2596
2714
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
2597
2715
  initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
2598
2716
  reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
2717
+ offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
2718
+ offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
2599
2719
  };
2600
2720
  export type UserUncheckedCreateWithoutContractsInput = {
2601
2721
  id?: string;
@@ -2633,6 +2753,8 @@ export type UserUncheckedCreateWithoutContractsInput = {
2633
2753
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
2634
2754
  initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
2635
2755
  reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
2756
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
2757
+ offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
2636
2758
  };
2637
2759
  export type UserCreateOrConnectWithoutContractsInput = {
2638
2760
  where: Prisma.UserWhereUniqueInput;
@@ -2674,6 +2796,8 @@ export type UserCreateWithoutSoldContractsInput = {
2674
2796
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
2675
2797
  initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
2676
2798
  reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
2799
+ offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
2800
+ offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
2677
2801
  };
2678
2802
  export type UserUncheckedCreateWithoutSoldContractsInput = {
2679
2803
  id?: string;
@@ -2711,6 +2835,8 @@ export type UserUncheckedCreateWithoutSoldContractsInput = {
2711
2835
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
2712
2836
  initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
2713
2837
  reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
2838
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
2839
+ offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
2714
2840
  };
2715
2841
  export type UserCreateOrConnectWithoutSoldContractsInput = {
2716
2842
  where: Prisma.UserWhereUniqueInput;
@@ -2761,6 +2887,8 @@ export type UserUpdateWithoutContractsInput = {
2761
2887
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
2762
2888
  initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
2763
2889
  reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
2890
+ offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
2891
+ offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
2764
2892
  };
2765
2893
  export type UserUncheckedUpdateWithoutContractsInput = {
2766
2894
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -2798,6 +2926,8 @@ export type UserUncheckedUpdateWithoutContractsInput = {
2798
2926
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
2799
2927
  initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
2800
2928
  reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
2929
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
2930
+ offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
2801
2931
  };
2802
2932
  export type UserUpsertWithoutSoldContractsInput = {
2803
2933
  update: Prisma.XOR<Prisma.UserUpdateWithoutSoldContractsInput, Prisma.UserUncheckedUpdateWithoutSoldContractsInput>;
@@ -2844,6 +2974,8 @@ export type UserUpdateWithoutSoldContractsInput = {
2844
2974
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
2845
2975
  initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
2846
2976
  reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
2977
+ offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
2978
+ offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
2847
2979
  };
2848
2980
  export type UserUncheckedUpdateWithoutSoldContractsInput = {
2849
2981
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -2881,6 +3013,8 @@ export type UserUncheckedUpdateWithoutSoldContractsInput = {
2881
3013
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
2882
3014
  initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
2883
3015
  reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
3016
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
3017
+ offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
2884
3018
  };
2885
3019
  export type UserCreateWithoutAssignedStepsInput = {
2886
3020
  id?: string;
@@ -2918,6 +3052,8 @@ export type UserCreateWithoutAssignedStepsInput = {
2918
3052
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
2919
3053
  initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
2920
3054
  reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
3055
+ offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
3056
+ offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
2921
3057
  };
2922
3058
  export type UserUncheckedCreateWithoutAssignedStepsInput = {
2923
3059
  id?: string;
@@ -2955,6 +3091,8 @@ export type UserUncheckedCreateWithoutAssignedStepsInput = {
2955
3091
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
2956
3092
  initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
2957
3093
  reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
3094
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
3095
+ offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
2958
3096
  };
2959
3097
  export type UserCreateOrConnectWithoutAssignedStepsInput = {
2960
3098
  where: Prisma.UserWhereUniqueInput;
@@ -3005,6 +3143,8 @@ export type UserUpdateWithoutAssignedStepsInput = {
3005
3143
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
3006
3144
  initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
3007
3145
  reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
3146
+ offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
3147
+ offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
3008
3148
  };
3009
3149
  export type UserUncheckedUpdateWithoutAssignedStepsInput = {
3010
3150
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -3042,6 +3182,8 @@ export type UserUncheckedUpdateWithoutAssignedStepsInput = {
3042
3182
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
3043
3183
  initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
3044
3184
  reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
3185
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
3186
+ offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
3045
3187
  };
3046
3188
  export type UserCreateWithoutStepApprovalsInput = {
3047
3189
  id?: string;
@@ -3079,6 +3221,8 @@ export type UserCreateWithoutStepApprovalsInput = {
3079
3221
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
3080
3222
  initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
3081
3223
  reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
3224
+ offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
3225
+ offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
3082
3226
  };
3083
3227
  export type UserUncheckedCreateWithoutStepApprovalsInput = {
3084
3228
  id?: string;
@@ -3116,6 +3260,8 @@ export type UserUncheckedCreateWithoutStepApprovalsInput = {
3116
3260
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
3117
3261
  initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
3118
3262
  reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
3263
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
3264
+ offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
3119
3265
  };
3120
3266
  export type UserCreateOrConnectWithoutStepApprovalsInput = {
3121
3267
  where: Prisma.UserWhereUniqueInput;
@@ -3166,6 +3312,8 @@ export type UserUpdateWithoutStepApprovalsInput = {
3166
3312
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
3167
3313
  initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
3168
3314
  reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
3315
+ offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
3316
+ offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
3169
3317
  };
3170
3318
  export type UserUncheckedUpdateWithoutStepApprovalsInput = {
3171
3319
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -3203,6 +3351,8 @@ export type UserUncheckedUpdateWithoutStepApprovalsInput = {
3203
3351
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
3204
3352
  initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
3205
3353
  reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
3354
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
3355
+ offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
3206
3356
  };
3207
3357
  export type UserCreateWithoutContractPaymentsInput = {
3208
3358
  id?: string;
@@ -3240,6 +3390,8 @@ export type UserCreateWithoutContractPaymentsInput = {
3240
3390
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
3241
3391
  initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
3242
3392
  reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
3393
+ offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
3394
+ offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
3243
3395
  };
3244
3396
  export type UserUncheckedCreateWithoutContractPaymentsInput = {
3245
3397
  id?: string;
@@ -3277,6 +3429,8 @@ export type UserUncheckedCreateWithoutContractPaymentsInput = {
3277
3429
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
3278
3430
  initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
3279
3431
  reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
3432
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
3433
+ offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
3280
3434
  };
3281
3435
  export type UserCreateOrConnectWithoutContractPaymentsInput = {
3282
3436
  where: Prisma.UserWhereUniqueInput;
@@ -3327,6 +3481,8 @@ export type UserUpdateWithoutContractPaymentsInput = {
3327
3481
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
3328
3482
  initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
3329
3483
  reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
3484
+ offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
3485
+ offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
3330
3486
  };
3331
3487
  export type UserUncheckedUpdateWithoutContractPaymentsInput = {
3332
3488
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -3364,6 +3520,8 @@ export type UserUncheckedUpdateWithoutContractPaymentsInput = {
3364
3520
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
3365
3521
  initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
3366
3522
  reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
3523
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
3524
+ offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
3367
3525
  };
3368
3526
  export type UserCreateWithoutUploadedDocsInput = {
3369
3527
  id?: string;
@@ -3401,6 +3559,8 @@ export type UserCreateWithoutUploadedDocsInput = {
3401
3559
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
3402
3560
  initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
3403
3561
  reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
3562
+ offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
3563
+ offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
3404
3564
  };
3405
3565
  export type UserUncheckedCreateWithoutUploadedDocsInput = {
3406
3566
  id?: string;
@@ -3438,6 +3598,8 @@ export type UserUncheckedCreateWithoutUploadedDocsInput = {
3438
3598
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
3439
3599
  initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
3440
3600
  reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
3601
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
3602
+ offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
3441
3603
  };
3442
3604
  export type UserCreateOrConnectWithoutUploadedDocsInput = {
3443
3605
  where: Prisma.UserWhereUniqueInput;
@@ -3488,6 +3650,8 @@ export type UserUpdateWithoutUploadedDocsInput = {
3488
3650
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
3489
3651
  initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
3490
3652
  reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
3653
+ offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
3654
+ offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
3491
3655
  };
3492
3656
  export type UserUncheckedUpdateWithoutUploadedDocsInput = {
3493
3657
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -3525,6 +3689,346 @@ export type UserUncheckedUpdateWithoutUploadedDocsInput = {
3525
3689
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
3526
3690
  initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
3527
3691
  reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
3692
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
3693
+ offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
3694
+ };
3695
+ export type UserCreateWithoutOfferLettersGeneratedInput = {
3696
+ id?: string;
3697
+ email: string;
3698
+ password?: string | null;
3699
+ phone?: string | null;
3700
+ firstName?: string | null;
3701
+ lastName?: string | null;
3702
+ isActive?: boolean;
3703
+ isEmailVerified?: boolean;
3704
+ googleId?: string | null;
3705
+ avatar?: string | null;
3706
+ createdAt?: Date | string;
3707
+ updatedAt?: Date | string;
3708
+ emailVerifiedAt?: Date | string | null;
3709
+ emailVerificationToken?: string | null;
3710
+ lastLoginAt?: Date | string | null;
3711
+ tenant?: Prisma.TenantCreateNestedOneWithoutUsersInput;
3712
+ userRoles?: Prisma.UserRoleCreateNestedManyWithoutUserInput;
3713
+ wallet?: Prisma.WalletCreateNestedOneWithoutUserInput;
3714
+ refreshTokens?: Prisma.RefreshTokenCreateNestedManyWithoutUserInput;
3715
+ passwordResets?: Prisma.PasswordResetCreateNestedManyWithoutUserInput;
3716
+ suspensions?: Prisma.UserSuspensionCreateNestedManyWithoutUserInput;
3717
+ emailPreferences?: Prisma.EmailPreferenceCreateNestedManyWithoutUserInput;
3718
+ deviceEndpoints?: Prisma.DeviceEndpointCreateNestedManyWithoutUserInput;
3719
+ socials?: Prisma.SocialCreateNestedManyWithoutUserInput;
3720
+ properties?: Prisma.PropertyCreateNestedManyWithoutUserInput;
3721
+ contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
3722
+ soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
3723
+ contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
3724
+ assignedSteps?: Prisma.ContractPhaseStepCreateNestedManyWithoutAssigneeInput;
3725
+ stepApprovals?: Prisma.ContractPhaseStepApprovalCreateNestedManyWithoutApproverInput;
3726
+ uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
3727
+ prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
3728
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
3729
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
3730
+ initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
3731
+ reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
3732
+ offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
3733
+ };
3734
+ export type UserUncheckedCreateWithoutOfferLettersGeneratedInput = {
3735
+ id?: string;
3736
+ email: string;
3737
+ password?: string | null;
3738
+ phone?: string | null;
3739
+ firstName?: string | null;
3740
+ lastName?: string | null;
3741
+ isActive?: boolean;
3742
+ isEmailVerified?: boolean;
3743
+ googleId?: string | null;
3744
+ avatar?: string | null;
3745
+ tenantId?: string | null;
3746
+ walletId?: string | null;
3747
+ createdAt?: Date | string;
3748
+ updatedAt?: Date | string;
3749
+ emailVerifiedAt?: Date | string | null;
3750
+ emailVerificationToken?: string | null;
3751
+ lastLoginAt?: Date | string | null;
3752
+ userRoles?: Prisma.UserRoleUncheckedCreateNestedManyWithoutUserInput;
3753
+ refreshTokens?: Prisma.RefreshTokenUncheckedCreateNestedManyWithoutUserInput;
3754
+ passwordResets?: Prisma.PasswordResetUncheckedCreateNestedManyWithoutUserInput;
3755
+ suspensions?: Prisma.UserSuspensionUncheckedCreateNestedManyWithoutUserInput;
3756
+ emailPreferences?: Prisma.EmailPreferenceUncheckedCreateNestedManyWithoutUserInput;
3757
+ deviceEndpoints?: Prisma.DeviceEndpointUncheckedCreateNestedManyWithoutUserInput;
3758
+ socials?: Prisma.SocialUncheckedCreateNestedManyWithoutUserInput;
3759
+ properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutUserInput;
3760
+ contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
3761
+ soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
3762
+ contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
3763
+ assignedSteps?: Prisma.ContractPhaseStepUncheckedCreateNestedManyWithoutAssigneeInput;
3764
+ stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
3765
+ uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
3766
+ prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
3767
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
3768
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
3769
+ initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
3770
+ reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
3771
+ offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
3772
+ };
3773
+ export type UserCreateOrConnectWithoutOfferLettersGeneratedInput = {
3774
+ where: Prisma.UserWhereUniqueInput;
3775
+ create: Prisma.XOR<Prisma.UserCreateWithoutOfferLettersGeneratedInput, Prisma.UserUncheckedCreateWithoutOfferLettersGeneratedInput>;
3776
+ };
3777
+ export type UserCreateWithoutOfferLettersSentInput = {
3778
+ id?: string;
3779
+ email: string;
3780
+ password?: string | null;
3781
+ phone?: string | null;
3782
+ firstName?: string | null;
3783
+ lastName?: string | null;
3784
+ isActive?: boolean;
3785
+ isEmailVerified?: boolean;
3786
+ googleId?: string | null;
3787
+ avatar?: string | null;
3788
+ createdAt?: Date | string;
3789
+ updatedAt?: Date | string;
3790
+ emailVerifiedAt?: Date | string | null;
3791
+ emailVerificationToken?: string | null;
3792
+ lastLoginAt?: Date | string | null;
3793
+ tenant?: Prisma.TenantCreateNestedOneWithoutUsersInput;
3794
+ userRoles?: Prisma.UserRoleCreateNestedManyWithoutUserInput;
3795
+ wallet?: Prisma.WalletCreateNestedOneWithoutUserInput;
3796
+ refreshTokens?: Prisma.RefreshTokenCreateNestedManyWithoutUserInput;
3797
+ passwordResets?: Prisma.PasswordResetCreateNestedManyWithoutUserInput;
3798
+ suspensions?: Prisma.UserSuspensionCreateNestedManyWithoutUserInput;
3799
+ emailPreferences?: Prisma.EmailPreferenceCreateNestedManyWithoutUserInput;
3800
+ deviceEndpoints?: Prisma.DeviceEndpointCreateNestedManyWithoutUserInput;
3801
+ socials?: Prisma.SocialCreateNestedManyWithoutUserInput;
3802
+ properties?: Prisma.PropertyCreateNestedManyWithoutUserInput;
3803
+ contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
3804
+ soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
3805
+ contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
3806
+ assignedSteps?: Prisma.ContractPhaseStepCreateNestedManyWithoutAssigneeInput;
3807
+ stepApprovals?: Prisma.ContractPhaseStepApprovalCreateNestedManyWithoutApproverInput;
3808
+ uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
3809
+ prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
3810
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
3811
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
3812
+ initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
3813
+ reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
3814
+ offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
3815
+ };
3816
+ export type UserUncheckedCreateWithoutOfferLettersSentInput = {
3817
+ id?: string;
3818
+ email: string;
3819
+ password?: string | null;
3820
+ phone?: string | null;
3821
+ firstName?: string | null;
3822
+ lastName?: string | null;
3823
+ isActive?: boolean;
3824
+ isEmailVerified?: boolean;
3825
+ googleId?: string | null;
3826
+ avatar?: string | null;
3827
+ tenantId?: string | null;
3828
+ walletId?: string | null;
3829
+ createdAt?: Date | string;
3830
+ updatedAt?: Date | string;
3831
+ emailVerifiedAt?: Date | string | null;
3832
+ emailVerificationToken?: string | null;
3833
+ lastLoginAt?: Date | string | null;
3834
+ userRoles?: Prisma.UserRoleUncheckedCreateNestedManyWithoutUserInput;
3835
+ refreshTokens?: Prisma.RefreshTokenUncheckedCreateNestedManyWithoutUserInput;
3836
+ passwordResets?: Prisma.PasswordResetUncheckedCreateNestedManyWithoutUserInput;
3837
+ suspensions?: Prisma.UserSuspensionUncheckedCreateNestedManyWithoutUserInput;
3838
+ emailPreferences?: Prisma.EmailPreferenceUncheckedCreateNestedManyWithoutUserInput;
3839
+ deviceEndpoints?: Prisma.DeviceEndpointUncheckedCreateNestedManyWithoutUserInput;
3840
+ socials?: Prisma.SocialUncheckedCreateNestedManyWithoutUserInput;
3841
+ properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutUserInput;
3842
+ contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
3843
+ soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
3844
+ contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
3845
+ assignedSteps?: Prisma.ContractPhaseStepUncheckedCreateNestedManyWithoutAssigneeInput;
3846
+ stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
3847
+ uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
3848
+ prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
3849
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
3850
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
3851
+ initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
3852
+ reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
3853
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
3854
+ };
3855
+ export type UserCreateOrConnectWithoutOfferLettersSentInput = {
3856
+ where: Prisma.UserWhereUniqueInput;
3857
+ create: Prisma.XOR<Prisma.UserCreateWithoutOfferLettersSentInput, Prisma.UserUncheckedCreateWithoutOfferLettersSentInput>;
3858
+ };
3859
+ export type UserUpsertWithoutOfferLettersGeneratedInput = {
3860
+ update: Prisma.XOR<Prisma.UserUpdateWithoutOfferLettersGeneratedInput, Prisma.UserUncheckedUpdateWithoutOfferLettersGeneratedInput>;
3861
+ create: Prisma.XOR<Prisma.UserCreateWithoutOfferLettersGeneratedInput, Prisma.UserUncheckedCreateWithoutOfferLettersGeneratedInput>;
3862
+ where?: Prisma.UserWhereInput;
3863
+ };
3864
+ export type UserUpdateToOneWithWhereWithoutOfferLettersGeneratedInput = {
3865
+ where?: Prisma.UserWhereInput;
3866
+ data: Prisma.XOR<Prisma.UserUpdateWithoutOfferLettersGeneratedInput, Prisma.UserUncheckedUpdateWithoutOfferLettersGeneratedInput>;
3867
+ };
3868
+ export type UserUpdateWithoutOfferLettersGeneratedInput = {
3869
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
3870
+ email?: Prisma.StringFieldUpdateOperationsInput | string;
3871
+ password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3872
+ phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3873
+ firstName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3874
+ lastName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3875
+ isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
3876
+ isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
3877
+ googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3878
+ avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3879
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
3880
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
3881
+ emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
3882
+ emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3883
+ lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
3884
+ tenant?: Prisma.TenantUpdateOneWithoutUsersNestedInput;
3885
+ userRoles?: Prisma.UserRoleUpdateManyWithoutUserNestedInput;
3886
+ wallet?: Prisma.WalletUpdateOneWithoutUserNestedInput;
3887
+ refreshTokens?: Prisma.RefreshTokenUpdateManyWithoutUserNestedInput;
3888
+ passwordResets?: Prisma.PasswordResetUpdateManyWithoutUserNestedInput;
3889
+ suspensions?: Prisma.UserSuspensionUpdateManyWithoutUserNestedInput;
3890
+ emailPreferences?: Prisma.EmailPreferenceUpdateManyWithoutUserNestedInput;
3891
+ deviceEndpoints?: Prisma.DeviceEndpointUpdateManyWithoutUserNestedInput;
3892
+ socials?: Prisma.SocialUpdateManyWithoutUserNestedInput;
3893
+ properties?: Prisma.PropertyUpdateManyWithoutUserNestedInput;
3894
+ contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
3895
+ soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
3896
+ contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
3897
+ assignedSteps?: Prisma.ContractPhaseStepUpdateManyWithoutAssigneeNestedInput;
3898
+ stepApprovals?: Prisma.ContractPhaseStepApprovalUpdateManyWithoutApproverNestedInput;
3899
+ uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
3900
+ prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
3901
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
3902
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
3903
+ initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
3904
+ reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
3905
+ offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
3906
+ };
3907
+ export type UserUncheckedUpdateWithoutOfferLettersGeneratedInput = {
3908
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
3909
+ email?: Prisma.StringFieldUpdateOperationsInput | string;
3910
+ password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3911
+ phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3912
+ firstName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3913
+ lastName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3914
+ isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
3915
+ isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
3916
+ googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3917
+ avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3918
+ tenantId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3919
+ walletId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3920
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
3921
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
3922
+ emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
3923
+ emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3924
+ lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
3925
+ userRoles?: Prisma.UserRoleUncheckedUpdateManyWithoutUserNestedInput;
3926
+ refreshTokens?: Prisma.RefreshTokenUncheckedUpdateManyWithoutUserNestedInput;
3927
+ passwordResets?: Prisma.PasswordResetUncheckedUpdateManyWithoutUserNestedInput;
3928
+ suspensions?: Prisma.UserSuspensionUncheckedUpdateManyWithoutUserNestedInput;
3929
+ emailPreferences?: Prisma.EmailPreferenceUncheckedUpdateManyWithoutUserNestedInput;
3930
+ deviceEndpoints?: Prisma.DeviceEndpointUncheckedUpdateManyWithoutUserNestedInput;
3931
+ socials?: Prisma.SocialUncheckedUpdateManyWithoutUserNestedInput;
3932
+ properties?: Prisma.PropertyUncheckedUpdateManyWithoutUserNestedInput;
3933
+ contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
3934
+ soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
3935
+ contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
3936
+ assignedSteps?: Prisma.ContractPhaseStepUncheckedUpdateManyWithoutAssigneeNestedInput;
3937
+ stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
3938
+ uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
3939
+ prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
3940
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
3941
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
3942
+ initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
3943
+ reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
3944
+ offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
3945
+ };
3946
+ export type UserUpsertWithoutOfferLettersSentInput = {
3947
+ update: Prisma.XOR<Prisma.UserUpdateWithoutOfferLettersSentInput, Prisma.UserUncheckedUpdateWithoutOfferLettersSentInput>;
3948
+ create: Prisma.XOR<Prisma.UserCreateWithoutOfferLettersSentInput, Prisma.UserUncheckedCreateWithoutOfferLettersSentInput>;
3949
+ where?: Prisma.UserWhereInput;
3950
+ };
3951
+ export type UserUpdateToOneWithWhereWithoutOfferLettersSentInput = {
3952
+ where?: Prisma.UserWhereInput;
3953
+ data: Prisma.XOR<Prisma.UserUpdateWithoutOfferLettersSentInput, Prisma.UserUncheckedUpdateWithoutOfferLettersSentInput>;
3954
+ };
3955
+ export type UserUpdateWithoutOfferLettersSentInput = {
3956
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
3957
+ email?: Prisma.StringFieldUpdateOperationsInput | string;
3958
+ password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3959
+ phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3960
+ firstName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3961
+ lastName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3962
+ isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
3963
+ isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
3964
+ googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3965
+ avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3966
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
3967
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
3968
+ emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
3969
+ emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3970
+ lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
3971
+ tenant?: Prisma.TenantUpdateOneWithoutUsersNestedInput;
3972
+ userRoles?: Prisma.UserRoleUpdateManyWithoutUserNestedInput;
3973
+ wallet?: Prisma.WalletUpdateOneWithoutUserNestedInput;
3974
+ refreshTokens?: Prisma.RefreshTokenUpdateManyWithoutUserNestedInput;
3975
+ passwordResets?: Prisma.PasswordResetUpdateManyWithoutUserNestedInput;
3976
+ suspensions?: Prisma.UserSuspensionUpdateManyWithoutUserNestedInput;
3977
+ emailPreferences?: Prisma.EmailPreferenceUpdateManyWithoutUserNestedInput;
3978
+ deviceEndpoints?: Prisma.DeviceEndpointUpdateManyWithoutUserNestedInput;
3979
+ socials?: Prisma.SocialUpdateManyWithoutUserNestedInput;
3980
+ properties?: Prisma.PropertyUpdateManyWithoutUserNestedInput;
3981
+ contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
3982
+ soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
3983
+ contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
3984
+ assignedSteps?: Prisma.ContractPhaseStepUpdateManyWithoutAssigneeNestedInput;
3985
+ stepApprovals?: Prisma.ContractPhaseStepApprovalUpdateManyWithoutApproverNestedInput;
3986
+ uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
3987
+ prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
3988
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
3989
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
3990
+ initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
3991
+ reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
3992
+ offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
3993
+ };
3994
+ export type UserUncheckedUpdateWithoutOfferLettersSentInput = {
3995
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
3996
+ email?: Prisma.StringFieldUpdateOperationsInput | string;
3997
+ password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3998
+ phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3999
+ firstName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
4000
+ lastName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
4001
+ isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
4002
+ isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
4003
+ googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
4004
+ avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
4005
+ tenantId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
4006
+ walletId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
4007
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
4008
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
4009
+ emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
4010
+ emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
4011
+ lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
4012
+ userRoles?: Prisma.UserRoleUncheckedUpdateManyWithoutUserNestedInput;
4013
+ refreshTokens?: Prisma.RefreshTokenUncheckedUpdateManyWithoutUserNestedInput;
4014
+ passwordResets?: Prisma.PasswordResetUncheckedUpdateManyWithoutUserNestedInput;
4015
+ suspensions?: Prisma.UserSuspensionUncheckedUpdateManyWithoutUserNestedInput;
4016
+ emailPreferences?: Prisma.EmailPreferenceUncheckedUpdateManyWithoutUserNestedInput;
4017
+ deviceEndpoints?: Prisma.DeviceEndpointUncheckedUpdateManyWithoutUserNestedInput;
4018
+ socials?: Prisma.SocialUncheckedUpdateManyWithoutUserNestedInput;
4019
+ properties?: Prisma.PropertyUncheckedUpdateManyWithoutUserNestedInput;
4020
+ contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
4021
+ soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
4022
+ contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
4023
+ assignedSteps?: Prisma.ContractPhaseStepUncheckedUpdateManyWithoutAssigneeNestedInput;
4024
+ stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
4025
+ uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
4026
+ prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
4027
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
4028
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
4029
+ initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
4030
+ reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
4031
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
3528
4032
  };
3529
4033
  export type UserCreateWithoutInitiatedTerminationsInput = {
3530
4034
  id?: string;
@@ -3562,6 +4066,8 @@ export type UserCreateWithoutInitiatedTerminationsInput = {
3562
4066
  paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
3563
4067
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
3564
4068
  reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
4069
+ offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
4070
+ offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
3565
4071
  };
3566
4072
  export type UserUncheckedCreateWithoutInitiatedTerminationsInput = {
3567
4073
  id?: string;
@@ -3599,6 +4105,8 @@ export type UserUncheckedCreateWithoutInitiatedTerminationsInput = {
3599
4105
  paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
3600
4106
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
3601
4107
  reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
4108
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
4109
+ offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
3602
4110
  };
3603
4111
  export type UserCreateOrConnectWithoutInitiatedTerminationsInput = {
3604
4112
  where: Prisma.UserWhereUniqueInput;
@@ -3640,6 +4148,8 @@ export type UserCreateWithoutReviewedTerminationsInput = {
3640
4148
  paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
3641
4149
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
3642
4150
  initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
4151
+ offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
4152
+ offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
3643
4153
  };
3644
4154
  export type UserUncheckedCreateWithoutReviewedTerminationsInput = {
3645
4155
  id?: string;
@@ -3677,6 +4187,8 @@ export type UserUncheckedCreateWithoutReviewedTerminationsInput = {
3677
4187
  paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
3678
4188
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
3679
4189
  initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
4190
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
4191
+ offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
3680
4192
  };
3681
4193
  export type UserCreateOrConnectWithoutReviewedTerminationsInput = {
3682
4194
  where: Prisma.UserWhereUniqueInput;
@@ -3727,6 +4239,8 @@ export type UserUpdateWithoutInitiatedTerminationsInput = {
3727
4239
  paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
3728
4240
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
3729
4241
  reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
4242
+ offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
4243
+ offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
3730
4244
  };
3731
4245
  export type UserUncheckedUpdateWithoutInitiatedTerminationsInput = {
3732
4246
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -3764,6 +4278,8 @@ export type UserUncheckedUpdateWithoutInitiatedTerminationsInput = {
3764
4278
  paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
3765
4279
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
3766
4280
  reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
4281
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
4282
+ offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
3767
4283
  };
3768
4284
  export type UserUpsertWithoutReviewedTerminationsInput = {
3769
4285
  update: Prisma.XOR<Prisma.UserUpdateWithoutReviewedTerminationsInput, Prisma.UserUncheckedUpdateWithoutReviewedTerminationsInput>;
@@ -3810,6 +4326,8 @@ export type UserUpdateWithoutReviewedTerminationsInput = {
3810
4326
  paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
3811
4327
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
3812
4328
  initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
4329
+ offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
4330
+ offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
3813
4331
  };
3814
4332
  export type UserUncheckedUpdateWithoutReviewedTerminationsInput = {
3815
4333
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -3847,6 +4365,8 @@ export type UserUncheckedUpdateWithoutReviewedTerminationsInput = {
3847
4365
  paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
3848
4366
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
3849
4367
  initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
4368
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
4369
+ offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
3850
4370
  };
3851
4371
  export type UserCreateWithoutPrequalificationsInput = {
3852
4372
  id?: string;
@@ -3884,6 +4404,8 @@ export type UserCreateWithoutPrequalificationsInput = {
3884
4404
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
3885
4405
  initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
3886
4406
  reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
4407
+ offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
4408
+ offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
3887
4409
  };
3888
4410
  export type UserUncheckedCreateWithoutPrequalificationsInput = {
3889
4411
  id?: string;
@@ -3921,6 +4443,8 @@ export type UserUncheckedCreateWithoutPrequalificationsInput = {
3921
4443
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
3922
4444
  initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
3923
4445
  reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
4446
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
4447
+ offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
3924
4448
  };
3925
4449
  export type UserCreateOrConnectWithoutPrequalificationsInput = {
3926
4450
  where: Prisma.UserWhereUniqueInput;
@@ -3971,6 +4495,8 @@ export type UserUpdateWithoutPrequalificationsInput = {
3971
4495
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
3972
4496
  initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
3973
4497
  reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
4498
+ offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
4499
+ offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
3974
4500
  };
3975
4501
  export type UserUncheckedUpdateWithoutPrequalificationsInput = {
3976
4502
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -4008,6 +4534,8 @@ export type UserUncheckedUpdateWithoutPrequalificationsInput = {
4008
4534
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
4009
4535
  initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
4010
4536
  reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
4537
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
4538
+ offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
4011
4539
  };
4012
4540
  export type UserCreateWithoutPaymentMethodChangeRequestsInput = {
4013
4541
  id?: string;
@@ -4045,6 +4573,8 @@ export type UserCreateWithoutPaymentMethodChangeRequestsInput = {
4045
4573
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
4046
4574
  initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
4047
4575
  reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
4576
+ offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
4577
+ offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
4048
4578
  };
4049
4579
  export type UserUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
4050
4580
  id?: string;
@@ -4082,6 +4612,8 @@ export type UserUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
4082
4612
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
4083
4613
  initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
4084
4614
  reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
4615
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
4616
+ offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
4085
4617
  };
4086
4618
  export type UserCreateOrConnectWithoutPaymentMethodChangeRequestsInput = {
4087
4619
  where: Prisma.UserWhereUniqueInput;
@@ -4123,6 +4655,8 @@ export type UserCreateWithoutReviewedChangeRequestsInput = {
4123
4655
  paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
4124
4656
  initiatedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutInitiatorInput;
4125
4657
  reviewedTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutReviewerInput;
4658
+ offerLettersGenerated?: Prisma.OfferLetterCreateNestedManyWithoutGeneratedByInput;
4659
+ offerLettersSent?: Prisma.OfferLetterCreateNestedManyWithoutSentByInput;
4126
4660
  };
4127
4661
  export type UserUncheckedCreateWithoutReviewedChangeRequestsInput = {
4128
4662
  id?: string;
@@ -4160,6 +4694,8 @@ export type UserUncheckedCreateWithoutReviewedChangeRequestsInput = {
4160
4694
  paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
4161
4695
  initiatedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutInitiatorInput;
4162
4696
  reviewedTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutReviewerInput;
4697
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutGeneratedByInput;
4698
+ offerLettersSent?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutSentByInput;
4163
4699
  };
4164
4700
  export type UserCreateOrConnectWithoutReviewedChangeRequestsInput = {
4165
4701
  where: Prisma.UserWhereUniqueInput;
@@ -4210,6 +4746,8 @@ export type UserUpdateWithoutPaymentMethodChangeRequestsInput = {
4210
4746
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
4211
4747
  initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
4212
4748
  reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
4749
+ offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
4750
+ offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
4213
4751
  };
4214
4752
  export type UserUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
4215
4753
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -4247,6 +4785,8 @@ export type UserUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
4247
4785
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
4248
4786
  initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
4249
4787
  reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
4788
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
4789
+ offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
4250
4790
  };
4251
4791
  export type UserUpsertWithoutReviewedChangeRequestsInput = {
4252
4792
  update: Prisma.XOR<Prisma.UserUpdateWithoutReviewedChangeRequestsInput, Prisma.UserUncheckedUpdateWithoutReviewedChangeRequestsInput>;
@@ -4293,6 +4833,8 @@ export type UserUpdateWithoutReviewedChangeRequestsInput = {
4293
4833
  paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
4294
4834
  initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
4295
4835
  reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
4836
+ offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
4837
+ offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
4296
4838
  };
4297
4839
  export type UserUncheckedUpdateWithoutReviewedChangeRequestsInput = {
4298
4840
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -4330,6 +4872,8 @@ export type UserUncheckedUpdateWithoutReviewedChangeRequestsInput = {
4330
4872
  paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
4331
4873
  initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
4332
4874
  reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
4875
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
4876
+ offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
4333
4877
  };
4334
4878
  export type UserCreateManyTenantInput = {
4335
4879
  id?: string;
@@ -4385,6 +4929,8 @@ export type UserUpdateWithoutTenantInput = {
4385
4929
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
4386
4930
  initiatedTerminations?: Prisma.ContractTerminationUpdateManyWithoutInitiatorNestedInput;
4387
4931
  reviewedTerminations?: Prisma.ContractTerminationUpdateManyWithoutReviewerNestedInput;
4932
+ offerLettersGenerated?: Prisma.OfferLetterUpdateManyWithoutGeneratedByNestedInput;
4933
+ offerLettersSent?: Prisma.OfferLetterUpdateManyWithoutSentByNestedInput;
4388
4934
  };
4389
4935
  export type UserUncheckedUpdateWithoutTenantInput = {
4390
4936
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -4422,6 +4968,8 @@ export type UserUncheckedUpdateWithoutTenantInput = {
4422
4968
  reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
4423
4969
  initiatedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutInitiatorNestedInput;
4424
4970
  reviewedTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutReviewerNestedInput;
4971
+ offerLettersGenerated?: Prisma.OfferLetterUncheckedUpdateManyWithoutGeneratedByNestedInput;
4972
+ offerLettersSent?: Prisma.OfferLetterUncheckedUpdateManyWithoutSentByNestedInput;
4425
4973
  };
4426
4974
  export type UserUncheckedUpdateManyWithoutTenantInput = {
4427
4975
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -4464,6 +5012,8 @@ export type UserCountOutputType = {
4464
5012
  reviewedChangeRequests: number;
4465
5013
  initiatedTerminations: number;
4466
5014
  reviewedTerminations: number;
5015
+ offerLettersGenerated: number;
5016
+ offerLettersSent: number;
4467
5017
  };
4468
5018
  export type UserCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
4469
5019
  userRoles?: boolean | UserCountOutputTypeCountUserRolesArgs;
@@ -4485,6 +5035,8 @@ export type UserCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.I
4485
5035
  reviewedChangeRequests?: boolean | UserCountOutputTypeCountReviewedChangeRequestsArgs;
4486
5036
  initiatedTerminations?: boolean | UserCountOutputTypeCountInitiatedTerminationsArgs;
4487
5037
  reviewedTerminations?: boolean | UserCountOutputTypeCountReviewedTerminationsArgs;
5038
+ offerLettersGenerated?: boolean | UserCountOutputTypeCountOfferLettersGeneratedArgs;
5039
+ offerLettersSent?: boolean | UserCountOutputTypeCountOfferLettersSentArgs;
4488
5040
  };
4489
5041
  /**
4490
5042
  * UserCountOutputType without action
@@ -4609,6 +5161,18 @@ export type UserCountOutputTypeCountInitiatedTerminationsArgs<ExtArgs extends ru
4609
5161
  export type UserCountOutputTypeCountReviewedTerminationsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
4610
5162
  where?: Prisma.ContractTerminationWhereInput;
4611
5163
  };
5164
+ /**
5165
+ * UserCountOutputType without action
5166
+ */
5167
+ export type UserCountOutputTypeCountOfferLettersGeneratedArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
5168
+ where?: Prisma.OfferLetterWhereInput;
5169
+ };
5170
+ /**
5171
+ * UserCountOutputType without action
5172
+ */
5173
+ export type UserCountOutputTypeCountOfferLettersSentArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
5174
+ where?: Prisma.OfferLetterWhereInput;
5175
+ };
4612
5176
  export type UserSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
4613
5177
  id?: boolean;
4614
5178
  email?: boolean;
@@ -4648,6 +5212,8 @@ export type UserSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
4648
5212
  reviewedChangeRequests?: boolean | Prisma.User$reviewedChangeRequestsArgs<ExtArgs>;
4649
5213
  initiatedTerminations?: boolean | Prisma.User$initiatedTerminationsArgs<ExtArgs>;
4650
5214
  reviewedTerminations?: boolean | Prisma.User$reviewedTerminationsArgs<ExtArgs>;
5215
+ offerLettersGenerated?: boolean | Prisma.User$offerLettersGeneratedArgs<ExtArgs>;
5216
+ offerLettersSent?: boolean | Prisma.User$offerLettersSentArgs<ExtArgs>;
4651
5217
  _count?: boolean | Prisma.UserCountOutputTypeDefaultArgs<ExtArgs>;
4652
5218
  }, ExtArgs["result"]["user"]>;
4653
5219
  export type UserSelectScalar = {
@@ -4692,6 +5258,8 @@ export type UserInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs =
4692
5258
  reviewedChangeRequests?: boolean | Prisma.User$reviewedChangeRequestsArgs<ExtArgs>;
4693
5259
  initiatedTerminations?: boolean | Prisma.User$initiatedTerminationsArgs<ExtArgs>;
4694
5260
  reviewedTerminations?: boolean | Prisma.User$reviewedTerminationsArgs<ExtArgs>;
5261
+ offerLettersGenerated?: boolean | Prisma.User$offerLettersGeneratedArgs<ExtArgs>;
5262
+ offerLettersSent?: boolean | Prisma.User$offerLettersSentArgs<ExtArgs>;
4695
5263
  _count?: boolean | Prisma.UserCountOutputTypeDefaultArgs<ExtArgs>;
4696
5264
  };
4697
5265
  export type $UserPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
@@ -4718,6 +5286,8 @@ export type $UserPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs =
4718
5286
  reviewedChangeRequests: Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>[];
4719
5287
  initiatedTerminations: Prisma.$ContractTerminationPayload<ExtArgs>[];
4720
5288
  reviewedTerminations: Prisma.$ContractTerminationPayload<ExtArgs>[];
5289
+ offerLettersGenerated: Prisma.$OfferLetterPayload<ExtArgs>[];
5290
+ offerLettersSent: Prisma.$OfferLetterPayload<ExtArgs>[];
4721
5291
  };
4722
5292
  scalars: runtime.Types.Extensions.GetPayloadResult<{
4723
5293
  id: string;
@@ -5035,6 +5605,8 @@ export interface Prisma__UserClient<T, Null = never, ExtArgs extends runtime.Typ
5035
5605
  reviewedChangeRequests<T extends Prisma.User$reviewedChangeRequestsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$reviewedChangeRequestsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
5036
5606
  initiatedTerminations<T extends Prisma.User$initiatedTerminationsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$initiatedTerminationsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ContractTerminationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
5037
5607
  reviewedTerminations<T extends Prisma.User$reviewedTerminationsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$reviewedTerminationsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ContractTerminationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
5608
+ offerLettersGenerated<T extends Prisma.User$offerLettersGeneratedArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$offerLettersGeneratedArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$OfferLetterPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
5609
+ offerLettersSent<T extends Prisma.User$offerLettersSentArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$offerLettersSentArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$OfferLetterPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
5038
5610
  /**
5039
5611
  * Attaches callbacks for the resolution and/or rejection of the Promise.
5040
5612
  * @param onfulfilled The callback to execute when the Promise is resolved.
@@ -5877,6 +6449,52 @@ export type User$reviewedTerminationsArgs<ExtArgs extends runtime.Types.Extensio
5877
6449
  skip?: number;
5878
6450
  distinct?: Prisma.ContractTerminationScalarFieldEnum | Prisma.ContractTerminationScalarFieldEnum[];
5879
6451
  };
6452
+ /**
6453
+ * User.offerLettersGenerated
6454
+ */
6455
+ export type User$offerLettersGeneratedArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
6456
+ /**
6457
+ * Select specific fields to fetch from the OfferLetter
6458
+ */
6459
+ select?: Prisma.OfferLetterSelect<ExtArgs> | null;
6460
+ /**
6461
+ * Omit specific fields from the OfferLetter
6462
+ */
6463
+ omit?: Prisma.OfferLetterOmit<ExtArgs> | null;
6464
+ /**
6465
+ * Choose, which related nodes to fetch as well
6466
+ */
6467
+ include?: Prisma.OfferLetterInclude<ExtArgs> | null;
6468
+ where?: Prisma.OfferLetterWhereInput;
6469
+ orderBy?: Prisma.OfferLetterOrderByWithRelationInput | Prisma.OfferLetterOrderByWithRelationInput[];
6470
+ cursor?: Prisma.OfferLetterWhereUniqueInput;
6471
+ take?: number;
6472
+ skip?: number;
6473
+ distinct?: Prisma.OfferLetterScalarFieldEnum | Prisma.OfferLetterScalarFieldEnum[];
6474
+ };
6475
+ /**
6476
+ * User.offerLettersSent
6477
+ */
6478
+ export type User$offerLettersSentArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
6479
+ /**
6480
+ * Select specific fields to fetch from the OfferLetter
6481
+ */
6482
+ select?: Prisma.OfferLetterSelect<ExtArgs> | null;
6483
+ /**
6484
+ * Omit specific fields from the OfferLetter
6485
+ */
6486
+ omit?: Prisma.OfferLetterOmit<ExtArgs> | null;
6487
+ /**
6488
+ * Choose, which related nodes to fetch as well
6489
+ */
6490
+ include?: Prisma.OfferLetterInclude<ExtArgs> | null;
6491
+ where?: Prisma.OfferLetterWhereInput;
6492
+ orderBy?: Prisma.OfferLetterOrderByWithRelationInput | Prisma.OfferLetterOrderByWithRelationInput[];
6493
+ cursor?: Prisma.OfferLetterWhereUniqueInput;
6494
+ take?: number;
6495
+ skip?: number;
6496
+ distinct?: Prisma.OfferLetterScalarFieldEnum | Prisma.OfferLetterScalarFieldEnum[];
6497
+ };
5880
6498
  /**
5881
6499
  * User without action
5882
6500
  */