@valentine-efagene/qshelter-common 2.0.25 → 2.0.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. package/dist/generated/client/browser.d.ts +15 -0
  2. package/dist/generated/client/client.d.ts +15 -0
  3. package/dist/generated/client/commonInputTypes.d.ts +200 -0
  4. package/dist/generated/client/enums.d.ts +25 -1
  5. package/dist/generated/client/enums.js +22 -1
  6. package/dist/generated/client/internal/class.d.ts +33 -0
  7. package/dist/generated/client/internal/class.js +2 -2
  8. package/dist/generated/client/internal/prismaNamespace.d.ts +352 -1
  9. package/dist/generated/client/internal/prismaNamespace.js +120 -0
  10. package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +130 -0
  11. package/dist/generated/client/internal/prismaNamespaceBrowser.js +120 -0
  12. package/dist/generated/client/models/Contract.d.ts +511 -0
  13. package/dist/generated/client/models/DocumentRequirementRule.d.ts +2069 -0
  14. package/dist/generated/client/models/DocumentRequirementRule.js +1 -0
  15. package/dist/generated/client/models/PaymentMethodChangeRequest.d.ts +2820 -0
  16. package/dist/generated/client/models/PaymentMethodChangeRequest.js +1 -0
  17. package/dist/generated/client/models/Prequalification.d.ts +2339 -0
  18. package/dist/generated/client/models/Prequalification.js +1 -0
  19. package/dist/generated/client/models/Property.d.ts +211 -0
  20. package/dist/generated/client/models/PropertyPaymentMethod.d.ts +1139 -131
  21. package/dist/generated/client/models/Tenant.d.ts +441 -0
  22. package/dist/generated/client/models/User.d.ts +815 -0
  23. package/dist/generated/client/models.d.ts +3 -0
  24. package/package.json +1 -1
  25. package/prisma/migrations/20251230231217_add_prequalification_and_payment_method_change/migration.sql +137 -0
  26. package/prisma/schema.prisma +225 -5
@@ -250,6 +250,9 @@ export type UserWhereInput = {
250
250
  assignedSteps?: Prisma.ContractPhaseStepListRelationFilter;
251
251
  stepApprovals?: Prisma.ContractPhaseStepApprovalListRelationFilter;
252
252
  uploadedDocs?: Prisma.ContractDocumentListRelationFilter;
253
+ prequalifications?: Prisma.PrequalificationListRelationFilter;
254
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestListRelationFilter;
255
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestListRelationFilter;
253
256
  };
254
257
  export type UserOrderByWithRelationInput = {
255
258
  id?: Prisma.SortOrder;
@@ -285,6 +288,9 @@ export type UserOrderByWithRelationInput = {
285
288
  assignedSteps?: Prisma.ContractPhaseStepOrderByRelationAggregateInput;
286
289
  stepApprovals?: Prisma.ContractPhaseStepApprovalOrderByRelationAggregateInput;
287
290
  uploadedDocs?: Prisma.ContractDocumentOrderByRelationAggregateInput;
291
+ prequalifications?: Prisma.PrequalificationOrderByRelationAggregateInput;
292
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestOrderByRelationAggregateInput;
293
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestOrderByRelationAggregateInput;
288
294
  _relevance?: Prisma.UserOrderByRelevanceInput;
289
295
  };
290
296
  export type UserWhereUniqueInput = Prisma.AtLeast<{
@@ -324,6 +330,9 @@ export type UserWhereUniqueInput = Prisma.AtLeast<{
324
330
  assignedSteps?: Prisma.ContractPhaseStepListRelationFilter;
325
331
  stepApprovals?: Prisma.ContractPhaseStepApprovalListRelationFilter;
326
332
  uploadedDocs?: Prisma.ContractDocumentListRelationFilter;
333
+ prequalifications?: Prisma.PrequalificationListRelationFilter;
334
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestListRelationFilter;
335
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestListRelationFilter;
327
336
  }, "id" | "email" | "phone" | "walletId">;
328
337
  export type UserOrderByWithAggregationInput = {
329
338
  id?: Prisma.SortOrder;
@@ -401,6 +410,9 @@ export type UserCreateInput = {
401
410
  assignedSteps?: Prisma.ContractPhaseStepCreateNestedManyWithoutAssigneeInput;
402
411
  stepApprovals?: Prisma.ContractPhaseStepApprovalCreateNestedManyWithoutApproverInput;
403
412
  uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
413
+ prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
414
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
415
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
404
416
  };
405
417
  export type UserUncheckedCreateInput = {
406
418
  id?: string;
@@ -434,6 +446,9 @@ export type UserUncheckedCreateInput = {
434
446
  assignedSteps?: Prisma.ContractPhaseStepUncheckedCreateNestedManyWithoutAssigneeInput;
435
447
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
436
448
  uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
449
+ prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
450
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
451
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
437
452
  };
438
453
  export type UserUpdateInput = {
439
454
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -467,6 +482,9 @@ export type UserUpdateInput = {
467
482
  assignedSteps?: Prisma.ContractPhaseStepUpdateManyWithoutAssigneeNestedInput;
468
483
  stepApprovals?: Prisma.ContractPhaseStepApprovalUpdateManyWithoutApproverNestedInput;
469
484
  uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
485
+ prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
486
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
487
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
470
488
  };
471
489
  export type UserUncheckedUpdateInput = {
472
490
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -500,6 +518,9 @@ export type UserUncheckedUpdateInput = {
500
518
  assignedSteps?: Prisma.ContractPhaseStepUncheckedUpdateManyWithoutAssigneeNestedInput;
501
519
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
502
520
  uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
521
+ prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
522
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
523
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
503
524
  };
504
525
  export type UserCreateManyInput = {
505
526
  id?: string;
@@ -893,6 +914,44 @@ export type UserUpdateOneWithoutUploadedDocsNestedInput = {
893
914
  connect?: Prisma.UserWhereUniqueInput;
894
915
  update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutUploadedDocsInput, Prisma.UserUpdateWithoutUploadedDocsInput>, Prisma.UserUncheckedUpdateWithoutUploadedDocsInput>;
895
916
  };
917
+ export type UserCreateNestedOneWithoutPrequalificationsInput = {
918
+ create?: Prisma.XOR<Prisma.UserCreateWithoutPrequalificationsInput, Prisma.UserUncheckedCreateWithoutPrequalificationsInput>;
919
+ connectOrCreate?: Prisma.UserCreateOrConnectWithoutPrequalificationsInput;
920
+ connect?: Prisma.UserWhereUniqueInput;
921
+ };
922
+ export type UserUpdateOneRequiredWithoutPrequalificationsNestedInput = {
923
+ create?: Prisma.XOR<Prisma.UserCreateWithoutPrequalificationsInput, Prisma.UserUncheckedCreateWithoutPrequalificationsInput>;
924
+ connectOrCreate?: Prisma.UserCreateOrConnectWithoutPrequalificationsInput;
925
+ upsert?: Prisma.UserUpsertWithoutPrequalificationsInput;
926
+ connect?: Prisma.UserWhereUniqueInput;
927
+ update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutPrequalificationsInput, Prisma.UserUpdateWithoutPrequalificationsInput>, Prisma.UserUncheckedUpdateWithoutPrequalificationsInput>;
928
+ };
929
+ export type UserCreateNestedOneWithoutPaymentMethodChangeRequestsInput = {
930
+ create?: Prisma.XOR<Prisma.UserCreateWithoutPaymentMethodChangeRequestsInput, Prisma.UserUncheckedCreateWithoutPaymentMethodChangeRequestsInput>;
931
+ connectOrCreate?: Prisma.UserCreateOrConnectWithoutPaymentMethodChangeRequestsInput;
932
+ connect?: Prisma.UserWhereUniqueInput;
933
+ };
934
+ export type UserCreateNestedOneWithoutReviewedChangeRequestsInput = {
935
+ create?: Prisma.XOR<Prisma.UserCreateWithoutReviewedChangeRequestsInput, Prisma.UserUncheckedCreateWithoutReviewedChangeRequestsInput>;
936
+ connectOrCreate?: Prisma.UserCreateOrConnectWithoutReviewedChangeRequestsInput;
937
+ connect?: Prisma.UserWhereUniqueInput;
938
+ };
939
+ export type UserUpdateOneRequiredWithoutPaymentMethodChangeRequestsNestedInput = {
940
+ create?: Prisma.XOR<Prisma.UserCreateWithoutPaymentMethodChangeRequestsInput, Prisma.UserUncheckedCreateWithoutPaymentMethodChangeRequestsInput>;
941
+ connectOrCreate?: Prisma.UserCreateOrConnectWithoutPaymentMethodChangeRequestsInput;
942
+ upsert?: Prisma.UserUpsertWithoutPaymentMethodChangeRequestsInput;
943
+ connect?: Prisma.UserWhereUniqueInput;
944
+ update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutPaymentMethodChangeRequestsInput, Prisma.UserUpdateWithoutPaymentMethodChangeRequestsInput>, Prisma.UserUncheckedUpdateWithoutPaymentMethodChangeRequestsInput>;
945
+ };
946
+ export type UserUpdateOneWithoutReviewedChangeRequestsNestedInput = {
947
+ create?: Prisma.XOR<Prisma.UserCreateWithoutReviewedChangeRequestsInput, Prisma.UserUncheckedCreateWithoutReviewedChangeRequestsInput>;
948
+ connectOrCreate?: Prisma.UserCreateOrConnectWithoutReviewedChangeRequestsInput;
949
+ upsert?: Prisma.UserUpsertWithoutReviewedChangeRequestsInput;
950
+ disconnect?: Prisma.UserWhereInput | boolean;
951
+ delete?: Prisma.UserWhereInput | boolean;
952
+ connect?: Prisma.UserWhereUniqueInput;
953
+ update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutReviewedChangeRequestsInput, Prisma.UserUpdateWithoutReviewedChangeRequestsInput>, Prisma.UserUncheckedUpdateWithoutReviewedChangeRequestsInput>;
954
+ };
896
955
  export type UserCreateWithoutUserRolesInput = {
897
956
  id?: string;
898
957
  email: string;
@@ -924,6 +983,9 @@ export type UserCreateWithoutUserRolesInput = {
924
983
  assignedSteps?: Prisma.ContractPhaseStepCreateNestedManyWithoutAssigneeInput;
925
984
  stepApprovals?: Prisma.ContractPhaseStepApprovalCreateNestedManyWithoutApproverInput;
926
985
  uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
986
+ prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
987
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
988
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
927
989
  };
928
990
  export type UserUncheckedCreateWithoutUserRolesInput = {
929
991
  id?: string;
@@ -956,6 +1018,9 @@ export type UserUncheckedCreateWithoutUserRolesInput = {
956
1018
  assignedSteps?: Prisma.ContractPhaseStepUncheckedCreateNestedManyWithoutAssigneeInput;
957
1019
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
958
1020
  uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
1021
+ prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
1022
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
1023
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
959
1024
  };
960
1025
  export type UserCreateOrConnectWithoutUserRolesInput = {
961
1026
  where: Prisma.UserWhereUniqueInput;
@@ -1001,6 +1066,9 @@ export type UserUpdateWithoutUserRolesInput = {
1001
1066
  assignedSteps?: Prisma.ContractPhaseStepUpdateManyWithoutAssigneeNestedInput;
1002
1067
  stepApprovals?: Prisma.ContractPhaseStepApprovalUpdateManyWithoutApproverNestedInput;
1003
1068
  uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
1069
+ prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
1070
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
1071
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
1004
1072
  };
1005
1073
  export type UserUncheckedUpdateWithoutUserRolesInput = {
1006
1074
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1033,6 +1101,9 @@ export type UserUncheckedUpdateWithoutUserRolesInput = {
1033
1101
  assignedSteps?: Prisma.ContractPhaseStepUncheckedUpdateManyWithoutAssigneeNestedInput;
1034
1102
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
1035
1103
  uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
1104
+ prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
1105
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
1106
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
1036
1107
  };
1037
1108
  export type UserCreateWithoutTenantInput = {
1038
1109
  id?: string;
@@ -1065,6 +1136,9 @@ export type UserCreateWithoutTenantInput = {
1065
1136
  assignedSteps?: Prisma.ContractPhaseStepCreateNestedManyWithoutAssigneeInput;
1066
1137
  stepApprovals?: Prisma.ContractPhaseStepApprovalCreateNestedManyWithoutApproverInput;
1067
1138
  uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
1139
+ prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
1140
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
1141
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
1068
1142
  };
1069
1143
  export type UserUncheckedCreateWithoutTenantInput = {
1070
1144
  id?: string;
@@ -1097,6 +1171,9 @@ export type UserUncheckedCreateWithoutTenantInput = {
1097
1171
  assignedSteps?: Prisma.ContractPhaseStepUncheckedCreateNestedManyWithoutAssigneeInput;
1098
1172
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
1099
1173
  uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
1174
+ prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
1175
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
1176
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
1100
1177
  };
1101
1178
  export type UserCreateOrConnectWithoutTenantInput = {
1102
1179
  where: Prisma.UserWhereUniqueInput;
@@ -1172,6 +1249,9 @@ export type UserCreateWithoutRefreshTokensInput = {
1172
1249
  assignedSteps?: Prisma.ContractPhaseStepCreateNestedManyWithoutAssigneeInput;
1173
1250
  stepApprovals?: Prisma.ContractPhaseStepApprovalCreateNestedManyWithoutApproverInput;
1174
1251
  uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
1252
+ prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
1253
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
1254
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
1175
1255
  };
1176
1256
  export type UserUncheckedCreateWithoutRefreshTokensInput = {
1177
1257
  id?: string;
@@ -1204,6 +1284,9 @@ export type UserUncheckedCreateWithoutRefreshTokensInput = {
1204
1284
  assignedSteps?: Prisma.ContractPhaseStepUncheckedCreateNestedManyWithoutAssigneeInput;
1205
1285
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
1206
1286
  uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
1287
+ prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
1288
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
1289
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
1207
1290
  };
1208
1291
  export type UserCreateOrConnectWithoutRefreshTokensInput = {
1209
1292
  where: Prisma.UserWhereUniqueInput;
@@ -1249,6 +1332,9 @@ export type UserUpdateWithoutRefreshTokensInput = {
1249
1332
  assignedSteps?: Prisma.ContractPhaseStepUpdateManyWithoutAssigneeNestedInput;
1250
1333
  stepApprovals?: Prisma.ContractPhaseStepApprovalUpdateManyWithoutApproverNestedInput;
1251
1334
  uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
1335
+ prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
1336
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
1337
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
1252
1338
  };
1253
1339
  export type UserUncheckedUpdateWithoutRefreshTokensInput = {
1254
1340
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1281,6 +1367,9 @@ export type UserUncheckedUpdateWithoutRefreshTokensInput = {
1281
1367
  assignedSteps?: Prisma.ContractPhaseStepUncheckedUpdateManyWithoutAssigneeNestedInput;
1282
1368
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
1283
1369
  uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
1370
+ prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
1371
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
1372
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
1284
1373
  };
1285
1374
  export type UserCreateWithoutPasswordResetsInput = {
1286
1375
  id?: string;
@@ -1313,6 +1402,9 @@ export type UserCreateWithoutPasswordResetsInput = {
1313
1402
  assignedSteps?: Prisma.ContractPhaseStepCreateNestedManyWithoutAssigneeInput;
1314
1403
  stepApprovals?: Prisma.ContractPhaseStepApprovalCreateNestedManyWithoutApproverInput;
1315
1404
  uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
1405
+ prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
1406
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
1407
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
1316
1408
  };
1317
1409
  export type UserUncheckedCreateWithoutPasswordResetsInput = {
1318
1410
  id?: string;
@@ -1345,6 +1437,9 @@ export type UserUncheckedCreateWithoutPasswordResetsInput = {
1345
1437
  assignedSteps?: Prisma.ContractPhaseStepUncheckedCreateNestedManyWithoutAssigneeInput;
1346
1438
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
1347
1439
  uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
1440
+ prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
1441
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
1442
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
1348
1443
  };
1349
1444
  export type UserCreateOrConnectWithoutPasswordResetsInput = {
1350
1445
  where: Prisma.UserWhereUniqueInput;
@@ -1390,6 +1485,9 @@ export type UserUpdateWithoutPasswordResetsInput = {
1390
1485
  assignedSteps?: Prisma.ContractPhaseStepUpdateManyWithoutAssigneeNestedInput;
1391
1486
  stepApprovals?: Prisma.ContractPhaseStepApprovalUpdateManyWithoutApproverNestedInput;
1392
1487
  uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
1488
+ prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
1489
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
1490
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
1393
1491
  };
1394
1492
  export type UserUncheckedUpdateWithoutPasswordResetsInput = {
1395
1493
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1422,6 +1520,9 @@ export type UserUncheckedUpdateWithoutPasswordResetsInput = {
1422
1520
  assignedSteps?: Prisma.ContractPhaseStepUncheckedUpdateManyWithoutAssigneeNestedInput;
1423
1521
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
1424
1522
  uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
1523
+ prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
1524
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
1525
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
1425
1526
  };
1426
1527
  export type UserCreateWithoutSuspensionsInput = {
1427
1528
  id?: string;
@@ -1454,6 +1555,9 @@ export type UserCreateWithoutSuspensionsInput = {
1454
1555
  assignedSteps?: Prisma.ContractPhaseStepCreateNestedManyWithoutAssigneeInput;
1455
1556
  stepApprovals?: Prisma.ContractPhaseStepApprovalCreateNestedManyWithoutApproverInput;
1456
1557
  uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
1558
+ prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
1559
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
1560
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
1457
1561
  };
1458
1562
  export type UserUncheckedCreateWithoutSuspensionsInput = {
1459
1563
  id?: string;
@@ -1486,6 +1590,9 @@ export type UserUncheckedCreateWithoutSuspensionsInput = {
1486
1590
  assignedSteps?: Prisma.ContractPhaseStepUncheckedCreateNestedManyWithoutAssigneeInput;
1487
1591
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
1488
1592
  uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
1593
+ prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
1594
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
1595
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
1489
1596
  };
1490
1597
  export type UserCreateOrConnectWithoutSuspensionsInput = {
1491
1598
  where: Prisma.UserWhereUniqueInput;
@@ -1531,6 +1638,9 @@ export type UserUpdateWithoutSuspensionsInput = {
1531
1638
  assignedSteps?: Prisma.ContractPhaseStepUpdateManyWithoutAssigneeNestedInput;
1532
1639
  stepApprovals?: Prisma.ContractPhaseStepApprovalUpdateManyWithoutApproverNestedInput;
1533
1640
  uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
1641
+ prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
1642
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
1643
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
1534
1644
  };
1535
1645
  export type UserUncheckedUpdateWithoutSuspensionsInput = {
1536
1646
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1563,6 +1673,9 @@ export type UserUncheckedUpdateWithoutSuspensionsInput = {
1563
1673
  assignedSteps?: Prisma.ContractPhaseStepUncheckedUpdateManyWithoutAssigneeNestedInput;
1564
1674
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
1565
1675
  uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
1676
+ prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
1677
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
1678
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
1566
1679
  };
1567
1680
  export type UserCreateWithoutEmailPreferencesInput = {
1568
1681
  id?: string;
@@ -1595,6 +1708,9 @@ export type UserCreateWithoutEmailPreferencesInput = {
1595
1708
  assignedSteps?: Prisma.ContractPhaseStepCreateNestedManyWithoutAssigneeInput;
1596
1709
  stepApprovals?: Prisma.ContractPhaseStepApprovalCreateNestedManyWithoutApproverInput;
1597
1710
  uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
1711
+ prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
1712
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
1713
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
1598
1714
  };
1599
1715
  export type UserUncheckedCreateWithoutEmailPreferencesInput = {
1600
1716
  id?: string;
@@ -1627,6 +1743,9 @@ export type UserUncheckedCreateWithoutEmailPreferencesInput = {
1627
1743
  assignedSteps?: Prisma.ContractPhaseStepUncheckedCreateNestedManyWithoutAssigneeInput;
1628
1744
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
1629
1745
  uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
1746
+ prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
1747
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
1748
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
1630
1749
  };
1631
1750
  export type UserCreateOrConnectWithoutEmailPreferencesInput = {
1632
1751
  where: Prisma.UserWhereUniqueInput;
@@ -1672,6 +1791,9 @@ export type UserUpdateWithoutEmailPreferencesInput = {
1672
1791
  assignedSteps?: Prisma.ContractPhaseStepUpdateManyWithoutAssigneeNestedInput;
1673
1792
  stepApprovals?: Prisma.ContractPhaseStepApprovalUpdateManyWithoutApproverNestedInput;
1674
1793
  uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
1794
+ prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
1795
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
1796
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
1675
1797
  };
1676
1798
  export type UserUncheckedUpdateWithoutEmailPreferencesInput = {
1677
1799
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1704,6 +1826,9 @@ export type UserUncheckedUpdateWithoutEmailPreferencesInput = {
1704
1826
  assignedSteps?: Prisma.ContractPhaseStepUncheckedUpdateManyWithoutAssigneeNestedInput;
1705
1827
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
1706
1828
  uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
1829
+ prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
1830
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
1831
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
1707
1832
  };
1708
1833
  export type UserCreateWithoutDeviceEndpointsInput = {
1709
1834
  id?: string;
@@ -1736,6 +1861,9 @@ export type UserCreateWithoutDeviceEndpointsInput = {
1736
1861
  assignedSteps?: Prisma.ContractPhaseStepCreateNestedManyWithoutAssigneeInput;
1737
1862
  stepApprovals?: Prisma.ContractPhaseStepApprovalCreateNestedManyWithoutApproverInput;
1738
1863
  uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
1864
+ prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
1865
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
1866
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
1739
1867
  };
1740
1868
  export type UserUncheckedCreateWithoutDeviceEndpointsInput = {
1741
1869
  id?: string;
@@ -1768,6 +1896,9 @@ export type UserUncheckedCreateWithoutDeviceEndpointsInput = {
1768
1896
  assignedSteps?: Prisma.ContractPhaseStepUncheckedCreateNestedManyWithoutAssigneeInput;
1769
1897
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
1770
1898
  uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
1899
+ prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
1900
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
1901
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
1771
1902
  };
1772
1903
  export type UserCreateOrConnectWithoutDeviceEndpointsInput = {
1773
1904
  where: Prisma.UserWhereUniqueInput;
@@ -1813,6 +1944,9 @@ export type UserUpdateWithoutDeviceEndpointsInput = {
1813
1944
  assignedSteps?: Prisma.ContractPhaseStepUpdateManyWithoutAssigneeNestedInput;
1814
1945
  stepApprovals?: Prisma.ContractPhaseStepApprovalUpdateManyWithoutApproverNestedInput;
1815
1946
  uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
1947
+ prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
1948
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
1949
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
1816
1950
  };
1817
1951
  export type UserUncheckedUpdateWithoutDeviceEndpointsInput = {
1818
1952
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1845,6 +1979,9 @@ export type UserUncheckedUpdateWithoutDeviceEndpointsInput = {
1845
1979
  assignedSteps?: Prisma.ContractPhaseStepUncheckedUpdateManyWithoutAssigneeNestedInput;
1846
1980
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
1847
1981
  uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
1982
+ prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
1983
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
1984
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
1848
1985
  };
1849
1986
  export type UserCreateWithoutSocialsInput = {
1850
1987
  id?: string;
@@ -1877,6 +2014,9 @@ export type UserCreateWithoutSocialsInput = {
1877
2014
  assignedSteps?: Prisma.ContractPhaseStepCreateNestedManyWithoutAssigneeInput;
1878
2015
  stepApprovals?: Prisma.ContractPhaseStepApprovalCreateNestedManyWithoutApproverInput;
1879
2016
  uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
2017
+ prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
2018
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
2019
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
1880
2020
  };
1881
2021
  export type UserUncheckedCreateWithoutSocialsInput = {
1882
2022
  id?: string;
@@ -1909,6 +2049,9 @@ export type UserUncheckedCreateWithoutSocialsInput = {
1909
2049
  assignedSteps?: Prisma.ContractPhaseStepUncheckedCreateNestedManyWithoutAssigneeInput;
1910
2050
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
1911
2051
  uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
2052
+ prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
2053
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
2054
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
1912
2055
  };
1913
2056
  export type UserCreateOrConnectWithoutSocialsInput = {
1914
2057
  where: Prisma.UserWhereUniqueInput;
@@ -1954,6 +2097,9 @@ export type UserUpdateWithoutSocialsInput = {
1954
2097
  assignedSteps?: Prisma.ContractPhaseStepUpdateManyWithoutAssigneeNestedInput;
1955
2098
  stepApprovals?: Prisma.ContractPhaseStepApprovalUpdateManyWithoutApproverNestedInput;
1956
2099
  uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
2100
+ prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
2101
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
2102
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
1957
2103
  };
1958
2104
  export type UserUncheckedUpdateWithoutSocialsInput = {
1959
2105
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1986,6 +2132,9 @@ export type UserUncheckedUpdateWithoutSocialsInput = {
1986
2132
  assignedSteps?: Prisma.ContractPhaseStepUncheckedUpdateManyWithoutAssigneeNestedInput;
1987
2133
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
1988
2134
  uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
2135
+ prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
2136
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
2137
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
1989
2138
  };
1990
2139
  export type UserCreateWithoutWalletInput = {
1991
2140
  id?: string;
@@ -2018,6 +2167,9 @@ export type UserCreateWithoutWalletInput = {
2018
2167
  assignedSteps?: Prisma.ContractPhaseStepCreateNestedManyWithoutAssigneeInput;
2019
2168
  stepApprovals?: Prisma.ContractPhaseStepApprovalCreateNestedManyWithoutApproverInput;
2020
2169
  uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
2170
+ prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
2171
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
2172
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
2021
2173
  };
2022
2174
  export type UserUncheckedCreateWithoutWalletInput = {
2023
2175
  id?: string;
@@ -2050,6 +2202,9 @@ export type UserUncheckedCreateWithoutWalletInput = {
2050
2202
  assignedSteps?: Prisma.ContractPhaseStepUncheckedCreateNestedManyWithoutAssigneeInput;
2051
2203
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
2052
2204
  uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
2205
+ prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
2206
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
2207
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
2053
2208
  };
2054
2209
  export type UserCreateOrConnectWithoutWalletInput = {
2055
2210
  where: Prisma.UserWhereUniqueInput;
@@ -2095,6 +2250,9 @@ export type UserUpdateWithoutWalletInput = {
2095
2250
  assignedSteps?: Prisma.ContractPhaseStepUpdateManyWithoutAssigneeNestedInput;
2096
2251
  stepApprovals?: Prisma.ContractPhaseStepApprovalUpdateManyWithoutApproverNestedInput;
2097
2252
  uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
2253
+ prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
2254
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
2255
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
2098
2256
  };
2099
2257
  export type UserUncheckedUpdateWithoutWalletInput = {
2100
2258
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -2127,6 +2285,9 @@ export type UserUncheckedUpdateWithoutWalletInput = {
2127
2285
  assignedSteps?: Prisma.ContractPhaseStepUncheckedUpdateManyWithoutAssigneeNestedInput;
2128
2286
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
2129
2287
  uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
2288
+ prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
2289
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
2290
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
2130
2291
  };
2131
2292
  export type UserCreateWithoutPropertiesInput = {
2132
2293
  id?: string;
@@ -2159,6 +2320,9 @@ export type UserCreateWithoutPropertiesInput = {
2159
2320
  assignedSteps?: Prisma.ContractPhaseStepCreateNestedManyWithoutAssigneeInput;
2160
2321
  stepApprovals?: Prisma.ContractPhaseStepApprovalCreateNestedManyWithoutApproverInput;
2161
2322
  uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
2323
+ prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
2324
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
2325
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
2162
2326
  };
2163
2327
  export type UserUncheckedCreateWithoutPropertiesInput = {
2164
2328
  id?: string;
@@ -2191,6 +2355,9 @@ export type UserUncheckedCreateWithoutPropertiesInput = {
2191
2355
  assignedSteps?: Prisma.ContractPhaseStepUncheckedCreateNestedManyWithoutAssigneeInput;
2192
2356
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
2193
2357
  uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
2358
+ prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
2359
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
2360
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
2194
2361
  };
2195
2362
  export type UserCreateOrConnectWithoutPropertiesInput = {
2196
2363
  where: Prisma.UserWhereUniqueInput;
@@ -2236,6 +2403,9 @@ export type UserUpdateWithoutPropertiesInput = {
2236
2403
  assignedSteps?: Prisma.ContractPhaseStepUpdateManyWithoutAssigneeNestedInput;
2237
2404
  stepApprovals?: Prisma.ContractPhaseStepApprovalUpdateManyWithoutApproverNestedInput;
2238
2405
  uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
2406
+ prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
2407
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
2408
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
2239
2409
  };
2240
2410
  export type UserUncheckedUpdateWithoutPropertiesInput = {
2241
2411
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -2268,6 +2438,9 @@ export type UserUncheckedUpdateWithoutPropertiesInput = {
2268
2438
  assignedSteps?: Prisma.ContractPhaseStepUncheckedUpdateManyWithoutAssigneeNestedInput;
2269
2439
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
2270
2440
  uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
2441
+ prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
2442
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
2443
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
2271
2444
  };
2272
2445
  export type UserCreateWithoutContractsInput = {
2273
2446
  id?: string;
@@ -2300,6 +2473,9 @@ export type UserCreateWithoutContractsInput = {
2300
2473
  assignedSteps?: Prisma.ContractPhaseStepCreateNestedManyWithoutAssigneeInput;
2301
2474
  stepApprovals?: Prisma.ContractPhaseStepApprovalCreateNestedManyWithoutApproverInput;
2302
2475
  uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
2476
+ prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
2477
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
2478
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
2303
2479
  };
2304
2480
  export type UserUncheckedCreateWithoutContractsInput = {
2305
2481
  id?: string;
@@ -2332,6 +2508,9 @@ export type UserUncheckedCreateWithoutContractsInput = {
2332
2508
  assignedSteps?: Prisma.ContractPhaseStepUncheckedCreateNestedManyWithoutAssigneeInput;
2333
2509
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
2334
2510
  uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
2511
+ prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
2512
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
2513
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
2335
2514
  };
2336
2515
  export type UserCreateOrConnectWithoutContractsInput = {
2337
2516
  where: Prisma.UserWhereUniqueInput;
@@ -2368,6 +2547,9 @@ export type UserCreateWithoutSoldContractsInput = {
2368
2547
  assignedSteps?: Prisma.ContractPhaseStepCreateNestedManyWithoutAssigneeInput;
2369
2548
  stepApprovals?: Prisma.ContractPhaseStepApprovalCreateNestedManyWithoutApproverInput;
2370
2549
  uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
2550
+ prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
2551
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
2552
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
2371
2553
  };
2372
2554
  export type UserUncheckedCreateWithoutSoldContractsInput = {
2373
2555
  id?: string;
@@ -2400,6 +2582,9 @@ export type UserUncheckedCreateWithoutSoldContractsInput = {
2400
2582
  assignedSteps?: Prisma.ContractPhaseStepUncheckedCreateNestedManyWithoutAssigneeInput;
2401
2583
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
2402
2584
  uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
2585
+ prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
2586
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
2587
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
2403
2588
  };
2404
2589
  export type UserCreateOrConnectWithoutSoldContractsInput = {
2405
2590
  where: Prisma.UserWhereUniqueInput;
@@ -2445,6 +2630,9 @@ export type UserUpdateWithoutContractsInput = {
2445
2630
  assignedSteps?: Prisma.ContractPhaseStepUpdateManyWithoutAssigneeNestedInput;
2446
2631
  stepApprovals?: Prisma.ContractPhaseStepApprovalUpdateManyWithoutApproverNestedInput;
2447
2632
  uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
2633
+ prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
2634
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
2635
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
2448
2636
  };
2449
2637
  export type UserUncheckedUpdateWithoutContractsInput = {
2450
2638
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -2477,6 +2665,9 @@ export type UserUncheckedUpdateWithoutContractsInput = {
2477
2665
  assignedSteps?: Prisma.ContractPhaseStepUncheckedUpdateManyWithoutAssigneeNestedInput;
2478
2666
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
2479
2667
  uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
2668
+ prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
2669
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
2670
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
2480
2671
  };
2481
2672
  export type UserUpsertWithoutSoldContractsInput = {
2482
2673
  update: Prisma.XOR<Prisma.UserUpdateWithoutSoldContractsInput, Prisma.UserUncheckedUpdateWithoutSoldContractsInput>;
@@ -2518,6 +2709,9 @@ export type UserUpdateWithoutSoldContractsInput = {
2518
2709
  assignedSteps?: Prisma.ContractPhaseStepUpdateManyWithoutAssigneeNestedInput;
2519
2710
  stepApprovals?: Prisma.ContractPhaseStepApprovalUpdateManyWithoutApproverNestedInput;
2520
2711
  uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
2712
+ prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
2713
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
2714
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
2521
2715
  };
2522
2716
  export type UserUncheckedUpdateWithoutSoldContractsInput = {
2523
2717
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -2550,6 +2744,9 @@ export type UserUncheckedUpdateWithoutSoldContractsInput = {
2550
2744
  assignedSteps?: Prisma.ContractPhaseStepUncheckedUpdateManyWithoutAssigneeNestedInput;
2551
2745
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
2552
2746
  uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
2747
+ prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
2748
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
2749
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
2553
2750
  };
2554
2751
  export type UserCreateWithoutAssignedStepsInput = {
2555
2752
  id?: string;
@@ -2582,6 +2779,9 @@ export type UserCreateWithoutAssignedStepsInput = {
2582
2779
  contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
2583
2780
  stepApprovals?: Prisma.ContractPhaseStepApprovalCreateNestedManyWithoutApproverInput;
2584
2781
  uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
2782
+ prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
2783
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
2784
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
2585
2785
  };
2586
2786
  export type UserUncheckedCreateWithoutAssignedStepsInput = {
2587
2787
  id?: string;
@@ -2614,6 +2814,9 @@ export type UserUncheckedCreateWithoutAssignedStepsInput = {
2614
2814
  contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
2615
2815
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
2616
2816
  uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
2817
+ prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
2818
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
2819
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
2617
2820
  };
2618
2821
  export type UserCreateOrConnectWithoutAssignedStepsInput = {
2619
2822
  where: Prisma.UserWhereUniqueInput;
@@ -2659,6 +2862,9 @@ export type UserUpdateWithoutAssignedStepsInput = {
2659
2862
  contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
2660
2863
  stepApprovals?: Prisma.ContractPhaseStepApprovalUpdateManyWithoutApproverNestedInput;
2661
2864
  uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
2865
+ prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
2866
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
2867
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
2662
2868
  };
2663
2869
  export type UserUncheckedUpdateWithoutAssignedStepsInput = {
2664
2870
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -2691,6 +2897,9 @@ export type UserUncheckedUpdateWithoutAssignedStepsInput = {
2691
2897
  contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
2692
2898
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
2693
2899
  uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
2900
+ prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
2901
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
2902
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
2694
2903
  };
2695
2904
  export type UserCreateWithoutStepApprovalsInput = {
2696
2905
  id?: string;
@@ -2723,6 +2932,9 @@ export type UserCreateWithoutStepApprovalsInput = {
2723
2932
  contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
2724
2933
  assignedSteps?: Prisma.ContractPhaseStepCreateNestedManyWithoutAssigneeInput;
2725
2934
  uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
2935
+ prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
2936
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
2937
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
2726
2938
  };
2727
2939
  export type UserUncheckedCreateWithoutStepApprovalsInput = {
2728
2940
  id?: string;
@@ -2755,6 +2967,9 @@ export type UserUncheckedCreateWithoutStepApprovalsInput = {
2755
2967
  contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
2756
2968
  assignedSteps?: Prisma.ContractPhaseStepUncheckedCreateNestedManyWithoutAssigneeInput;
2757
2969
  uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
2970
+ prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
2971
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
2972
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
2758
2973
  };
2759
2974
  export type UserCreateOrConnectWithoutStepApprovalsInput = {
2760
2975
  where: Prisma.UserWhereUniqueInput;
@@ -2800,6 +3015,9 @@ export type UserUpdateWithoutStepApprovalsInput = {
2800
3015
  contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
2801
3016
  assignedSteps?: Prisma.ContractPhaseStepUpdateManyWithoutAssigneeNestedInput;
2802
3017
  uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
3018
+ prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
3019
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
3020
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
2803
3021
  };
2804
3022
  export type UserUncheckedUpdateWithoutStepApprovalsInput = {
2805
3023
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -2832,6 +3050,9 @@ export type UserUncheckedUpdateWithoutStepApprovalsInput = {
2832
3050
  contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
2833
3051
  assignedSteps?: Prisma.ContractPhaseStepUncheckedUpdateManyWithoutAssigneeNestedInput;
2834
3052
  uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
3053
+ prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
3054
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
3055
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
2835
3056
  };
2836
3057
  export type UserCreateWithoutContractPaymentsInput = {
2837
3058
  id?: string;
@@ -2864,6 +3085,9 @@ export type UserCreateWithoutContractPaymentsInput = {
2864
3085
  assignedSteps?: Prisma.ContractPhaseStepCreateNestedManyWithoutAssigneeInput;
2865
3086
  stepApprovals?: Prisma.ContractPhaseStepApprovalCreateNestedManyWithoutApproverInput;
2866
3087
  uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
3088
+ prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
3089
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
3090
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
2867
3091
  };
2868
3092
  export type UserUncheckedCreateWithoutContractPaymentsInput = {
2869
3093
  id?: string;
@@ -2896,6 +3120,9 @@ export type UserUncheckedCreateWithoutContractPaymentsInput = {
2896
3120
  assignedSteps?: Prisma.ContractPhaseStepUncheckedCreateNestedManyWithoutAssigneeInput;
2897
3121
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
2898
3122
  uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
3123
+ prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
3124
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
3125
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
2899
3126
  };
2900
3127
  export type UserCreateOrConnectWithoutContractPaymentsInput = {
2901
3128
  where: Prisma.UserWhereUniqueInput;
@@ -2941,6 +3168,9 @@ export type UserUpdateWithoutContractPaymentsInput = {
2941
3168
  assignedSteps?: Prisma.ContractPhaseStepUpdateManyWithoutAssigneeNestedInput;
2942
3169
  stepApprovals?: Prisma.ContractPhaseStepApprovalUpdateManyWithoutApproverNestedInput;
2943
3170
  uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
3171
+ prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
3172
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
3173
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
2944
3174
  };
2945
3175
  export type UserUncheckedUpdateWithoutContractPaymentsInput = {
2946
3176
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -2973,6 +3203,9 @@ export type UserUncheckedUpdateWithoutContractPaymentsInput = {
2973
3203
  assignedSteps?: Prisma.ContractPhaseStepUncheckedUpdateManyWithoutAssigneeNestedInput;
2974
3204
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
2975
3205
  uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
3206
+ prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
3207
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
3208
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
2976
3209
  };
2977
3210
  export type UserCreateWithoutUploadedDocsInput = {
2978
3211
  id?: string;
@@ -3005,6 +3238,9 @@ export type UserCreateWithoutUploadedDocsInput = {
3005
3238
  contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
3006
3239
  assignedSteps?: Prisma.ContractPhaseStepCreateNestedManyWithoutAssigneeInput;
3007
3240
  stepApprovals?: Prisma.ContractPhaseStepApprovalCreateNestedManyWithoutApproverInput;
3241
+ prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
3242
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
3243
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
3008
3244
  };
3009
3245
  export type UserUncheckedCreateWithoutUploadedDocsInput = {
3010
3246
  id?: string;
@@ -3037,6 +3273,9 @@ export type UserUncheckedCreateWithoutUploadedDocsInput = {
3037
3273
  contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
3038
3274
  assignedSteps?: Prisma.ContractPhaseStepUncheckedCreateNestedManyWithoutAssigneeInput;
3039
3275
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
3276
+ prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
3277
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
3278
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
3040
3279
  };
3041
3280
  export type UserCreateOrConnectWithoutUploadedDocsInput = {
3042
3281
  where: Prisma.UserWhereUniqueInput;
@@ -3082,6 +3321,9 @@ export type UserUpdateWithoutUploadedDocsInput = {
3082
3321
  contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
3083
3322
  assignedSteps?: Prisma.ContractPhaseStepUpdateManyWithoutAssigneeNestedInput;
3084
3323
  stepApprovals?: Prisma.ContractPhaseStepApprovalUpdateManyWithoutApproverNestedInput;
3324
+ prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
3325
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
3326
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
3085
3327
  };
3086
3328
  export type UserUncheckedUpdateWithoutUploadedDocsInput = {
3087
3329
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -3114,6 +3356,468 @@ export type UserUncheckedUpdateWithoutUploadedDocsInput = {
3114
3356
  contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
3115
3357
  assignedSteps?: Prisma.ContractPhaseStepUncheckedUpdateManyWithoutAssigneeNestedInput;
3116
3358
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
3359
+ prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
3360
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
3361
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
3362
+ };
3363
+ export type UserCreateWithoutPrequalificationsInput = {
3364
+ id?: string;
3365
+ email: string;
3366
+ password?: string | null;
3367
+ phone?: string | null;
3368
+ firstName?: string | null;
3369
+ lastName?: string | null;
3370
+ isActive?: boolean;
3371
+ isEmailVerified?: boolean;
3372
+ googleId?: string | null;
3373
+ avatar?: string | null;
3374
+ createdAt?: Date | string;
3375
+ updatedAt?: Date | string;
3376
+ emailVerifiedAt?: Date | string | null;
3377
+ emailVerificationToken?: string | null;
3378
+ lastLoginAt?: Date | string | null;
3379
+ tenant?: Prisma.TenantCreateNestedOneWithoutUsersInput;
3380
+ userRoles?: Prisma.UserRoleCreateNestedManyWithoutUserInput;
3381
+ wallet?: Prisma.WalletCreateNestedOneWithoutUserInput;
3382
+ refreshTokens?: Prisma.RefreshTokenCreateNestedManyWithoutUserInput;
3383
+ passwordResets?: Prisma.PasswordResetCreateNestedManyWithoutUserInput;
3384
+ suspensions?: Prisma.UserSuspensionCreateNestedManyWithoutUserInput;
3385
+ emailPreferences?: Prisma.EmailPreferenceCreateNestedManyWithoutUserInput;
3386
+ deviceEndpoints?: Prisma.DeviceEndpointCreateNestedManyWithoutUserInput;
3387
+ socials?: Prisma.SocialCreateNestedManyWithoutUserInput;
3388
+ properties?: Prisma.PropertyCreateNestedManyWithoutUserInput;
3389
+ contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
3390
+ soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
3391
+ contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
3392
+ assignedSteps?: Prisma.ContractPhaseStepCreateNestedManyWithoutAssigneeInput;
3393
+ stepApprovals?: Prisma.ContractPhaseStepApprovalCreateNestedManyWithoutApproverInput;
3394
+ uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
3395
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
3396
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
3397
+ };
3398
+ export type UserUncheckedCreateWithoutPrequalificationsInput = {
3399
+ id?: string;
3400
+ email: string;
3401
+ password?: string | null;
3402
+ phone?: string | null;
3403
+ firstName?: string | null;
3404
+ lastName?: string | null;
3405
+ isActive?: boolean;
3406
+ isEmailVerified?: boolean;
3407
+ googleId?: string | null;
3408
+ avatar?: string | null;
3409
+ tenantId?: string | null;
3410
+ walletId?: string | null;
3411
+ createdAt?: Date | string;
3412
+ updatedAt?: Date | string;
3413
+ emailVerifiedAt?: Date | string | null;
3414
+ emailVerificationToken?: string | null;
3415
+ lastLoginAt?: Date | string | null;
3416
+ userRoles?: Prisma.UserRoleUncheckedCreateNestedManyWithoutUserInput;
3417
+ refreshTokens?: Prisma.RefreshTokenUncheckedCreateNestedManyWithoutUserInput;
3418
+ passwordResets?: Prisma.PasswordResetUncheckedCreateNestedManyWithoutUserInput;
3419
+ suspensions?: Prisma.UserSuspensionUncheckedCreateNestedManyWithoutUserInput;
3420
+ emailPreferences?: Prisma.EmailPreferenceUncheckedCreateNestedManyWithoutUserInput;
3421
+ deviceEndpoints?: Prisma.DeviceEndpointUncheckedCreateNestedManyWithoutUserInput;
3422
+ socials?: Prisma.SocialUncheckedCreateNestedManyWithoutUserInput;
3423
+ properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutUserInput;
3424
+ contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
3425
+ soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
3426
+ contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
3427
+ assignedSteps?: Prisma.ContractPhaseStepUncheckedCreateNestedManyWithoutAssigneeInput;
3428
+ stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
3429
+ uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
3430
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
3431
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
3432
+ };
3433
+ export type UserCreateOrConnectWithoutPrequalificationsInput = {
3434
+ where: Prisma.UserWhereUniqueInput;
3435
+ create: Prisma.XOR<Prisma.UserCreateWithoutPrequalificationsInput, Prisma.UserUncheckedCreateWithoutPrequalificationsInput>;
3436
+ };
3437
+ export type UserUpsertWithoutPrequalificationsInput = {
3438
+ update: Prisma.XOR<Prisma.UserUpdateWithoutPrequalificationsInput, Prisma.UserUncheckedUpdateWithoutPrequalificationsInput>;
3439
+ create: Prisma.XOR<Prisma.UserCreateWithoutPrequalificationsInput, Prisma.UserUncheckedCreateWithoutPrequalificationsInput>;
3440
+ where?: Prisma.UserWhereInput;
3441
+ };
3442
+ export type UserUpdateToOneWithWhereWithoutPrequalificationsInput = {
3443
+ where?: Prisma.UserWhereInput;
3444
+ data: Prisma.XOR<Prisma.UserUpdateWithoutPrequalificationsInput, Prisma.UserUncheckedUpdateWithoutPrequalificationsInput>;
3445
+ };
3446
+ export type UserUpdateWithoutPrequalificationsInput = {
3447
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
3448
+ email?: Prisma.StringFieldUpdateOperationsInput | string;
3449
+ password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3450
+ phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3451
+ firstName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3452
+ lastName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3453
+ isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
3454
+ isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
3455
+ googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3456
+ avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3457
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
3458
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
3459
+ emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
3460
+ emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3461
+ lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
3462
+ tenant?: Prisma.TenantUpdateOneWithoutUsersNestedInput;
3463
+ userRoles?: Prisma.UserRoleUpdateManyWithoutUserNestedInput;
3464
+ wallet?: Prisma.WalletUpdateOneWithoutUserNestedInput;
3465
+ refreshTokens?: Prisma.RefreshTokenUpdateManyWithoutUserNestedInput;
3466
+ passwordResets?: Prisma.PasswordResetUpdateManyWithoutUserNestedInput;
3467
+ suspensions?: Prisma.UserSuspensionUpdateManyWithoutUserNestedInput;
3468
+ emailPreferences?: Prisma.EmailPreferenceUpdateManyWithoutUserNestedInput;
3469
+ deviceEndpoints?: Prisma.DeviceEndpointUpdateManyWithoutUserNestedInput;
3470
+ socials?: Prisma.SocialUpdateManyWithoutUserNestedInput;
3471
+ properties?: Prisma.PropertyUpdateManyWithoutUserNestedInput;
3472
+ contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
3473
+ soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
3474
+ contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
3475
+ assignedSteps?: Prisma.ContractPhaseStepUpdateManyWithoutAssigneeNestedInput;
3476
+ stepApprovals?: Prisma.ContractPhaseStepApprovalUpdateManyWithoutApproverNestedInput;
3477
+ uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
3478
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
3479
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
3480
+ };
3481
+ export type UserUncheckedUpdateWithoutPrequalificationsInput = {
3482
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
3483
+ email?: Prisma.StringFieldUpdateOperationsInput | string;
3484
+ password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3485
+ phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3486
+ firstName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3487
+ lastName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3488
+ isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
3489
+ isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
3490
+ googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3491
+ avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3492
+ tenantId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3493
+ walletId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3494
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
3495
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
3496
+ emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
3497
+ emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3498
+ lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
3499
+ userRoles?: Prisma.UserRoleUncheckedUpdateManyWithoutUserNestedInput;
3500
+ refreshTokens?: Prisma.RefreshTokenUncheckedUpdateManyWithoutUserNestedInput;
3501
+ passwordResets?: Prisma.PasswordResetUncheckedUpdateManyWithoutUserNestedInput;
3502
+ suspensions?: Prisma.UserSuspensionUncheckedUpdateManyWithoutUserNestedInput;
3503
+ emailPreferences?: Prisma.EmailPreferenceUncheckedUpdateManyWithoutUserNestedInput;
3504
+ deviceEndpoints?: Prisma.DeviceEndpointUncheckedUpdateManyWithoutUserNestedInput;
3505
+ socials?: Prisma.SocialUncheckedUpdateManyWithoutUserNestedInput;
3506
+ properties?: Prisma.PropertyUncheckedUpdateManyWithoutUserNestedInput;
3507
+ contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
3508
+ soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
3509
+ contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
3510
+ assignedSteps?: Prisma.ContractPhaseStepUncheckedUpdateManyWithoutAssigneeNestedInput;
3511
+ stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
3512
+ uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
3513
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
3514
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
3515
+ };
3516
+ export type UserCreateWithoutPaymentMethodChangeRequestsInput = {
3517
+ id?: string;
3518
+ email: string;
3519
+ password?: string | null;
3520
+ phone?: string | null;
3521
+ firstName?: string | null;
3522
+ lastName?: string | null;
3523
+ isActive?: boolean;
3524
+ isEmailVerified?: boolean;
3525
+ googleId?: string | null;
3526
+ avatar?: string | null;
3527
+ createdAt?: Date | string;
3528
+ updatedAt?: Date | string;
3529
+ emailVerifiedAt?: Date | string | null;
3530
+ emailVerificationToken?: string | null;
3531
+ lastLoginAt?: Date | string | null;
3532
+ tenant?: Prisma.TenantCreateNestedOneWithoutUsersInput;
3533
+ userRoles?: Prisma.UserRoleCreateNestedManyWithoutUserInput;
3534
+ wallet?: Prisma.WalletCreateNestedOneWithoutUserInput;
3535
+ refreshTokens?: Prisma.RefreshTokenCreateNestedManyWithoutUserInput;
3536
+ passwordResets?: Prisma.PasswordResetCreateNestedManyWithoutUserInput;
3537
+ suspensions?: Prisma.UserSuspensionCreateNestedManyWithoutUserInput;
3538
+ emailPreferences?: Prisma.EmailPreferenceCreateNestedManyWithoutUserInput;
3539
+ deviceEndpoints?: Prisma.DeviceEndpointCreateNestedManyWithoutUserInput;
3540
+ socials?: Prisma.SocialCreateNestedManyWithoutUserInput;
3541
+ properties?: Prisma.PropertyCreateNestedManyWithoutUserInput;
3542
+ contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
3543
+ soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
3544
+ contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
3545
+ assignedSteps?: Prisma.ContractPhaseStepCreateNestedManyWithoutAssigneeInput;
3546
+ stepApprovals?: Prisma.ContractPhaseStepApprovalCreateNestedManyWithoutApproverInput;
3547
+ uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
3548
+ prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
3549
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutReviewerInput;
3550
+ };
3551
+ export type UserUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
3552
+ id?: string;
3553
+ email: string;
3554
+ password?: string | null;
3555
+ phone?: string | null;
3556
+ firstName?: string | null;
3557
+ lastName?: string | null;
3558
+ isActive?: boolean;
3559
+ isEmailVerified?: boolean;
3560
+ googleId?: string | null;
3561
+ avatar?: string | null;
3562
+ tenantId?: string | null;
3563
+ walletId?: string | null;
3564
+ createdAt?: Date | string;
3565
+ updatedAt?: Date | string;
3566
+ emailVerifiedAt?: Date | string | null;
3567
+ emailVerificationToken?: string | null;
3568
+ lastLoginAt?: Date | string | null;
3569
+ userRoles?: Prisma.UserRoleUncheckedCreateNestedManyWithoutUserInput;
3570
+ refreshTokens?: Prisma.RefreshTokenUncheckedCreateNestedManyWithoutUserInput;
3571
+ passwordResets?: Prisma.PasswordResetUncheckedCreateNestedManyWithoutUserInput;
3572
+ suspensions?: Prisma.UserSuspensionUncheckedCreateNestedManyWithoutUserInput;
3573
+ emailPreferences?: Prisma.EmailPreferenceUncheckedCreateNestedManyWithoutUserInput;
3574
+ deviceEndpoints?: Prisma.DeviceEndpointUncheckedCreateNestedManyWithoutUserInput;
3575
+ socials?: Prisma.SocialUncheckedCreateNestedManyWithoutUserInput;
3576
+ properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutUserInput;
3577
+ contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
3578
+ soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
3579
+ contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
3580
+ assignedSteps?: Prisma.ContractPhaseStepUncheckedCreateNestedManyWithoutAssigneeInput;
3581
+ stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
3582
+ uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
3583
+ prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
3584
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutReviewerInput;
3585
+ };
3586
+ export type UserCreateOrConnectWithoutPaymentMethodChangeRequestsInput = {
3587
+ where: Prisma.UserWhereUniqueInput;
3588
+ create: Prisma.XOR<Prisma.UserCreateWithoutPaymentMethodChangeRequestsInput, Prisma.UserUncheckedCreateWithoutPaymentMethodChangeRequestsInput>;
3589
+ };
3590
+ export type UserCreateWithoutReviewedChangeRequestsInput = {
3591
+ id?: string;
3592
+ email: string;
3593
+ password?: string | null;
3594
+ phone?: string | null;
3595
+ firstName?: string | null;
3596
+ lastName?: string | null;
3597
+ isActive?: boolean;
3598
+ isEmailVerified?: boolean;
3599
+ googleId?: string | null;
3600
+ avatar?: string | null;
3601
+ createdAt?: Date | string;
3602
+ updatedAt?: Date | string;
3603
+ emailVerifiedAt?: Date | string | null;
3604
+ emailVerificationToken?: string | null;
3605
+ lastLoginAt?: Date | string | null;
3606
+ tenant?: Prisma.TenantCreateNestedOneWithoutUsersInput;
3607
+ userRoles?: Prisma.UserRoleCreateNestedManyWithoutUserInput;
3608
+ wallet?: Prisma.WalletCreateNestedOneWithoutUserInput;
3609
+ refreshTokens?: Prisma.RefreshTokenCreateNestedManyWithoutUserInput;
3610
+ passwordResets?: Prisma.PasswordResetCreateNestedManyWithoutUserInput;
3611
+ suspensions?: Prisma.UserSuspensionCreateNestedManyWithoutUserInput;
3612
+ emailPreferences?: Prisma.EmailPreferenceCreateNestedManyWithoutUserInput;
3613
+ deviceEndpoints?: Prisma.DeviceEndpointCreateNestedManyWithoutUserInput;
3614
+ socials?: Prisma.SocialCreateNestedManyWithoutUserInput;
3615
+ properties?: Prisma.PropertyCreateNestedManyWithoutUserInput;
3616
+ contracts?: Prisma.ContractCreateNestedManyWithoutBuyerInput;
3617
+ soldContracts?: Prisma.ContractCreateNestedManyWithoutSellerInput;
3618
+ contractPayments?: Prisma.ContractPaymentCreateNestedManyWithoutPayerInput;
3619
+ assignedSteps?: Prisma.ContractPhaseStepCreateNestedManyWithoutAssigneeInput;
3620
+ stepApprovals?: Prisma.ContractPhaseStepApprovalCreateNestedManyWithoutApproverInput;
3621
+ uploadedDocs?: Prisma.ContractDocumentCreateNestedManyWithoutUploadedByInput;
3622
+ prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutUserInput;
3623
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutRequestorInput;
3624
+ };
3625
+ export type UserUncheckedCreateWithoutReviewedChangeRequestsInput = {
3626
+ id?: string;
3627
+ email: string;
3628
+ password?: string | null;
3629
+ phone?: string | null;
3630
+ firstName?: string | null;
3631
+ lastName?: string | null;
3632
+ isActive?: boolean;
3633
+ isEmailVerified?: boolean;
3634
+ googleId?: string | null;
3635
+ avatar?: string | null;
3636
+ tenantId?: string | null;
3637
+ walletId?: string | null;
3638
+ createdAt?: Date | string;
3639
+ updatedAt?: Date | string;
3640
+ emailVerifiedAt?: Date | string | null;
3641
+ emailVerificationToken?: string | null;
3642
+ lastLoginAt?: Date | string | null;
3643
+ userRoles?: Prisma.UserRoleUncheckedCreateNestedManyWithoutUserInput;
3644
+ refreshTokens?: Prisma.RefreshTokenUncheckedCreateNestedManyWithoutUserInput;
3645
+ passwordResets?: Prisma.PasswordResetUncheckedCreateNestedManyWithoutUserInput;
3646
+ suspensions?: Prisma.UserSuspensionUncheckedCreateNestedManyWithoutUserInput;
3647
+ emailPreferences?: Prisma.EmailPreferenceUncheckedCreateNestedManyWithoutUserInput;
3648
+ deviceEndpoints?: Prisma.DeviceEndpointUncheckedCreateNestedManyWithoutUserInput;
3649
+ socials?: Prisma.SocialUncheckedCreateNestedManyWithoutUserInput;
3650
+ properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutUserInput;
3651
+ contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutBuyerInput;
3652
+ soldContracts?: Prisma.ContractUncheckedCreateNestedManyWithoutSellerInput;
3653
+ contractPayments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutPayerInput;
3654
+ assignedSteps?: Prisma.ContractPhaseStepUncheckedCreateNestedManyWithoutAssigneeInput;
3655
+ stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedCreateNestedManyWithoutApproverInput;
3656
+ uploadedDocs?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutUploadedByInput;
3657
+ prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutUserInput;
3658
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutRequestorInput;
3659
+ };
3660
+ export type UserCreateOrConnectWithoutReviewedChangeRequestsInput = {
3661
+ where: Prisma.UserWhereUniqueInput;
3662
+ create: Prisma.XOR<Prisma.UserCreateWithoutReviewedChangeRequestsInput, Prisma.UserUncheckedCreateWithoutReviewedChangeRequestsInput>;
3663
+ };
3664
+ export type UserUpsertWithoutPaymentMethodChangeRequestsInput = {
3665
+ update: Prisma.XOR<Prisma.UserUpdateWithoutPaymentMethodChangeRequestsInput, Prisma.UserUncheckedUpdateWithoutPaymentMethodChangeRequestsInput>;
3666
+ create: Prisma.XOR<Prisma.UserCreateWithoutPaymentMethodChangeRequestsInput, Prisma.UserUncheckedCreateWithoutPaymentMethodChangeRequestsInput>;
3667
+ where?: Prisma.UserWhereInput;
3668
+ };
3669
+ export type UserUpdateToOneWithWhereWithoutPaymentMethodChangeRequestsInput = {
3670
+ where?: Prisma.UserWhereInput;
3671
+ data: Prisma.XOR<Prisma.UserUpdateWithoutPaymentMethodChangeRequestsInput, Prisma.UserUncheckedUpdateWithoutPaymentMethodChangeRequestsInput>;
3672
+ };
3673
+ export type UserUpdateWithoutPaymentMethodChangeRequestsInput = {
3674
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
3675
+ email?: Prisma.StringFieldUpdateOperationsInput | string;
3676
+ password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3677
+ phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3678
+ firstName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3679
+ lastName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3680
+ isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
3681
+ isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
3682
+ googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3683
+ avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3684
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
3685
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
3686
+ emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
3687
+ emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3688
+ lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
3689
+ tenant?: Prisma.TenantUpdateOneWithoutUsersNestedInput;
3690
+ userRoles?: Prisma.UserRoleUpdateManyWithoutUserNestedInput;
3691
+ wallet?: Prisma.WalletUpdateOneWithoutUserNestedInput;
3692
+ refreshTokens?: Prisma.RefreshTokenUpdateManyWithoutUserNestedInput;
3693
+ passwordResets?: Prisma.PasswordResetUpdateManyWithoutUserNestedInput;
3694
+ suspensions?: Prisma.UserSuspensionUpdateManyWithoutUserNestedInput;
3695
+ emailPreferences?: Prisma.EmailPreferenceUpdateManyWithoutUserNestedInput;
3696
+ deviceEndpoints?: Prisma.DeviceEndpointUpdateManyWithoutUserNestedInput;
3697
+ socials?: Prisma.SocialUpdateManyWithoutUserNestedInput;
3698
+ properties?: Prisma.PropertyUpdateManyWithoutUserNestedInput;
3699
+ contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
3700
+ soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
3701
+ contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
3702
+ assignedSteps?: Prisma.ContractPhaseStepUpdateManyWithoutAssigneeNestedInput;
3703
+ stepApprovals?: Prisma.ContractPhaseStepApprovalUpdateManyWithoutApproverNestedInput;
3704
+ uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
3705
+ prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
3706
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
3707
+ };
3708
+ export type UserUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
3709
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
3710
+ email?: Prisma.StringFieldUpdateOperationsInput | string;
3711
+ password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3712
+ phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3713
+ firstName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3714
+ lastName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3715
+ isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
3716
+ isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
3717
+ googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3718
+ avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3719
+ tenantId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3720
+ walletId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3721
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
3722
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
3723
+ emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
3724
+ emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3725
+ lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
3726
+ userRoles?: Prisma.UserRoleUncheckedUpdateManyWithoutUserNestedInput;
3727
+ refreshTokens?: Prisma.RefreshTokenUncheckedUpdateManyWithoutUserNestedInput;
3728
+ passwordResets?: Prisma.PasswordResetUncheckedUpdateManyWithoutUserNestedInput;
3729
+ suspensions?: Prisma.UserSuspensionUncheckedUpdateManyWithoutUserNestedInput;
3730
+ emailPreferences?: Prisma.EmailPreferenceUncheckedUpdateManyWithoutUserNestedInput;
3731
+ deviceEndpoints?: Prisma.DeviceEndpointUncheckedUpdateManyWithoutUserNestedInput;
3732
+ socials?: Prisma.SocialUncheckedUpdateManyWithoutUserNestedInput;
3733
+ properties?: Prisma.PropertyUncheckedUpdateManyWithoutUserNestedInput;
3734
+ contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
3735
+ soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
3736
+ contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
3737
+ assignedSteps?: Prisma.ContractPhaseStepUncheckedUpdateManyWithoutAssigneeNestedInput;
3738
+ stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
3739
+ uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
3740
+ prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
3741
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
3742
+ };
3743
+ export type UserUpsertWithoutReviewedChangeRequestsInput = {
3744
+ update: Prisma.XOR<Prisma.UserUpdateWithoutReviewedChangeRequestsInput, Prisma.UserUncheckedUpdateWithoutReviewedChangeRequestsInput>;
3745
+ create: Prisma.XOR<Prisma.UserCreateWithoutReviewedChangeRequestsInput, Prisma.UserUncheckedCreateWithoutReviewedChangeRequestsInput>;
3746
+ where?: Prisma.UserWhereInput;
3747
+ };
3748
+ export type UserUpdateToOneWithWhereWithoutReviewedChangeRequestsInput = {
3749
+ where?: Prisma.UserWhereInput;
3750
+ data: Prisma.XOR<Prisma.UserUpdateWithoutReviewedChangeRequestsInput, Prisma.UserUncheckedUpdateWithoutReviewedChangeRequestsInput>;
3751
+ };
3752
+ export type UserUpdateWithoutReviewedChangeRequestsInput = {
3753
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
3754
+ email?: Prisma.StringFieldUpdateOperationsInput | string;
3755
+ password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3756
+ phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3757
+ firstName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3758
+ lastName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3759
+ isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
3760
+ isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
3761
+ googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3762
+ avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3763
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
3764
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
3765
+ emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
3766
+ emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3767
+ lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
3768
+ tenant?: Prisma.TenantUpdateOneWithoutUsersNestedInput;
3769
+ userRoles?: Prisma.UserRoleUpdateManyWithoutUserNestedInput;
3770
+ wallet?: Prisma.WalletUpdateOneWithoutUserNestedInput;
3771
+ refreshTokens?: Prisma.RefreshTokenUpdateManyWithoutUserNestedInput;
3772
+ passwordResets?: Prisma.PasswordResetUpdateManyWithoutUserNestedInput;
3773
+ suspensions?: Prisma.UserSuspensionUpdateManyWithoutUserNestedInput;
3774
+ emailPreferences?: Prisma.EmailPreferenceUpdateManyWithoutUserNestedInput;
3775
+ deviceEndpoints?: Prisma.DeviceEndpointUpdateManyWithoutUserNestedInput;
3776
+ socials?: Prisma.SocialUpdateManyWithoutUserNestedInput;
3777
+ properties?: Prisma.PropertyUpdateManyWithoutUserNestedInput;
3778
+ contracts?: Prisma.ContractUpdateManyWithoutBuyerNestedInput;
3779
+ soldContracts?: Prisma.ContractUpdateManyWithoutSellerNestedInput;
3780
+ contractPayments?: Prisma.ContractPaymentUpdateManyWithoutPayerNestedInput;
3781
+ assignedSteps?: Prisma.ContractPhaseStepUpdateManyWithoutAssigneeNestedInput;
3782
+ stepApprovals?: Prisma.ContractPhaseStepApprovalUpdateManyWithoutApproverNestedInput;
3783
+ uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
3784
+ prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
3785
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
3786
+ };
3787
+ export type UserUncheckedUpdateWithoutReviewedChangeRequestsInput = {
3788
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
3789
+ email?: Prisma.StringFieldUpdateOperationsInput | string;
3790
+ password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3791
+ phone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3792
+ firstName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3793
+ lastName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3794
+ isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
3795
+ isEmailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean;
3796
+ googleId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3797
+ avatar?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3798
+ tenantId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3799
+ walletId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3800
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
3801
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
3802
+ emailVerifiedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
3803
+ emailVerificationToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
3804
+ lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
3805
+ userRoles?: Prisma.UserRoleUncheckedUpdateManyWithoutUserNestedInput;
3806
+ refreshTokens?: Prisma.RefreshTokenUncheckedUpdateManyWithoutUserNestedInput;
3807
+ passwordResets?: Prisma.PasswordResetUncheckedUpdateManyWithoutUserNestedInput;
3808
+ suspensions?: Prisma.UserSuspensionUncheckedUpdateManyWithoutUserNestedInput;
3809
+ emailPreferences?: Prisma.EmailPreferenceUncheckedUpdateManyWithoutUserNestedInput;
3810
+ deviceEndpoints?: Prisma.DeviceEndpointUncheckedUpdateManyWithoutUserNestedInput;
3811
+ socials?: Prisma.SocialUncheckedUpdateManyWithoutUserNestedInput;
3812
+ properties?: Prisma.PropertyUncheckedUpdateManyWithoutUserNestedInput;
3813
+ contracts?: Prisma.ContractUncheckedUpdateManyWithoutBuyerNestedInput;
3814
+ soldContracts?: Prisma.ContractUncheckedUpdateManyWithoutSellerNestedInput;
3815
+ contractPayments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutPayerNestedInput;
3816
+ assignedSteps?: Prisma.ContractPhaseStepUncheckedUpdateManyWithoutAssigneeNestedInput;
3817
+ stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
3818
+ uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
3819
+ prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
3820
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
3117
3821
  };
3118
3822
  export type UserCreateManyTenantInput = {
3119
3823
  id?: string;
@@ -3164,6 +3868,9 @@ export type UserUpdateWithoutTenantInput = {
3164
3868
  assignedSteps?: Prisma.ContractPhaseStepUpdateManyWithoutAssigneeNestedInput;
3165
3869
  stepApprovals?: Prisma.ContractPhaseStepApprovalUpdateManyWithoutApproverNestedInput;
3166
3870
  uploadedDocs?: Prisma.ContractDocumentUpdateManyWithoutUploadedByNestedInput;
3871
+ prequalifications?: Prisma.PrequalificationUpdateManyWithoutUserNestedInput;
3872
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutRequestorNestedInput;
3873
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutReviewerNestedInput;
3167
3874
  };
3168
3875
  export type UserUncheckedUpdateWithoutTenantInput = {
3169
3876
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -3196,6 +3903,9 @@ export type UserUncheckedUpdateWithoutTenantInput = {
3196
3903
  assignedSteps?: Prisma.ContractPhaseStepUncheckedUpdateManyWithoutAssigneeNestedInput;
3197
3904
  stepApprovals?: Prisma.ContractPhaseStepApprovalUncheckedUpdateManyWithoutApproverNestedInput;
3198
3905
  uploadedDocs?: Prisma.ContractDocumentUncheckedUpdateManyWithoutUploadedByNestedInput;
3906
+ prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutUserNestedInput;
3907
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutRequestorNestedInput;
3908
+ reviewedChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutReviewerNestedInput;
3199
3909
  };
3200
3910
  export type UserUncheckedUpdateManyWithoutTenantInput = {
3201
3911
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -3233,6 +3943,9 @@ export type UserCountOutputType = {
3233
3943
  assignedSteps: number;
3234
3944
  stepApprovals: number;
3235
3945
  uploadedDocs: number;
3946
+ prequalifications: number;
3947
+ paymentMethodChangeRequests: number;
3948
+ reviewedChangeRequests: number;
3236
3949
  };
3237
3950
  export type UserCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
3238
3951
  userRoles?: boolean | UserCountOutputTypeCountUserRolesArgs;
@@ -3249,6 +3962,9 @@ export type UserCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.I
3249
3962
  assignedSteps?: boolean | UserCountOutputTypeCountAssignedStepsArgs;
3250
3963
  stepApprovals?: boolean | UserCountOutputTypeCountStepApprovalsArgs;
3251
3964
  uploadedDocs?: boolean | UserCountOutputTypeCountUploadedDocsArgs;
3965
+ prequalifications?: boolean | UserCountOutputTypeCountPrequalificationsArgs;
3966
+ paymentMethodChangeRequests?: boolean | UserCountOutputTypeCountPaymentMethodChangeRequestsArgs;
3967
+ reviewedChangeRequests?: boolean | UserCountOutputTypeCountReviewedChangeRequestsArgs;
3252
3968
  };
3253
3969
  /**
3254
3970
  * UserCountOutputType without action
@@ -3343,6 +4059,24 @@ export type UserCountOutputTypeCountStepApprovalsArgs<ExtArgs extends runtime.Ty
3343
4059
  export type UserCountOutputTypeCountUploadedDocsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
3344
4060
  where?: Prisma.ContractDocumentWhereInput;
3345
4061
  };
4062
+ /**
4063
+ * UserCountOutputType without action
4064
+ */
4065
+ export type UserCountOutputTypeCountPrequalificationsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
4066
+ where?: Prisma.PrequalificationWhereInput;
4067
+ };
4068
+ /**
4069
+ * UserCountOutputType without action
4070
+ */
4071
+ export type UserCountOutputTypeCountPaymentMethodChangeRequestsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
4072
+ where?: Prisma.PaymentMethodChangeRequestWhereInput;
4073
+ };
4074
+ /**
4075
+ * UserCountOutputType without action
4076
+ */
4077
+ export type UserCountOutputTypeCountReviewedChangeRequestsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
4078
+ where?: Prisma.PaymentMethodChangeRequestWhereInput;
4079
+ };
3346
4080
  export type UserSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
3347
4081
  id?: boolean;
3348
4082
  email?: boolean;
@@ -3377,6 +4111,9 @@ export type UserSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
3377
4111
  assignedSteps?: boolean | Prisma.User$assignedStepsArgs<ExtArgs>;
3378
4112
  stepApprovals?: boolean | Prisma.User$stepApprovalsArgs<ExtArgs>;
3379
4113
  uploadedDocs?: boolean | Prisma.User$uploadedDocsArgs<ExtArgs>;
4114
+ prequalifications?: boolean | Prisma.User$prequalificationsArgs<ExtArgs>;
4115
+ paymentMethodChangeRequests?: boolean | Prisma.User$paymentMethodChangeRequestsArgs<ExtArgs>;
4116
+ reviewedChangeRequests?: boolean | Prisma.User$reviewedChangeRequestsArgs<ExtArgs>;
3380
4117
  _count?: boolean | Prisma.UserCountOutputTypeDefaultArgs<ExtArgs>;
3381
4118
  }, ExtArgs["result"]["user"]>;
3382
4119
  export type UserSelectScalar = {
@@ -3416,6 +4153,9 @@ export type UserInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs =
3416
4153
  assignedSteps?: boolean | Prisma.User$assignedStepsArgs<ExtArgs>;
3417
4154
  stepApprovals?: boolean | Prisma.User$stepApprovalsArgs<ExtArgs>;
3418
4155
  uploadedDocs?: boolean | Prisma.User$uploadedDocsArgs<ExtArgs>;
4156
+ prequalifications?: boolean | Prisma.User$prequalificationsArgs<ExtArgs>;
4157
+ paymentMethodChangeRequests?: boolean | Prisma.User$paymentMethodChangeRequestsArgs<ExtArgs>;
4158
+ reviewedChangeRequests?: boolean | Prisma.User$reviewedChangeRequestsArgs<ExtArgs>;
3419
4159
  _count?: boolean | Prisma.UserCountOutputTypeDefaultArgs<ExtArgs>;
3420
4160
  };
3421
4161
  export type $UserPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
@@ -3437,6 +4177,9 @@ export type $UserPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs =
3437
4177
  assignedSteps: Prisma.$ContractPhaseStepPayload<ExtArgs>[];
3438
4178
  stepApprovals: Prisma.$ContractPhaseStepApprovalPayload<ExtArgs>[];
3439
4179
  uploadedDocs: Prisma.$ContractDocumentPayload<ExtArgs>[];
4180
+ prequalifications: Prisma.$PrequalificationPayload<ExtArgs>[];
4181
+ paymentMethodChangeRequests: Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>[];
4182
+ reviewedChangeRequests: Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>[];
3440
4183
  };
3441
4184
  scalars: runtime.Types.Extensions.GetPayloadResult<{
3442
4185
  id: string;
@@ -3749,6 +4492,9 @@ export interface Prisma__UserClient<T, Null = never, ExtArgs extends runtime.Typ
3749
4492
  assignedSteps<T extends Prisma.User$assignedStepsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$assignedStepsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ContractPhaseStepPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
3750
4493
  stepApprovals<T extends Prisma.User$stepApprovalsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$stepApprovalsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ContractPhaseStepApprovalPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
3751
4494
  uploadedDocs<T extends Prisma.User$uploadedDocsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$uploadedDocsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ContractDocumentPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
4495
+ prequalifications<T extends Prisma.User$prequalificationsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$prequalificationsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PrequalificationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
4496
+ paymentMethodChangeRequests<T extends Prisma.User$paymentMethodChangeRequestsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$paymentMethodChangeRequestsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
4497
+ 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>;
3752
4498
  /**
3753
4499
  * Attaches callbacks for the resolution and/or rejection of the Promise.
3754
4500
  * @param onfulfilled The callback to execute when the Promise is resolved.
@@ -4476,6 +5222,75 @@ export type User$uploadedDocsArgs<ExtArgs extends runtime.Types.Extensions.Inter
4476
5222
  skip?: number;
4477
5223
  distinct?: Prisma.ContractDocumentScalarFieldEnum | Prisma.ContractDocumentScalarFieldEnum[];
4478
5224
  };
5225
+ /**
5226
+ * User.prequalifications
5227
+ */
5228
+ export type User$prequalificationsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
5229
+ /**
5230
+ * Select specific fields to fetch from the Prequalification
5231
+ */
5232
+ select?: Prisma.PrequalificationSelect<ExtArgs> | null;
5233
+ /**
5234
+ * Omit specific fields from the Prequalification
5235
+ */
5236
+ omit?: Prisma.PrequalificationOmit<ExtArgs> | null;
5237
+ /**
5238
+ * Choose, which related nodes to fetch as well
5239
+ */
5240
+ include?: Prisma.PrequalificationInclude<ExtArgs> | null;
5241
+ where?: Prisma.PrequalificationWhereInput;
5242
+ orderBy?: Prisma.PrequalificationOrderByWithRelationInput | Prisma.PrequalificationOrderByWithRelationInput[];
5243
+ cursor?: Prisma.PrequalificationWhereUniqueInput;
5244
+ take?: number;
5245
+ skip?: number;
5246
+ distinct?: Prisma.PrequalificationScalarFieldEnum | Prisma.PrequalificationScalarFieldEnum[];
5247
+ };
5248
+ /**
5249
+ * User.paymentMethodChangeRequests
5250
+ */
5251
+ export type User$paymentMethodChangeRequestsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
5252
+ /**
5253
+ * Select specific fields to fetch from the PaymentMethodChangeRequest
5254
+ */
5255
+ select?: Prisma.PaymentMethodChangeRequestSelect<ExtArgs> | null;
5256
+ /**
5257
+ * Omit specific fields from the PaymentMethodChangeRequest
5258
+ */
5259
+ omit?: Prisma.PaymentMethodChangeRequestOmit<ExtArgs> | null;
5260
+ /**
5261
+ * Choose, which related nodes to fetch as well
5262
+ */
5263
+ include?: Prisma.PaymentMethodChangeRequestInclude<ExtArgs> | null;
5264
+ where?: Prisma.PaymentMethodChangeRequestWhereInput;
5265
+ orderBy?: Prisma.PaymentMethodChangeRequestOrderByWithRelationInput | Prisma.PaymentMethodChangeRequestOrderByWithRelationInput[];
5266
+ cursor?: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
5267
+ take?: number;
5268
+ skip?: number;
5269
+ distinct?: Prisma.PaymentMethodChangeRequestScalarFieldEnum | Prisma.PaymentMethodChangeRequestScalarFieldEnum[];
5270
+ };
5271
+ /**
5272
+ * User.reviewedChangeRequests
5273
+ */
5274
+ export type User$reviewedChangeRequestsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
5275
+ /**
5276
+ * Select specific fields to fetch from the PaymentMethodChangeRequest
5277
+ */
5278
+ select?: Prisma.PaymentMethodChangeRequestSelect<ExtArgs> | null;
5279
+ /**
5280
+ * Omit specific fields from the PaymentMethodChangeRequest
5281
+ */
5282
+ omit?: Prisma.PaymentMethodChangeRequestOmit<ExtArgs> | null;
5283
+ /**
5284
+ * Choose, which related nodes to fetch as well
5285
+ */
5286
+ include?: Prisma.PaymentMethodChangeRequestInclude<ExtArgs> | null;
5287
+ where?: Prisma.PaymentMethodChangeRequestWhereInput;
5288
+ orderBy?: Prisma.PaymentMethodChangeRequestOrderByWithRelationInput | Prisma.PaymentMethodChangeRequestOrderByWithRelationInput[];
5289
+ cursor?: Prisma.PaymentMethodChangeRequestWhereUniqueInput;
5290
+ take?: number;
5291
+ skip?: number;
5292
+ distinct?: Prisma.PaymentMethodChangeRequestScalarFieldEnum | Prisma.PaymentMethodChangeRequestScalarFieldEnum[];
5293
+ };
4479
5294
  /**
4480
5295
  * User without action
4481
5296
  */