@valentine-efagene/qshelter-common 2.0.54 → 2.0.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/client/browser.d.ts +0 -15
- package/dist/generated/client/client.d.ts +0 -15
- package/dist/generated/client/commonInputTypes.d.ts +0 -60
- package/dist/generated/client/enums.d.ts +0 -16
- package/dist/generated/client/enums.js +0 -14
- package/dist/generated/client/internal/class.d.ts +0 -33
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +12 -294
- package/dist/generated/client/internal/prismaNamespace.js +11 -78
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +11 -84
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +11 -78
- package/dist/generated/client/models/Contract.d.ts +0 -583
- package/dist/generated/client/models/ContractEvent.d.ts +285 -93
- package/dist/generated/client/models/Property.d.ts +0 -211
- package/dist/generated/client/models/PropertyPaymentMethod.d.ts +0 -187
- package/dist/generated/client/models/Tenant.d.ts +0 -366
- package/dist/generated/client/models/User.d.ts +0 -311
- package/dist/generated/client/models/index.d.ts +0 -3
- package/dist/generated/client/models/index.js +0 -3
- package/dist/generated/client/models.d.ts +0 -3
- package/package.json +1 -1
- package/prisma/migrations/20260105080236_remove_prequalification_model/migration.sql +37 -0
- package/prisma/schema.prisma +30 -159
|
@@ -461,11 +461,9 @@ export type ContractWhereInput = {
|
|
|
461
461
|
phases?: Prisma.ContractPhaseListRelationFilter;
|
|
462
462
|
documents?: Prisma.ContractDocumentListRelationFilter;
|
|
463
463
|
payments?: Prisma.ContractPaymentListRelationFilter;
|
|
464
|
-
transitions?: Prisma.ContractTransitionListRelationFilter;
|
|
465
464
|
events?: Prisma.ContractEventListRelationFilter;
|
|
466
465
|
terminations?: Prisma.ContractTerminationListRelationFilter;
|
|
467
466
|
offerLetters?: Prisma.OfferLetterListRelationFilter;
|
|
468
|
-
prequalification?: Prisma.XOR<Prisma.PrequalificationNullableScalarRelationFilter, Prisma.PrequalificationWhereInput> | null;
|
|
469
467
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestListRelationFilter;
|
|
470
468
|
};
|
|
471
469
|
export type ContractOrderByWithRelationInput = {
|
|
@@ -512,11 +510,9 @@ export type ContractOrderByWithRelationInput = {
|
|
|
512
510
|
phases?: Prisma.ContractPhaseOrderByRelationAggregateInput;
|
|
513
511
|
documents?: Prisma.ContractDocumentOrderByRelationAggregateInput;
|
|
514
512
|
payments?: Prisma.ContractPaymentOrderByRelationAggregateInput;
|
|
515
|
-
transitions?: Prisma.ContractTransitionOrderByRelationAggregateInput;
|
|
516
513
|
events?: Prisma.ContractEventOrderByRelationAggregateInput;
|
|
517
514
|
terminations?: Prisma.ContractTerminationOrderByRelationAggregateInput;
|
|
518
515
|
offerLetters?: Prisma.OfferLetterOrderByRelationAggregateInput;
|
|
519
|
-
prequalification?: Prisma.PrequalificationOrderByWithRelationInput;
|
|
520
516
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestOrderByRelationAggregateInput;
|
|
521
517
|
_relevance?: Prisma.ContractOrderByRelevanceInput;
|
|
522
518
|
};
|
|
@@ -567,11 +563,9 @@ export type ContractWhereUniqueInput = Prisma.AtLeast<{
|
|
|
567
563
|
phases?: Prisma.ContractPhaseListRelationFilter;
|
|
568
564
|
documents?: Prisma.ContractDocumentListRelationFilter;
|
|
569
565
|
payments?: Prisma.ContractPaymentListRelationFilter;
|
|
570
|
-
transitions?: Prisma.ContractTransitionListRelationFilter;
|
|
571
566
|
events?: Prisma.ContractEventListRelationFilter;
|
|
572
567
|
terminations?: Prisma.ContractTerminationListRelationFilter;
|
|
573
568
|
offerLetters?: Prisma.OfferLetterListRelationFilter;
|
|
574
|
-
prequalification?: Prisma.XOR<Prisma.PrequalificationNullableScalarRelationFilter, Prisma.PrequalificationWhereInput> | null;
|
|
575
569
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestListRelationFilter;
|
|
576
570
|
}, "id" | "contractNumber">;
|
|
577
571
|
export type ContractOrderByWithAggregationInput = {
|
|
@@ -695,11 +689,9 @@ export type ContractCreateInput = {
|
|
|
695
689
|
phases?: Prisma.ContractPhaseCreateNestedManyWithoutContractInput;
|
|
696
690
|
documents?: Prisma.ContractDocumentCreateNestedManyWithoutContractInput;
|
|
697
691
|
payments?: Prisma.ContractPaymentCreateNestedManyWithoutContractInput;
|
|
698
|
-
transitions?: Prisma.ContractTransitionCreateNestedManyWithoutContractInput;
|
|
699
692
|
events?: Prisma.ContractEventCreateNestedManyWithoutContractInput;
|
|
700
693
|
terminations?: Prisma.ContractTerminationCreateNestedManyWithoutContractInput;
|
|
701
694
|
offerLetters?: Prisma.OfferLetterCreateNestedManyWithoutContractInput;
|
|
702
|
-
prequalification?: Prisma.PrequalificationCreateNestedOneWithoutContractInput;
|
|
703
695
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutContractInput;
|
|
704
696
|
};
|
|
705
697
|
export type ContractUncheckedCreateInput = {
|
|
@@ -741,11 +733,9 @@ export type ContractUncheckedCreateInput = {
|
|
|
741
733
|
phases?: Prisma.ContractPhaseUncheckedCreateNestedManyWithoutContractInput;
|
|
742
734
|
documents?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutContractInput;
|
|
743
735
|
payments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutContractInput;
|
|
744
|
-
transitions?: Prisma.ContractTransitionUncheckedCreateNestedManyWithoutContractInput;
|
|
745
736
|
events?: Prisma.ContractEventUncheckedCreateNestedManyWithoutContractInput;
|
|
746
737
|
terminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutContractInput;
|
|
747
738
|
offerLetters?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutContractInput;
|
|
748
|
-
prequalification?: Prisma.PrequalificationUncheckedCreateNestedOneWithoutContractInput;
|
|
749
739
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutContractInput;
|
|
750
740
|
};
|
|
751
741
|
export type ContractUpdateInput = {
|
|
@@ -787,11 +777,9 @@ export type ContractUpdateInput = {
|
|
|
787
777
|
phases?: Prisma.ContractPhaseUpdateManyWithoutContractNestedInput;
|
|
788
778
|
documents?: Prisma.ContractDocumentUpdateManyWithoutContractNestedInput;
|
|
789
779
|
payments?: Prisma.ContractPaymentUpdateManyWithoutContractNestedInput;
|
|
790
|
-
transitions?: Prisma.ContractTransitionUpdateManyWithoutContractNestedInput;
|
|
791
780
|
events?: Prisma.ContractEventUpdateManyWithoutContractNestedInput;
|
|
792
781
|
terminations?: Prisma.ContractTerminationUpdateManyWithoutContractNestedInput;
|
|
793
782
|
offerLetters?: Prisma.OfferLetterUpdateManyWithoutContractNestedInput;
|
|
794
|
-
prequalification?: Prisma.PrequalificationUpdateOneWithoutContractNestedInput;
|
|
795
783
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutContractNestedInput;
|
|
796
784
|
};
|
|
797
785
|
export type ContractUncheckedUpdateInput = {
|
|
@@ -833,11 +821,9 @@ export type ContractUncheckedUpdateInput = {
|
|
|
833
821
|
phases?: Prisma.ContractPhaseUncheckedUpdateManyWithoutContractNestedInput;
|
|
834
822
|
documents?: Prisma.ContractDocumentUncheckedUpdateManyWithoutContractNestedInput;
|
|
835
823
|
payments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutContractNestedInput;
|
|
836
|
-
transitions?: Prisma.ContractTransitionUncheckedUpdateManyWithoutContractNestedInput;
|
|
837
824
|
events?: Prisma.ContractEventUncheckedUpdateManyWithoutContractNestedInput;
|
|
838
825
|
terminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutContractNestedInput;
|
|
839
826
|
offerLetters?: Prisma.OfferLetterUncheckedUpdateManyWithoutContractNestedInput;
|
|
840
|
-
prequalification?: Prisma.PrequalificationUncheckedUpdateOneWithoutContractNestedInput;
|
|
841
827
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutContractNestedInput;
|
|
842
828
|
};
|
|
843
829
|
export type ContractCreateManyInput = {
|
|
@@ -1102,10 +1088,6 @@ export type ContractScalarRelationFilter = {
|
|
|
1102
1088
|
is?: Prisma.ContractWhereInput;
|
|
1103
1089
|
isNot?: Prisma.ContractWhereInput;
|
|
1104
1090
|
};
|
|
1105
|
-
export type ContractNullableScalarRelationFilter = {
|
|
1106
|
-
is?: Prisma.ContractWhereInput | null;
|
|
1107
|
-
isNot?: Prisma.ContractWhereInput | null;
|
|
1108
|
-
};
|
|
1109
1091
|
export type ContractCreateNestedManyWithoutBuyerInput = {
|
|
1110
1092
|
create?: Prisma.XOR<Prisma.ContractCreateWithoutBuyerInput, Prisma.ContractUncheckedCreateWithoutBuyerInput> | Prisma.ContractCreateWithoutBuyerInput[] | Prisma.ContractUncheckedCreateWithoutBuyerInput[];
|
|
1111
1093
|
connectOrCreate?: Prisma.ContractCreateOrConnectWithoutBuyerInput | Prisma.ContractCreateOrConnectWithoutBuyerInput[];
|
|
@@ -1335,18 +1317,6 @@ export type ContractUpdateOneRequiredWithoutDocumentsNestedInput = {
|
|
|
1335
1317
|
connect?: Prisma.ContractWhereUniqueInput;
|
|
1336
1318
|
update?: Prisma.XOR<Prisma.XOR<Prisma.ContractUpdateToOneWithWhereWithoutDocumentsInput, Prisma.ContractUpdateWithoutDocumentsInput>, Prisma.ContractUncheckedUpdateWithoutDocumentsInput>;
|
|
1337
1319
|
};
|
|
1338
|
-
export type ContractCreateNestedOneWithoutTransitionsInput = {
|
|
1339
|
-
create?: Prisma.XOR<Prisma.ContractCreateWithoutTransitionsInput, Prisma.ContractUncheckedCreateWithoutTransitionsInput>;
|
|
1340
|
-
connectOrCreate?: Prisma.ContractCreateOrConnectWithoutTransitionsInput;
|
|
1341
|
-
connect?: Prisma.ContractWhereUniqueInput;
|
|
1342
|
-
};
|
|
1343
|
-
export type ContractUpdateOneRequiredWithoutTransitionsNestedInput = {
|
|
1344
|
-
create?: Prisma.XOR<Prisma.ContractCreateWithoutTransitionsInput, Prisma.ContractUncheckedCreateWithoutTransitionsInput>;
|
|
1345
|
-
connectOrCreate?: Prisma.ContractCreateOrConnectWithoutTransitionsInput;
|
|
1346
|
-
upsert?: Prisma.ContractUpsertWithoutTransitionsInput;
|
|
1347
|
-
connect?: Prisma.ContractWhereUniqueInput;
|
|
1348
|
-
update?: Prisma.XOR<Prisma.XOR<Prisma.ContractUpdateToOneWithWhereWithoutTransitionsInput, Prisma.ContractUpdateWithoutTransitionsInput>, Prisma.ContractUncheckedUpdateWithoutTransitionsInput>;
|
|
1349
|
-
};
|
|
1350
1320
|
export type ContractCreateNestedOneWithoutEventsInput = {
|
|
1351
1321
|
create?: Prisma.XOR<Prisma.ContractCreateWithoutEventsInput, Prisma.ContractUncheckedCreateWithoutEventsInput>;
|
|
1352
1322
|
connectOrCreate?: Prisma.ContractCreateOrConnectWithoutEventsInput;
|
|
@@ -1383,20 +1353,6 @@ export type ContractUpdateOneRequiredWithoutTerminationsNestedInput = {
|
|
|
1383
1353
|
connect?: Prisma.ContractWhereUniqueInput;
|
|
1384
1354
|
update?: Prisma.XOR<Prisma.XOR<Prisma.ContractUpdateToOneWithWhereWithoutTerminationsInput, Prisma.ContractUpdateWithoutTerminationsInput>, Prisma.ContractUncheckedUpdateWithoutTerminationsInput>;
|
|
1385
1355
|
};
|
|
1386
|
-
export type ContractCreateNestedOneWithoutPrequalificationInput = {
|
|
1387
|
-
create?: Prisma.XOR<Prisma.ContractCreateWithoutPrequalificationInput, Prisma.ContractUncheckedCreateWithoutPrequalificationInput>;
|
|
1388
|
-
connectOrCreate?: Prisma.ContractCreateOrConnectWithoutPrequalificationInput;
|
|
1389
|
-
connect?: Prisma.ContractWhereUniqueInput;
|
|
1390
|
-
};
|
|
1391
|
-
export type ContractUpdateOneWithoutPrequalificationNestedInput = {
|
|
1392
|
-
create?: Prisma.XOR<Prisma.ContractCreateWithoutPrequalificationInput, Prisma.ContractUncheckedCreateWithoutPrequalificationInput>;
|
|
1393
|
-
connectOrCreate?: Prisma.ContractCreateOrConnectWithoutPrequalificationInput;
|
|
1394
|
-
upsert?: Prisma.ContractUpsertWithoutPrequalificationInput;
|
|
1395
|
-
disconnect?: Prisma.ContractWhereInput | boolean;
|
|
1396
|
-
delete?: Prisma.ContractWhereInput | boolean;
|
|
1397
|
-
connect?: Prisma.ContractWhereUniqueInput;
|
|
1398
|
-
update?: Prisma.XOR<Prisma.XOR<Prisma.ContractUpdateToOneWithWhereWithoutPrequalificationInput, Prisma.ContractUpdateWithoutPrequalificationInput>, Prisma.ContractUncheckedUpdateWithoutPrequalificationInput>;
|
|
1399
|
-
};
|
|
1400
1356
|
export type ContractCreateNestedOneWithoutPaymentMethodChangeRequestsInput = {
|
|
1401
1357
|
create?: Prisma.XOR<Prisma.ContractCreateWithoutPaymentMethodChangeRequestsInput, Prisma.ContractUncheckedCreateWithoutPaymentMethodChangeRequestsInput>;
|
|
1402
1358
|
connectOrCreate?: Prisma.ContractCreateOrConnectWithoutPaymentMethodChangeRequestsInput;
|
|
@@ -1447,11 +1403,9 @@ export type ContractCreateWithoutBuyerInput = {
|
|
|
1447
1403
|
phases?: Prisma.ContractPhaseCreateNestedManyWithoutContractInput;
|
|
1448
1404
|
documents?: Prisma.ContractDocumentCreateNestedManyWithoutContractInput;
|
|
1449
1405
|
payments?: Prisma.ContractPaymentCreateNestedManyWithoutContractInput;
|
|
1450
|
-
transitions?: Prisma.ContractTransitionCreateNestedManyWithoutContractInput;
|
|
1451
1406
|
events?: Prisma.ContractEventCreateNestedManyWithoutContractInput;
|
|
1452
1407
|
terminations?: Prisma.ContractTerminationCreateNestedManyWithoutContractInput;
|
|
1453
1408
|
offerLetters?: Prisma.OfferLetterCreateNestedManyWithoutContractInput;
|
|
1454
|
-
prequalification?: Prisma.PrequalificationCreateNestedOneWithoutContractInput;
|
|
1455
1409
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutContractInput;
|
|
1456
1410
|
};
|
|
1457
1411
|
export type ContractUncheckedCreateWithoutBuyerInput = {
|
|
@@ -1492,11 +1446,9 @@ export type ContractUncheckedCreateWithoutBuyerInput = {
|
|
|
1492
1446
|
phases?: Prisma.ContractPhaseUncheckedCreateNestedManyWithoutContractInput;
|
|
1493
1447
|
documents?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutContractInput;
|
|
1494
1448
|
payments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutContractInput;
|
|
1495
|
-
transitions?: Prisma.ContractTransitionUncheckedCreateNestedManyWithoutContractInput;
|
|
1496
1449
|
events?: Prisma.ContractEventUncheckedCreateNestedManyWithoutContractInput;
|
|
1497
1450
|
terminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutContractInput;
|
|
1498
1451
|
offerLetters?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutContractInput;
|
|
1499
|
-
prequalification?: Prisma.PrequalificationUncheckedCreateNestedOneWithoutContractInput;
|
|
1500
1452
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutContractInput;
|
|
1501
1453
|
};
|
|
1502
1454
|
export type ContractCreateOrConnectWithoutBuyerInput = {
|
|
@@ -1545,11 +1497,9 @@ export type ContractCreateWithoutSellerInput = {
|
|
|
1545
1497
|
phases?: Prisma.ContractPhaseCreateNestedManyWithoutContractInput;
|
|
1546
1498
|
documents?: Prisma.ContractDocumentCreateNestedManyWithoutContractInput;
|
|
1547
1499
|
payments?: Prisma.ContractPaymentCreateNestedManyWithoutContractInput;
|
|
1548
|
-
transitions?: Prisma.ContractTransitionCreateNestedManyWithoutContractInput;
|
|
1549
1500
|
events?: Prisma.ContractEventCreateNestedManyWithoutContractInput;
|
|
1550
1501
|
terminations?: Prisma.ContractTerminationCreateNestedManyWithoutContractInput;
|
|
1551
1502
|
offerLetters?: Prisma.OfferLetterCreateNestedManyWithoutContractInput;
|
|
1552
|
-
prequalification?: Prisma.PrequalificationCreateNestedOneWithoutContractInput;
|
|
1553
1503
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutContractInput;
|
|
1554
1504
|
};
|
|
1555
1505
|
export type ContractUncheckedCreateWithoutSellerInput = {
|
|
@@ -1590,11 +1540,9 @@ export type ContractUncheckedCreateWithoutSellerInput = {
|
|
|
1590
1540
|
phases?: Prisma.ContractPhaseUncheckedCreateNestedManyWithoutContractInput;
|
|
1591
1541
|
documents?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutContractInput;
|
|
1592
1542
|
payments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutContractInput;
|
|
1593
|
-
transitions?: Prisma.ContractTransitionUncheckedCreateNestedManyWithoutContractInput;
|
|
1594
1543
|
events?: Prisma.ContractEventUncheckedCreateNestedManyWithoutContractInput;
|
|
1595
1544
|
terminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutContractInput;
|
|
1596
1545
|
offerLetters?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutContractInput;
|
|
1597
|
-
prequalification?: Prisma.PrequalificationUncheckedCreateNestedOneWithoutContractInput;
|
|
1598
1546
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutContractInput;
|
|
1599
1547
|
};
|
|
1600
1548
|
export type ContractCreateOrConnectWithoutSellerInput = {
|
|
@@ -1709,11 +1657,9 @@ export type ContractCreateWithoutTenantInput = {
|
|
|
1709
1657
|
phases?: Prisma.ContractPhaseCreateNestedManyWithoutContractInput;
|
|
1710
1658
|
documents?: Prisma.ContractDocumentCreateNestedManyWithoutContractInput;
|
|
1711
1659
|
payments?: Prisma.ContractPaymentCreateNestedManyWithoutContractInput;
|
|
1712
|
-
transitions?: Prisma.ContractTransitionCreateNestedManyWithoutContractInput;
|
|
1713
1660
|
events?: Prisma.ContractEventCreateNestedManyWithoutContractInput;
|
|
1714
1661
|
terminations?: Prisma.ContractTerminationCreateNestedManyWithoutContractInput;
|
|
1715
1662
|
offerLetters?: Prisma.OfferLetterCreateNestedManyWithoutContractInput;
|
|
1716
|
-
prequalification?: Prisma.PrequalificationCreateNestedOneWithoutContractInput;
|
|
1717
1663
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutContractInput;
|
|
1718
1664
|
};
|
|
1719
1665
|
export type ContractUncheckedCreateWithoutTenantInput = {
|
|
@@ -1754,11 +1700,9 @@ export type ContractUncheckedCreateWithoutTenantInput = {
|
|
|
1754
1700
|
phases?: Prisma.ContractPhaseUncheckedCreateNestedManyWithoutContractInput;
|
|
1755
1701
|
documents?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutContractInput;
|
|
1756
1702
|
payments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutContractInput;
|
|
1757
|
-
transitions?: Prisma.ContractTransitionUncheckedCreateNestedManyWithoutContractInput;
|
|
1758
1703
|
events?: Prisma.ContractEventUncheckedCreateNestedManyWithoutContractInput;
|
|
1759
1704
|
terminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutContractInput;
|
|
1760
1705
|
offerLetters?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutContractInput;
|
|
1761
|
-
prequalification?: Prisma.PrequalificationUncheckedCreateNestedOneWithoutContractInput;
|
|
1762
1706
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutContractInput;
|
|
1763
1707
|
};
|
|
1764
1708
|
export type ContractCreateOrConnectWithoutTenantInput = {
|
|
@@ -1820,11 +1764,9 @@ export type ContractCreateWithoutPropertyUnitInput = {
|
|
|
1820
1764
|
phases?: Prisma.ContractPhaseCreateNestedManyWithoutContractInput;
|
|
1821
1765
|
documents?: Prisma.ContractDocumentCreateNestedManyWithoutContractInput;
|
|
1822
1766
|
payments?: Prisma.ContractPaymentCreateNestedManyWithoutContractInput;
|
|
1823
|
-
transitions?: Prisma.ContractTransitionCreateNestedManyWithoutContractInput;
|
|
1824
1767
|
events?: Prisma.ContractEventCreateNestedManyWithoutContractInput;
|
|
1825
1768
|
terminations?: Prisma.ContractTerminationCreateNestedManyWithoutContractInput;
|
|
1826
1769
|
offerLetters?: Prisma.OfferLetterCreateNestedManyWithoutContractInput;
|
|
1827
|
-
prequalification?: Prisma.PrequalificationCreateNestedOneWithoutContractInput;
|
|
1828
1770
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutContractInput;
|
|
1829
1771
|
};
|
|
1830
1772
|
export type ContractUncheckedCreateWithoutPropertyUnitInput = {
|
|
@@ -1865,11 +1807,9 @@ export type ContractUncheckedCreateWithoutPropertyUnitInput = {
|
|
|
1865
1807
|
phases?: Prisma.ContractPhaseUncheckedCreateNestedManyWithoutContractInput;
|
|
1866
1808
|
documents?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutContractInput;
|
|
1867
1809
|
payments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutContractInput;
|
|
1868
|
-
transitions?: Prisma.ContractTransitionUncheckedCreateNestedManyWithoutContractInput;
|
|
1869
1810
|
events?: Prisma.ContractEventUncheckedCreateNestedManyWithoutContractInput;
|
|
1870
1811
|
terminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutContractInput;
|
|
1871
1812
|
offerLetters?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutContractInput;
|
|
1872
|
-
prequalification?: Prisma.PrequalificationUncheckedCreateNestedOneWithoutContractInput;
|
|
1873
1813
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutContractInput;
|
|
1874
1814
|
};
|
|
1875
1815
|
export type ContractCreateOrConnectWithoutPropertyUnitInput = {
|
|
@@ -1931,11 +1871,9 @@ export type ContractCreateWithoutPaymentMethodInput = {
|
|
|
1931
1871
|
phases?: Prisma.ContractPhaseCreateNestedManyWithoutContractInput;
|
|
1932
1872
|
documents?: Prisma.ContractDocumentCreateNestedManyWithoutContractInput;
|
|
1933
1873
|
payments?: Prisma.ContractPaymentCreateNestedManyWithoutContractInput;
|
|
1934
|
-
transitions?: Prisma.ContractTransitionCreateNestedManyWithoutContractInput;
|
|
1935
1874
|
events?: Prisma.ContractEventCreateNestedManyWithoutContractInput;
|
|
1936
1875
|
terminations?: Prisma.ContractTerminationCreateNestedManyWithoutContractInput;
|
|
1937
1876
|
offerLetters?: Prisma.OfferLetterCreateNestedManyWithoutContractInput;
|
|
1938
|
-
prequalification?: Prisma.PrequalificationCreateNestedOneWithoutContractInput;
|
|
1939
1877
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutContractInput;
|
|
1940
1878
|
};
|
|
1941
1879
|
export type ContractUncheckedCreateWithoutPaymentMethodInput = {
|
|
@@ -1976,11 +1914,9 @@ export type ContractUncheckedCreateWithoutPaymentMethodInput = {
|
|
|
1976
1914
|
phases?: Prisma.ContractPhaseUncheckedCreateNestedManyWithoutContractInput;
|
|
1977
1915
|
documents?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutContractInput;
|
|
1978
1916
|
payments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutContractInput;
|
|
1979
|
-
transitions?: Prisma.ContractTransitionUncheckedCreateNestedManyWithoutContractInput;
|
|
1980
1917
|
events?: Prisma.ContractEventUncheckedCreateNestedManyWithoutContractInput;
|
|
1981
1918
|
terminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutContractInput;
|
|
1982
1919
|
offerLetters?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutContractInput;
|
|
1983
|
-
prequalification?: Prisma.PrequalificationUncheckedCreateNestedOneWithoutContractInput;
|
|
1984
1920
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutContractInput;
|
|
1985
1921
|
};
|
|
1986
1922
|
export type ContractCreateOrConnectWithoutPaymentMethodInput = {
|
|
@@ -2042,11 +1978,9 @@ export type ContractCreateWithoutPhasesInput = {
|
|
|
2042
1978
|
paymentMethod?: Prisma.PropertyPaymentMethodCreateNestedOneWithoutContractsInput;
|
|
2043
1979
|
documents?: Prisma.ContractDocumentCreateNestedManyWithoutContractInput;
|
|
2044
1980
|
payments?: Prisma.ContractPaymentCreateNestedManyWithoutContractInput;
|
|
2045
|
-
transitions?: Prisma.ContractTransitionCreateNestedManyWithoutContractInput;
|
|
2046
1981
|
events?: Prisma.ContractEventCreateNestedManyWithoutContractInput;
|
|
2047
1982
|
terminations?: Prisma.ContractTerminationCreateNestedManyWithoutContractInput;
|
|
2048
1983
|
offerLetters?: Prisma.OfferLetterCreateNestedManyWithoutContractInput;
|
|
2049
|
-
prequalification?: Prisma.PrequalificationCreateNestedOneWithoutContractInput;
|
|
2050
1984
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutContractInput;
|
|
2051
1985
|
};
|
|
2052
1986
|
export type ContractUncheckedCreateWithoutPhasesInput = {
|
|
@@ -2087,11 +2021,9 @@ export type ContractUncheckedCreateWithoutPhasesInput = {
|
|
|
2087
2021
|
updatedAt?: Date | string;
|
|
2088
2022
|
documents?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutContractInput;
|
|
2089
2023
|
payments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutContractInput;
|
|
2090
|
-
transitions?: Prisma.ContractTransitionUncheckedCreateNestedManyWithoutContractInput;
|
|
2091
2024
|
events?: Prisma.ContractEventUncheckedCreateNestedManyWithoutContractInput;
|
|
2092
2025
|
terminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutContractInput;
|
|
2093
2026
|
offerLetters?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutContractInput;
|
|
2094
|
-
prequalification?: Prisma.PrequalificationUncheckedCreateNestedOneWithoutContractInput;
|
|
2095
2027
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutContractInput;
|
|
2096
2028
|
};
|
|
2097
2029
|
export type ContractCreateOrConnectWithoutPhasesInput = {
|
|
@@ -2145,11 +2077,9 @@ export type ContractUpdateWithoutPhasesInput = {
|
|
|
2145
2077
|
paymentMethod?: Prisma.PropertyPaymentMethodUpdateOneWithoutContractsNestedInput;
|
|
2146
2078
|
documents?: Prisma.ContractDocumentUpdateManyWithoutContractNestedInput;
|
|
2147
2079
|
payments?: Prisma.ContractPaymentUpdateManyWithoutContractNestedInput;
|
|
2148
|
-
transitions?: Prisma.ContractTransitionUpdateManyWithoutContractNestedInput;
|
|
2149
2080
|
events?: Prisma.ContractEventUpdateManyWithoutContractNestedInput;
|
|
2150
2081
|
terminations?: Prisma.ContractTerminationUpdateManyWithoutContractNestedInput;
|
|
2151
2082
|
offerLetters?: Prisma.OfferLetterUpdateManyWithoutContractNestedInput;
|
|
2152
|
-
prequalification?: Prisma.PrequalificationUpdateOneWithoutContractNestedInput;
|
|
2153
2083
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutContractNestedInput;
|
|
2154
2084
|
};
|
|
2155
2085
|
export type ContractUncheckedUpdateWithoutPhasesInput = {
|
|
@@ -2190,11 +2120,9 @@ export type ContractUncheckedUpdateWithoutPhasesInput = {
|
|
|
2190
2120
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
2191
2121
|
documents?: Prisma.ContractDocumentUncheckedUpdateManyWithoutContractNestedInput;
|
|
2192
2122
|
payments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutContractNestedInput;
|
|
2193
|
-
transitions?: Prisma.ContractTransitionUncheckedUpdateManyWithoutContractNestedInput;
|
|
2194
2123
|
events?: Prisma.ContractEventUncheckedUpdateManyWithoutContractNestedInput;
|
|
2195
2124
|
terminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutContractNestedInput;
|
|
2196
2125
|
offerLetters?: Prisma.OfferLetterUncheckedUpdateManyWithoutContractNestedInput;
|
|
2197
|
-
prequalification?: Prisma.PrequalificationUncheckedUpdateOneWithoutContractNestedInput;
|
|
2198
2126
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutContractNestedInput;
|
|
2199
2127
|
};
|
|
2200
2128
|
export type ContractCreateWithoutPaymentsInput = {
|
|
@@ -2235,11 +2163,9 @@ export type ContractCreateWithoutPaymentsInput = {
|
|
|
2235
2163
|
paymentMethod?: Prisma.PropertyPaymentMethodCreateNestedOneWithoutContractsInput;
|
|
2236
2164
|
phases?: Prisma.ContractPhaseCreateNestedManyWithoutContractInput;
|
|
2237
2165
|
documents?: Prisma.ContractDocumentCreateNestedManyWithoutContractInput;
|
|
2238
|
-
transitions?: Prisma.ContractTransitionCreateNestedManyWithoutContractInput;
|
|
2239
2166
|
events?: Prisma.ContractEventCreateNestedManyWithoutContractInput;
|
|
2240
2167
|
terminations?: Prisma.ContractTerminationCreateNestedManyWithoutContractInput;
|
|
2241
2168
|
offerLetters?: Prisma.OfferLetterCreateNestedManyWithoutContractInput;
|
|
2242
|
-
prequalification?: Prisma.PrequalificationCreateNestedOneWithoutContractInput;
|
|
2243
2169
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutContractInput;
|
|
2244
2170
|
};
|
|
2245
2171
|
export type ContractUncheckedCreateWithoutPaymentsInput = {
|
|
@@ -2280,11 +2206,9 @@ export type ContractUncheckedCreateWithoutPaymentsInput = {
|
|
|
2280
2206
|
updatedAt?: Date | string;
|
|
2281
2207
|
phases?: Prisma.ContractPhaseUncheckedCreateNestedManyWithoutContractInput;
|
|
2282
2208
|
documents?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutContractInput;
|
|
2283
|
-
transitions?: Prisma.ContractTransitionUncheckedCreateNestedManyWithoutContractInput;
|
|
2284
2209
|
events?: Prisma.ContractEventUncheckedCreateNestedManyWithoutContractInput;
|
|
2285
2210
|
terminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutContractInput;
|
|
2286
2211
|
offerLetters?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutContractInput;
|
|
2287
|
-
prequalification?: Prisma.PrequalificationUncheckedCreateNestedOneWithoutContractInput;
|
|
2288
2212
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutContractInput;
|
|
2289
2213
|
};
|
|
2290
2214
|
export type ContractCreateOrConnectWithoutPaymentsInput = {
|
|
@@ -2338,11 +2262,9 @@ export type ContractUpdateWithoutPaymentsInput = {
|
|
|
2338
2262
|
paymentMethod?: Prisma.PropertyPaymentMethodUpdateOneWithoutContractsNestedInput;
|
|
2339
2263
|
phases?: Prisma.ContractPhaseUpdateManyWithoutContractNestedInput;
|
|
2340
2264
|
documents?: Prisma.ContractDocumentUpdateManyWithoutContractNestedInput;
|
|
2341
|
-
transitions?: Prisma.ContractTransitionUpdateManyWithoutContractNestedInput;
|
|
2342
2265
|
events?: Prisma.ContractEventUpdateManyWithoutContractNestedInput;
|
|
2343
2266
|
terminations?: Prisma.ContractTerminationUpdateManyWithoutContractNestedInput;
|
|
2344
2267
|
offerLetters?: Prisma.OfferLetterUpdateManyWithoutContractNestedInput;
|
|
2345
|
-
prequalification?: Prisma.PrequalificationUpdateOneWithoutContractNestedInput;
|
|
2346
2268
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutContractNestedInput;
|
|
2347
2269
|
};
|
|
2348
2270
|
export type ContractUncheckedUpdateWithoutPaymentsInput = {
|
|
@@ -2383,11 +2305,9 @@ export type ContractUncheckedUpdateWithoutPaymentsInput = {
|
|
|
2383
2305
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
2384
2306
|
phases?: Prisma.ContractPhaseUncheckedUpdateManyWithoutContractNestedInput;
|
|
2385
2307
|
documents?: Prisma.ContractDocumentUncheckedUpdateManyWithoutContractNestedInput;
|
|
2386
|
-
transitions?: Prisma.ContractTransitionUncheckedUpdateManyWithoutContractNestedInput;
|
|
2387
2308
|
events?: Prisma.ContractEventUncheckedUpdateManyWithoutContractNestedInput;
|
|
2388
2309
|
terminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutContractNestedInput;
|
|
2389
2310
|
offerLetters?: Prisma.OfferLetterUncheckedUpdateManyWithoutContractNestedInput;
|
|
2390
|
-
prequalification?: Prisma.PrequalificationUncheckedUpdateOneWithoutContractNestedInput;
|
|
2391
2311
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutContractNestedInput;
|
|
2392
2312
|
};
|
|
2393
2313
|
export type ContractCreateWithoutDocumentsInput = {
|
|
@@ -2428,11 +2348,9 @@ export type ContractCreateWithoutDocumentsInput = {
|
|
|
2428
2348
|
paymentMethod?: Prisma.PropertyPaymentMethodCreateNestedOneWithoutContractsInput;
|
|
2429
2349
|
phases?: Prisma.ContractPhaseCreateNestedManyWithoutContractInput;
|
|
2430
2350
|
payments?: Prisma.ContractPaymentCreateNestedManyWithoutContractInput;
|
|
2431
|
-
transitions?: Prisma.ContractTransitionCreateNestedManyWithoutContractInput;
|
|
2432
2351
|
events?: Prisma.ContractEventCreateNestedManyWithoutContractInput;
|
|
2433
2352
|
terminations?: Prisma.ContractTerminationCreateNestedManyWithoutContractInput;
|
|
2434
2353
|
offerLetters?: Prisma.OfferLetterCreateNestedManyWithoutContractInput;
|
|
2435
|
-
prequalification?: Prisma.PrequalificationCreateNestedOneWithoutContractInput;
|
|
2436
2354
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutContractInput;
|
|
2437
2355
|
};
|
|
2438
2356
|
export type ContractUncheckedCreateWithoutDocumentsInput = {
|
|
@@ -2473,11 +2391,9 @@ export type ContractUncheckedCreateWithoutDocumentsInput = {
|
|
|
2473
2391
|
updatedAt?: Date | string;
|
|
2474
2392
|
phases?: Prisma.ContractPhaseUncheckedCreateNestedManyWithoutContractInput;
|
|
2475
2393
|
payments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutContractInput;
|
|
2476
|
-
transitions?: Prisma.ContractTransitionUncheckedCreateNestedManyWithoutContractInput;
|
|
2477
2394
|
events?: Prisma.ContractEventUncheckedCreateNestedManyWithoutContractInput;
|
|
2478
2395
|
terminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutContractInput;
|
|
2479
2396
|
offerLetters?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutContractInput;
|
|
2480
|
-
prequalification?: Prisma.PrequalificationUncheckedCreateNestedOneWithoutContractInput;
|
|
2481
2397
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutContractInput;
|
|
2482
2398
|
};
|
|
2483
2399
|
export type ContractCreateOrConnectWithoutDocumentsInput = {
|
|
@@ -2531,11 +2447,9 @@ export type ContractUpdateWithoutDocumentsInput = {
|
|
|
2531
2447
|
paymentMethod?: Prisma.PropertyPaymentMethodUpdateOneWithoutContractsNestedInput;
|
|
2532
2448
|
phases?: Prisma.ContractPhaseUpdateManyWithoutContractNestedInput;
|
|
2533
2449
|
payments?: Prisma.ContractPaymentUpdateManyWithoutContractNestedInput;
|
|
2534
|
-
transitions?: Prisma.ContractTransitionUpdateManyWithoutContractNestedInput;
|
|
2535
2450
|
events?: Prisma.ContractEventUpdateManyWithoutContractNestedInput;
|
|
2536
2451
|
terminations?: Prisma.ContractTerminationUpdateManyWithoutContractNestedInput;
|
|
2537
2452
|
offerLetters?: Prisma.OfferLetterUpdateManyWithoutContractNestedInput;
|
|
2538
|
-
prequalification?: Prisma.PrequalificationUpdateOneWithoutContractNestedInput;
|
|
2539
2453
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutContractNestedInput;
|
|
2540
2454
|
};
|
|
2541
2455
|
export type ContractUncheckedUpdateWithoutDocumentsInput = {
|
|
@@ -2576,204 +2490,9 @@ export type ContractUncheckedUpdateWithoutDocumentsInput = {
|
|
|
2576
2490
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
2577
2491
|
phases?: Prisma.ContractPhaseUncheckedUpdateManyWithoutContractNestedInput;
|
|
2578
2492
|
payments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutContractNestedInput;
|
|
2579
|
-
transitions?: Prisma.ContractTransitionUncheckedUpdateManyWithoutContractNestedInput;
|
|
2580
|
-
events?: Prisma.ContractEventUncheckedUpdateManyWithoutContractNestedInput;
|
|
2581
|
-
terminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutContractNestedInput;
|
|
2582
|
-
offerLetters?: Prisma.OfferLetterUncheckedUpdateManyWithoutContractNestedInput;
|
|
2583
|
-
prequalification?: Prisma.PrequalificationUncheckedUpdateOneWithoutContractNestedInput;
|
|
2584
|
-
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutContractNestedInput;
|
|
2585
|
-
};
|
|
2586
|
-
export type ContractCreateWithoutTransitionsInput = {
|
|
2587
|
-
id?: string;
|
|
2588
|
-
contractNumber: string;
|
|
2589
|
-
title: string;
|
|
2590
|
-
description?: string | null;
|
|
2591
|
-
contractType: string;
|
|
2592
|
-
totalAmount: number;
|
|
2593
|
-
downPayment?: number;
|
|
2594
|
-
downPaymentPaid?: number;
|
|
2595
|
-
principal?: number | null;
|
|
2596
|
-
interestRate?: number | null;
|
|
2597
|
-
termMonths?: number | null;
|
|
2598
|
-
periodicPayment?: number | null;
|
|
2599
|
-
totalPaidToDate?: number;
|
|
2600
|
-
totalInterestPaid?: number;
|
|
2601
|
-
monthlyIncome?: number | null;
|
|
2602
|
-
monthlyExpenses?: number | null;
|
|
2603
|
-
preApprovalAnswers?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
2604
|
-
underwritingScore?: number | null;
|
|
2605
|
-
debtToIncomeRatio?: number | null;
|
|
2606
|
-
status?: $Enums.ContractStatus;
|
|
2607
|
-
state?: $Enums.ContractStatus;
|
|
2608
|
-
currentPhaseId?: string | null;
|
|
2609
|
-
nextPaymentDueDate?: Date | string | null;
|
|
2610
|
-
lastReminderSentAt?: Date | string | null;
|
|
2611
|
-
startDate?: Date | string | null;
|
|
2612
|
-
endDate?: Date | string | null;
|
|
2613
|
-
signedAt?: Date | string | null;
|
|
2614
|
-
terminatedAt?: Date | string | null;
|
|
2615
|
-
createdAt?: Date | string;
|
|
2616
|
-
updatedAt?: Date | string;
|
|
2617
|
-
tenant: Prisma.TenantCreateNestedOneWithoutContractsInput;
|
|
2618
|
-
propertyUnit: Prisma.PropertyUnitCreateNestedOneWithoutContractsInput;
|
|
2619
|
-
buyer: Prisma.UserCreateNestedOneWithoutContractsInput;
|
|
2620
|
-
seller?: Prisma.UserCreateNestedOneWithoutSoldContractsInput;
|
|
2621
|
-
paymentMethod?: Prisma.PropertyPaymentMethodCreateNestedOneWithoutContractsInput;
|
|
2622
|
-
phases?: Prisma.ContractPhaseCreateNestedManyWithoutContractInput;
|
|
2623
|
-
documents?: Prisma.ContractDocumentCreateNestedManyWithoutContractInput;
|
|
2624
|
-
payments?: Prisma.ContractPaymentCreateNestedManyWithoutContractInput;
|
|
2625
|
-
events?: Prisma.ContractEventCreateNestedManyWithoutContractInput;
|
|
2626
|
-
terminations?: Prisma.ContractTerminationCreateNestedManyWithoutContractInput;
|
|
2627
|
-
offerLetters?: Prisma.OfferLetterCreateNestedManyWithoutContractInput;
|
|
2628
|
-
prequalification?: Prisma.PrequalificationCreateNestedOneWithoutContractInput;
|
|
2629
|
-
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutContractInput;
|
|
2630
|
-
};
|
|
2631
|
-
export type ContractUncheckedCreateWithoutTransitionsInput = {
|
|
2632
|
-
id?: string;
|
|
2633
|
-
tenantId: string;
|
|
2634
|
-
propertyUnitId: string;
|
|
2635
|
-
buyerId: string;
|
|
2636
|
-
sellerId?: string | null;
|
|
2637
|
-
paymentMethodId?: string | null;
|
|
2638
|
-
contractNumber: string;
|
|
2639
|
-
title: string;
|
|
2640
|
-
description?: string | null;
|
|
2641
|
-
contractType: string;
|
|
2642
|
-
totalAmount: number;
|
|
2643
|
-
downPayment?: number;
|
|
2644
|
-
downPaymentPaid?: number;
|
|
2645
|
-
principal?: number | null;
|
|
2646
|
-
interestRate?: number | null;
|
|
2647
|
-
termMonths?: number | null;
|
|
2648
|
-
periodicPayment?: number | null;
|
|
2649
|
-
totalPaidToDate?: number;
|
|
2650
|
-
totalInterestPaid?: number;
|
|
2651
|
-
monthlyIncome?: number | null;
|
|
2652
|
-
monthlyExpenses?: number | null;
|
|
2653
|
-
preApprovalAnswers?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
2654
|
-
underwritingScore?: number | null;
|
|
2655
|
-
debtToIncomeRatio?: number | null;
|
|
2656
|
-
status?: $Enums.ContractStatus;
|
|
2657
|
-
state?: $Enums.ContractStatus;
|
|
2658
|
-
currentPhaseId?: string | null;
|
|
2659
|
-
nextPaymentDueDate?: Date | string | null;
|
|
2660
|
-
lastReminderSentAt?: Date | string | null;
|
|
2661
|
-
startDate?: Date | string | null;
|
|
2662
|
-
endDate?: Date | string | null;
|
|
2663
|
-
signedAt?: Date | string | null;
|
|
2664
|
-
terminatedAt?: Date | string | null;
|
|
2665
|
-
createdAt?: Date | string;
|
|
2666
|
-
updatedAt?: Date | string;
|
|
2667
|
-
phases?: Prisma.ContractPhaseUncheckedCreateNestedManyWithoutContractInput;
|
|
2668
|
-
documents?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutContractInput;
|
|
2669
|
-
payments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutContractInput;
|
|
2670
|
-
events?: Prisma.ContractEventUncheckedCreateNestedManyWithoutContractInput;
|
|
2671
|
-
terminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutContractInput;
|
|
2672
|
-
offerLetters?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutContractInput;
|
|
2673
|
-
prequalification?: Prisma.PrequalificationUncheckedCreateNestedOneWithoutContractInput;
|
|
2674
|
-
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutContractInput;
|
|
2675
|
-
};
|
|
2676
|
-
export type ContractCreateOrConnectWithoutTransitionsInput = {
|
|
2677
|
-
where: Prisma.ContractWhereUniqueInput;
|
|
2678
|
-
create: Prisma.XOR<Prisma.ContractCreateWithoutTransitionsInput, Prisma.ContractUncheckedCreateWithoutTransitionsInput>;
|
|
2679
|
-
};
|
|
2680
|
-
export type ContractUpsertWithoutTransitionsInput = {
|
|
2681
|
-
update: Prisma.XOR<Prisma.ContractUpdateWithoutTransitionsInput, Prisma.ContractUncheckedUpdateWithoutTransitionsInput>;
|
|
2682
|
-
create: Prisma.XOR<Prisma.ContractCreateWithoutTransitionsInput, Prisma.ContractUncheckedCreateWithoutTransitionsInput>;
|
|
2683
|
-
where?: Prisma.ContractWhereInput;
|
|
2684
|
-
};
|
|
2685
|
-
export type ContractUpdateToOneWithWhereWithoutTransitionsInput = {
|
|
2686
|
-
where?: Prisma.ContractWhereInput;
|
|
2687
|
-
data: Prisma.XOR<Prisma.ContractUpdateWithoutTransitionsInput, Prisma.ContractUncheckedUpdateWithoutTransitionsInput>;
|
|
2688
|
-
};
|
|
2689
|
-
export type ContractUpdateWithoutTransitionsInput = {
|
|
2690
|
-
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
2691
|
-
contractNumber?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
2692
|
-
title?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
2693
|
-
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2694
|
-
contractType?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
2695
|
-
totalAmount?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2696
|
-
downPayment?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2697
|
-
downPaymentPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2698
|
-
principal?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2699
|
-
interestRate?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2700
|
-
termMonths?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
2701
|
-
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2702
|
-
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2703
|
-
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2704
|
-
monthlyIncome?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2705
|
-
monthlyExpenses?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2706
|
-
preApprovalAnswers?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
2707
|
-
underwritingScore?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2708
|
-
debtToIncomeRatio?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2709
|
-
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
2710
|
-
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
2711
|
-
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2712
|
-
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2713
|
-
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2714
|
-
startDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2715
|
-
endDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2716
|
-
signedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2717
|
-
terminatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2718
|
-
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
2719
|
-
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
2720
|
-
tenant?: Prisma.TenantUpdateOneRequiredWithoutContractsNestedInput;
|
|
2721
|
-
propertyUnit?: Prisma.PropertyUnitUpdateOneRequiredWithoutContractsNestedInput;
|
|
2722
|
-
buyer?: Prisma.UserUpdateOneRequiredWithoutContractsNestedInput;
|
|
2723
|
-
seller?: Prisma.UserUpdateOneWithoutSoldContractsNestedInput;
|
|
2724
|
-
paymentMethod?: Prisma.PropertyPaymentMethodUpdateOneWithoutContractsNestedInput;
|
|
2725
|
-
phases?: Prisma.ContractPhaseUpdateManyWithoutContractNestedInput;
|
|
2726
|
-
documents?: Prisma.ContractDocumentUpdateManyWithoutContractNestedInput;
|
|
2727
|
-
payments?: Prisma.ContractPaymentUpdateManyWithoutContractNestedInput;
|
|
2728
|
-
events?: Prisma.ContractEventUpdateManyWithoutContractNestedInput;
|
|
2729
|
-
terminations?: Prisma.ContractTerminationUpdateManyWithoutContractNestedInput;
|
|
2730
|
-
offerLetters?: Prisma.OfferLetterUpdateManyWithoutContractNestedInput;
|
|
2731
|
-
prequalification?: Prisma.PrequalificationUpdateOneWithoutContractNestedInput;
|
|
2732
|
-
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutContractNestedInput;
|
|
2733
|
-
};
|
|
2734
|
-
export type ContractUncheckedUpdateWithoutTransitionsInput = {
|
|
2735
|
-
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
2736
|
-
tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
2737
|
-
propertyUnitId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
2738
|
-
buyerId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
2739
|
-
sellerId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2740
|
-
paymentMethodId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2741
|
-
contractNumber?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
2742
|
-
title?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
2743
|
-
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2744
|
-
contractType?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
2745
|
-
totalAmount?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2746
|
-
downPayment?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2747
|
-
downPaymentPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2748
|
-
principal?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2749
|
-
interestRate?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2750
|
-
termMonths?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
2751
|
-
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2752
|
-
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2753
|
-
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2754
|
-
monthlyIncome?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2755
|
-
monthlyExpenses?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2756
|
-
preApprovalAnswers?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
2757
|
-
underwritingScore?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2758
|
-
debtToIncomeRatio?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2759
|
-
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
2760
|
-
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
2761
|
-
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2762
|
-
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2763
|
-
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2764
|
-
startDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2765
|
-
endDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2766
|
-
signedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2767
|
-
terminatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2768
|
-
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
2769
|
-
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
2770
|
-
phases?: Prisma.ContractPhaseUncheckedUpdateManyWithoutContractNestedInput;
|
|
2771
|
-
documents?: Prisma.ContractDocumentUncheckedUpdateManyWithoutContractNestedInput;
|
|
2772
|
-
payments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutContractNestedInput;
|
|
2773
2493
|
events?: Prisma.ContractEventUncheckedUpdateManyWithoutContractNestedInput;
|
|
2774
2494
|
terminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutContractNestedInput;
|
|
2775
2495
|
offerLetters?: Prisma.OfferLetterUncheckedUpdateManyWithoutContractNestedInput;
|
|
2776
|
-
prequalification?: Prisma.PrequalificationUncheckedUpdateOneWithoutContractNestedInput;
|
|
2777
2496
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutContractNestedInput;
|
|
2778
2497
|
};
|
|
2779
2498
|
export type ContractCreateWithoutEventsInput = {
|
|
@@ -2815,10 +2534,8 @@ export type ContractCreateWithoutEventsInput = {
|
|
|
2815
2534
|
phases?: Prisma.ContractPhaseCreateNestedManyWithoutContractInput;
|
|
2816
2535
|
documents?: Prisma.ContractDocumentCreateNestedManyWithoutContractInput;
|
|
2817
2536
|
payments?: Prisma.ContractPaymentCreateNestedManyWithoutContractInput;
|
|
2818
|
-
transitions?: Prisma.ContractTransitionCreateNestedManyWithoutContractInput;
|
|
2819
2537
|
terminations?: Prisma.ContractTerminationCreateNestedManyWithoutContractInput;
|
|
2820
2538
|
offerLetters?: Prisma.OfferLetterCreateNestedManyWithoutContractInput;
|
|
2821
|
-
prequalification?: Prisma.PrequalificationCreateNestedOneWithoutContractInput;
|
|
2822
2539
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutContractInput;
|
|
2823
2540
|
};
|
|
2824
2541
|
export type ContractUncheckedCreateWithoutEventsInput = {
|
|
@@ -2860,10 +2577,8 @@ export type ContractUncheckedCreateWithoutEventsInput = {
|
|
|
2860
2577
|
phases?: Prisma.ContractPhaseUncheckedCreateNestedManyWithoutContractInput;
|
|
2861
2578
|
documents?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutContractInput;
|
|
2862
2579
|
payments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutContractInput;
|
|
2863
|
-
transitions?: Prisma.ContractTransitionUncheckedCreateNestedManyWithoutContractInput;
|
|
2864
2580
|
terminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutContractInput;
|
|
2865
2581
|
offerLetters?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutContractInput;
|
|
2866
|
-
prequalification?: Prisma.PrequalificationUncheckedCreateNestedOneWithoutContractInput;
|
|
2867
2582
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutContractInput;
|
|
2868
2583
|
};
|
|
2869
2584
|
export type ContractCreateOrConnectWithoutEventsInput = {
|
|
@@ -2918,10 +2633,8 @@ export type ContractUpdateWithoutEventsInput = {
|
|
|
2918
2633
|
phases?: Prisma.ContractPhaseUpdateManyWithoutContractNestedInput;
|
|
2919
2634
|
documents?: Prisma.ContractDocumentUpdateManyWithoutContractNestedInput;
|
|
2920
2635
|
payments?: Prisma.ContractPaymentUpdateManyWithoutContractNestedInput;
|
|
2921
|
-
transitions?: Prisma.ContractTransitionUpdateManyWithoutContractNestedInput;
|
|
2922
2636
|
terminations?: Prisma.ContractTerminationUpdateManyWithoutContractNestedInput;
|
|
2923
2637
|
offerLetters?: Prisma.OfferLetterUpdateManyWithoutContractNestedInput;
|
|
2924
|
-
prequalification?: Prisma.PrequalificationUpdateOneWithoutContractNestedInput;
|
|
2925
2638
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutContractNestedInput;
|
|
2926
2639
|
};
|
|
2927
2640
|
export type ContractUncheckedUpdateWithoutEventsInput = {
|
|
@@ -2963,10 +2676,8 @@ export type ContractUncheckedUpdateWithoutEventsInput = {
|
|
|
2963
2676
|
phases?: Prisma.ContractPhaseUncheckedUpdateManyWithoutContractNestedInput;
|
|
2964
2677
|
documents?: Prisma.ContractDocumentUncheckedUpdateManyWithoutContractNestedInput;
|
|
2965
2678
|
payments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutContractNestedInput;
|
|
2966
|
-
transitions?: Prisma.ContractTransitionUncheckedUpdateManyWithoutContractNestedInput;
|
|
2967
2679
|
terminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutContractNestedInput;
|
|
2968
2680
|
offerLetters?: Prisma.OfferLetterUncheckedUpdateManyWithoutContractNestedInput;
|
|
2969
|
-
prequalification?: Prisma.PrequalificationUncheckedUpdateOneWithoutContractNestedInput;
|
|
2970
2681
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutContractNestedInput;
|
|
2971
2682
|
};
|
|
2972
2683
|
export type ContractCreateWithoutOfferLettersInput = {
|
|
@@ -3008,10 +2719,8 @@ export type ContractCreateWithoutOfferLettersInput = {
|
|
|
3008
2719
|
phases?: Prisma.ContractPhaseCreateNestedManyWithoutContractInput;
|
|
3009
2720
|
documents?: Prisma.ContractDocumentCreateNestedManyWithoutContractInput;
|
|
3010
2721
|
payments?: Prisma.ContractPaymentCreateNestedManyWithoutContractInput;
|
|
3011
|
-
transitions?: Prisma.ContractTransitionCreateNestedManyWithoutContractInput;
|
|
3012
2722
|
events?: Prisma.ContractEventCreateNestedManyWithoutContractInput;
|
|
3013
2723
|
terminations?: Prisma.ContractTerminationCreateNestedManyWithoutContractInput;
|
|
3014
|
-
prequalification?: Prisma.PrequalificationCreateNestedOneWithoutContractInput;
|
|
3015
2724
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutContractInput;
|
|
3016
2725
|
};
|
|
3017
2726
|
export type ContractUncheckedCreateWithoutOfferLettersInput = {
|
|
@@ -3053,10 +2762,8 @@ export type ContractUncheckedCreateWithoutOfferLettersInput = {
|
|
|
3053
2762
|
phases?: Prisma.ContractPhaseUncheckedCreateNestedManyWithoutContractInput;
|
|
3054
2763
|
documents?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutContractInput;
|
|
3055
2764
|
payments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutContractInput;
|
|
3056
|
-
transitions?: Prisma.ContractTransitionUncheckedCreateNestedManyWithoutContractInput;
|
|
3057
2765
|
events?: Prisma.ContractEventUncheckedCreateNestedManyWithoutContractInput;
|
|
3058
2766
|
terminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutContractInput;
|
|
3059
|
-
prequalification?: Prisma.PrequalificationUncheckedCreateNestedOneWithoutContractInput;
|
|
3060
2767
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutContractInput;
|
|
3061
2768
|
};
|
|
3062
2769
|
export type ContractCreateOrConnectWithoutOfferLettersInput = {
|
|
@@ -3111,10 +2818,8 @@ export type ContractUpdateWithoutOfferLettersInput = {
|
|
|
3111
2818
|
phases?: Prisma.ContractPhaseUpdateManyWithoutContractNestedInput;
|
|
3112
2819
|
documents?: Prisma.ContractDocumentUpdateManyWithoutContractNestedInput;
|
|
3113
2820
|
payments?: Prisma.ContractPaymentUpdateManyWithoutContractNestedInput;
|
|
3114
|
-
transitions?: Prisma.ContractTransitionUpdateManyWithoutContractNestedInput;
|
|
3115
2821
|
events?: Prisma.ContractEventUpdateManyWithoutContractNestedInput;
|
|
3116
2822
|
terminations?: Prisma.ContractTerminationUpdateManyWithoutContractNestedInput;
|
|
3117
|
-
prequalification?: Prisma.PrequalificationUpdateOneWithoutContractNestedInput;
|
|
3118
2823
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutContractNestedInput;
|
|
3119
2824
|
};
|
|
3120
2825
|
export type ContractUncheckedUpdateWithoutOfferLettersInput = {
|
|
@@ -3156,10 +2861,8 @@ export type ContractUncheckedUpdateWithoutOfferLettersInput = {
|
|
|
3156
2861
|
phases?: Prisma.ContractPhaseUncheckedUpdateManyWithoutContractNestedInput;
|
|
3157
2862
|
documents?: Prisma.ContractDocumentUncheckedUpdateManyWithoutContractNestedInput;
|
|
3158
2863
|
payments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutContractNestedInput;
|
|
3159
|
-
transitions?: Prisma.ContractTransitionUncheckedUpdateManyWithoutContractNestedInput;
|
|
3160
2864
|
events?: Prisma.ContractEventUncheckedUpdateManyWithoutContractNestedInput;
|
|
3161
2865
|
terminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutContractNestedInput;
|
|
3162
|
-
prequalification?: Prisma.PrequalificationUncheckedUpdateOneWithoutContractNestedInput;
|
|
3163
2866
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutContractNestedInput;
|
|
3164
2867
|
};
|
|
3165
2868
|
export type ContractCreateWithoutTerminationsInput = {
|
|
@@ -3201,10 +2904,8 @@ export type ContractCreateWithoutTerminationsInput = {
|
|
|
3201
2904
|
phases?: Prisma.ContractPhaseCreateNestedManyWithoutContractInput;
|
|
3202
2905
|
documents?: Prisma.ContractDocumentCreateNestedManyWithoutContractInput;
|
|
3203
2906
|
payments?: Prisma.ContractPaymentCreateNestedManyWithoutContractInput;
|
|
3204
|
-
transitions?: Prisma.ContractTransitionCreateNestedManyWithoutContractInput;
|
|
3205
2907
|
events?: Prisma.ContractEventCreateNestedManyWithoutContractInput;
|
|
3206
2908
|
offerLetters?: Prisma.OfferLetterCreateNestedManyWithoutContractInput;
|
|
3207
|
-
prequalification?: Prisma.PrequalificationCreateNestedOneWithoutContractInput;
|
|
3208
2909
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutContractInput;
|
|
3209
2910
|
};
|
|
3210
2911
|
export type ContractUncheckedCreateWithoutTerminationsInput = {
|
|
@@ -3246,10 +2947,8 @@ export type ContractUncheckedCreateWithoutTerminationsInput = {
|
|
|
3246
2947
|
phases?: Prisma.ContractPhaseUncheckedCreateNestedManyWithoutContractInput;
|
|
3247
2948
|
documents?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutContractInput;
|
|
3248
2949
|
payments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutContractInput;
|
|
3249
|
-
transitions?: Prisma.ContractTransitionUncheckedCreateNestedManyWithoutContractInput;
|
|
3250
2950
|
events?: Prisma.ContractEventUncheckedCreateNestedManyWithoutContractInput;
|
|
3251
2951
|
offerLetters?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutContractInput;
|
|
3252
|
-
prequalification?: Prisma.PrequalificationUncheckedCreateNestedOneWithoutContractInput;
|
|
3253
2952
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutContractInput;
|
|
3254
2953
|
};
|
|
3255
2954
|
export type ContractCreateOrConnectWithoutTerminationsInput = {
|
|
@@ -3304,10 +3003,8 @@ export type ContractUpdateWithoutTerminationsInput = {
|
|
|
3304
3003
|
phases?: Prisma.ContractPhaseUpdateManyWithoutContractNestedInput;
|
|
3305
3004
|
documents?: Prisma.ContractDocumentUpdateManyWithoutContractNestedInput;
|
|
3306
3005
|
payments?: Prisma.ContractPaymentUpdateManyWithoutContractNestedInput;
|
|
3307
|
-
transitions?: Prisma.ContractTransitionUpdateManyWithoutContractNestedInput;
|
|
3308
3006
|
events?: Prisma.ContractEventUpdateManyWithoutContractNestedInput;
|
|
3309
3007
|
offerLetters?: Prisma.OfferLetterUpdateManyWithoutContractNestedInput;
|
|
3310
|
-
prequalification?: Prisma.PrequalificationUpdateOneWithoutContractNestedInput;
|
|
3311
3008
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutContractNestedInput;
|
|
3312
3009
|
};
|
|
3313
3010
|
export type ContractUncheckedUpdateWithoutTerminationsInput = {
|
|
@@ -3349,203 +3046,8 @@ export type ContractUncheckedUpdateWithoutTerminationsInput = {
|
|
|
3349
3046
|
phases?: Prisma.ContractPhaseUncheckedUpdateManyWithoutContractNestedInput;
|
|
3350
3047
|
documents?: Prisma.ContractDocumentUncheckedUpdateManyWithoutContractNestedInput;
|
|
3351
3048
|
payments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutContractNestedInput;
|
|
3352
|
-
transitions?: Prisma.ContractTransitionUncheckedUpdateManyWithoutContractNestedInput;
|
|
3353
3049
|
events?: Prisma.ContractEventUncheckedUpdateManyWithoutContractNestedInput;
|
|
3354
3050
|
offerLetters?: Prisma.OfferLetterUncheckedUpdateManyWithoutContractNestedInput;
|
|
3355
|
-
prequalification?: Prisma.PrequalificationUncheckedUpdateOneWithoutContractNestedInput;
|
|
3356
|
-
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutContractNestedInput;
|
|
3357
|
-
};
|
|
3358
|
-
export type ContractCreateWithoutPrequalificationInput = {
|
|
3359
|
-
id?: string;
|
|
3360
|
-
contractNumber: string;
|
|
3361
|
-
title: string;
|
|
3362
|
-
description?: string | null;
|
|
3363
|
-
contractType: string;
|
|
3364
|
-
totalAmount: number;
|
|
3365
|
-
downPayment?: number;
|
|
3366
|
-
downPaymentPaid?: number;
|
|
3367
|
-
principal?: number | null;
|
|
3368
|
-
interestRate?: number | null;
|
|
3369
|
-
termMonths?: number | null;
|
|
3370
|
-
periodicPayment?: number | null;
|
|
3371
|
-
totalPaidToDate?: number;
|
|
3372
|
-
totalInterestPaid?: number;
|
|
3373
|
-
monthlyIncome?: number | null;
|
|
3374
|
-
monthlyExpenses?: number | null;
|
|
3375
|
-
preApprovalAnswers?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
3376
|
-
underwritingScore?: number | null;
|
|
3377
|
-
debtToIncomeRatio?: number | null;
|
|
3378
|
-
status?: $Enums.ContractStatus;
|
|
3379
|
-
state?: $Enums.ContractStatus;
|
|
3380
|
-
currentPhaseId?: string | null;
|
|
3381
|
-
nextPaymentDueDate?: Date | string | null;
|
|
3382
|
-
lastReminderSentAt?: Date | string | null;
|
|
3383
|
-
startDate?: Date | string | null;
|
|
3384
|
-
endDate?: Date | string | null;
|
|
3385
|
-
signedAt?: Date | string | null;
|
|
3386
|
-
terminatedAt?: Date | string | null;
|
|
3387
|
-
createdAt?: Date | string;
|
|
3388
|
-
updatedAt?: Date | string;
|
|
3389
|
-
tenant: Prisma.TenantCreateNestedOneWithoutContractsInput;
|
|
3390
|
-
propertyUnit: Prisma.PropertyUnitCreateNestedOneWithoutContractsInput;
|
|
3391
|
-
buyer: Prisma.UserCreateNestedOneWithoutContractsInput;
|
|
3392
|
-
seller?: Prisma.UserCreateNestedOneWithoutSoldContractsInput;
|
|
3393
|
-
paymentMethod?: Prisma.PropertyPaymentMethodCreateNestedOneWithoutContractsInput;
|
|
3394
|
-
phases?: Prisma.ContractPhaseCreateNestedManyWithoutContractInput;
|
|
3395
|
-
documents?: Prisma.ContractDocumentCreateNestedManyWithoutContractInput;
|
|
3396
|
-
payments?: Prisma.ContractPaymentCreateNestedManyWithoutContractInput;
|
|
3397
|
-
transitions?: Prisma.ContractTransitionCreateNestedManyWithoutContractInput;
|
|
3398
|
-
events?: Prisma.ContractEventCreateNestedManyWithoutContractInput;
|
|
3399
|
-
terminations?: Prisma.ContractTerminationCreateNestedManyWithoutContractInput;
|
|
3400
|
-
offerLetters?: Prisma.OfferLetterCreateNestedManyWithoutContractInput;
|
|
3401
|
-
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutContractInput;
|
|
3402
|
-
};
|
|
3403
|
-
export type ContractUncheckedCreateWithoutPrequalificationInput = {
|
|
3404
|
-
id?: string;
|
|
3405
|
-
tenantId: string;
|
|
3406
|
-
propertyUnitId: string;
|
|
3407
|
-
buyerId: string;
|
|
3408
|
-
sellerId?: string | null;
|
|
3409
|
-
paymentMethodId?: string | null;
|
|
3410
|
-
contractNumber: string;
|
|
3411
|
-
title: string;
|
|
3412
|
-
description?: string | null;
|
|
3413
|
-
contractType: string;
|
|
3414
|
-
totalAmount: number;
|
|
3415
|
-
downPayment?: number;
|
|
3416
|
-
downPaymentPaid?: number;
|
|
3417
|
-
principal?: number | null;
|
|
3418
|
-
interestRate?: number | null;
|
|
3419
|
-
termMonths?: number | null;
|
|
3420
|
-
periodicPayment?: number | null;
|
|
3421
|
-
totalPaidToDate?: number;
|
|
3422
|
-
totalInterestPaid?: number;
|
|
3423
|
-
monthlyIncome?: number | null;
|
|
3424
|
-
monthlyExpenses?: number | null;
|
|
3425
|
-
preApprovalAnswers?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
3426
|
-
underwritingScore?: number | null;
|
|
3427
|
-
debtToIncomeRatio?: number | null;
|
|
3428
|
-
status?: $Enums.ContractStatus;
|
|
3429
|
-
state?: $Enums.ContractStatus;
|
|
3430
|
-
currentPhaseId?: string | null;
|
|
3431
|
-
nextPaymentDueDate?: Date | string | null;
|
|
3432
|
-
lastReminderSentAt?: Date | string | null;
|
|
3433
|
-
startDate?: Date | string | null;
|
|
3434
|
-
endDate?: Date | string | null;
|
|
3435
|
-
signedAt?: Date | string | null;
|
|
3436
|
-
terminatedAt?: Date | string | null;
|
|
3437
|
-
createdAt?: Date | string;
|
|
3438
|
-
updatedAt?: Date | string;
|
|
3439
|
-
phases?: Prisma.ContractPhaseUncheckedCreateNestedManyWithoutContractInput;
|
|
3440
|
-
documents?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutContractInput;
|
|
3441
|
-
payments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutContractInput;
|
|
3442
|
-
transitions?: Prisma.ContractTransitionUncheckedCreateNestedManyWithoutContractInput;
|
|
3443
|
-
events?: Prisma.ContractEventUncheckedCreateNestedManyWithoutContractInput;
|
|
3444
|
-
terminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutContractInput;
|
|
3445
|
-
offerLetters?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutContractInput;
|
|
3446
|
-
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutContractInput;
|
|
3447
|
-
};
|
|
3448
|
-
export type ContractCreateOrConnectWithoutPrequalificationInput = {
|
|
3449
|
-
where: Prisma.ContractWhereUniqueInput;
|
|
3450
|
-
create: Prisma.XOR<Prisma.ContractCreateWithoutPrequalificationInput, Prisma.ContractUncheckedCreateWithoutPrequalificationInput>;
|
|
3451
|
-
};
|
|
3452
|
-
export type ContractUpsertWithoutPrequalificationInput = {
|
|
3453
|
-
update: Prisma.XOR<Prisma.ContractUpdateWithoutPrequalificationInput, Prisma.ContractUncheckedUpdateWithoutPrequalificationInput>;
|
|
3454
|
-
create: Prisma.XOR<Prisma.ContractCreateWithoutPrequalificationInput, Prisma.ContractUncheckedCreateWithoutPrequalificationInput>;
|
|
3455
|
-
where?: Prisma.ContractWhereInput;
|
|
3456
|
-
};
|
|
3457
|
-
export type ContractUpdateToOneWithWhereWithoutPrequalificationInput = {
|
|
3458
|
-
where?: Prisma.ContractWhereInput;
|
|
3459
|
-
data: Prisma.XOR<Prisma.ContractUpdateWithoutPrequalificationInput, Prisma.ContractUncheckedUpdateWithoutPrequalificationInput>;
|
|
3460
|
-
};
|
|
3461
|
-
export type ContractUpdateWithoutPrequalificationInput = {
|
|
3462
|
-
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
3463
|
-
contractNumber?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
3464
|
-
title?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
3465
|
-
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
3466
|
-
contractType?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
3467
|
-
totalAmount?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3468
|
-
downPayment?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3469
|
-
downPaymentPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3470
|
-
principal?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
3471
|
-
interestRate?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
3472
|
-
termMonths?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
3473
|
-
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
3474
|
-
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3475
|
-
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3476
|
-
monthlyIncome?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
3477
|
-
monthlyExpenses?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
3478
|
-
preApprovalAnswers?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
3479
|
-
underwritingScore?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
3480
|
-
debtToIncomeRatio?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
3481
|
-
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3482
|
-
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3483
|
-
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
3484
|
-
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
3485
|
-
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
3486
|
-
startDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
3487
|
-
endDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
3488
|
-
signedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
3489
|
-
terminatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
3490
|
-
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
3491
|
-
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
3492
|
-
tenant?: Prisma.TenantUpdateOneRequiredWithoutContractsNestedInput;
|
|
3493
|
-
propertyUnit?: Prisma.PropertyUnitUpdateOneRequiredWithoutContractsNestedInput;
|
|
3494
|
-
buyer?: Prisma.UserUpdateOneRequiredWithoutContractsNestedInput;
|
|
3495
|
-
seller?: Prisma.UserUpdateOneWithoutSoldContractsNestedInput;
|
|
3496
|
-
paymentMethod?: Prisma.PropertyPaymentMethodUpdateOneWithoutContractsNestedInput;
|
|
3497
|
-
phases?: Prisma.ContractPhaseUpdateManyWithoutContractNestedInput;
|
|
3498
|
-
documents?: Prisma.ContractDocumentUpdateManyWithoutContractNestedInput;
|
|
3499
|
-
payments?: Prisma.ContractPaymentUpdateManyWithoutContractNestedInput;
|
|
3500
|
-
transitions?: Prisma.ContractTransitionUpdateManyWithoutContractNestedInput;
|
|
3501
|
-
events?: Prisma.ContractEventUpdateManyWithoutContractNestedInput;
|
|
3502
|
-
terminations?: Prisma.ContractTerminationUpdateManyWithoutContractNestedInput;
|
|
3503
|
-
offerLetters?: Prisma.OfferLetterUpdateManyWithoutContractNestedInput;
|
|
3504
|
-
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutContractNestedInput;
|
|
3505
|
-
};
|
|
3506
|
-
export type ContractUncheckedUpdateWithoutPrequalificationInput = {
|
|
3507
|
-
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
3508
|
-
tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
3509
|
-
propertyUnitId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
3510
|
-
buyerId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
3511
|
-
sellerId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
3512
|
-
paymentMethodId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
3513
|
-
contractNumber?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
3514
|
-
title?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
3515
|
-
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
3516
|
-
contractType?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
3517
|
-
totalAmount?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3518
|
-
downPayment?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3519
|
-
downPaymentPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3520
|
-
principal?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
3521
|
-
interestRate?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
3522
|
-
termMonths?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
3523
|
-
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
3524
|
-
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3525
|
-
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3526
|
-
monthlyIncome?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
3527
|
-
monthlyExpenses?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
3528
|
-
preApprovalAnswers?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
3529
|
-
underwritingScore?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
3530
|
-
debtToIncomeRatio?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
3531
|
-
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3532
|
-
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3533
|
-
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
3534
|
-
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
3535
|
-
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
3536
|
-
startDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
3537
|
-
endDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
3538
|
-
signedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
3539
|
-
terminatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
3540
|
-
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
3541
|
-
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
3542
|
-
phases?: Prisma.ContractPhaseUncheckedUpdateManyWithoutContractNestedInput;
|
|
3543
|
-
documents?: Prisma.ContractDocumentUncheckedUpdateManyWithoutContractNestedInput;
|
|
3544
|
-
payments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutContractNestedInput;
|
|
3545
|
-
transitions?: Prisma.ContractTransitionUncheckedUpdateManyWithoutContractNestedInput;
|
|
3546
|
-
events?: Prisma.ContractEventUncheckedUpdateManyWithoutContractNestedInput;
|
|
3547
|
-
terminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutContractNestedInput;
|
|
3548
|
-
offerLetters?: Prisma.OfferLetterUncheckedUpdateManyWithoutContractNestedInput;
|
|
3549
3051
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutContractNestedInput;
|
|
3550
3052
|
};
|
|
3551
3053
|
export type ContractCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
@@ -3587,11 +3089,9 @@ export type ContractCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
3587
3089
|
phases?: Prisma.ContractPhaseCreateNestedManyWithoutContractInput;
|
|
3588
3090
|
documents?: Prisma.ContractDocumentCreateNestedManyWithoutContractInput;
|
|
3589
3091
|
payments?: Prisma.ContractPaymentCreateNestedManyWithoutContractInput;
|
|
3590
|
-
transitions?: Prisma.ContractTransitionCreateNestedManyWithoutContractInput;
|
|
3591
3092
|
events?: Prisma.ContractEventCreateNestedManyWithoutContractInput;
|
|
3592
3093
|
terminations?: Prisma.ContractTerminationCreateNestedManyWithoutContractInput;
|
|
3593
3094
|
offerLetters?: Prisma.OfferLetterCreateNestedManyWithoutContractInput;
|
|
3594
|
-
prequalification?: Prisma.PrequalificationCreateNestedOneWithoutContractInput;
|
|
3595
3095
|
};
|
|
3596
3096
|
export type ContractUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
3597
3097
|
id?: string;
|
|
@@ -3632,11 +3132,9 @@ export type ContractUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
3632
3132
|
phases?: Prisma.ContractPhaseUncheckedCreateNestedManyWithoutContractInput;
|
|
3633
3133
|
documents?: Prisma.ContractDocumentUncheckedCreateNestedManyWithoutContractInput;
|
|
3634
3134
|
payments?: Prisma.ContractPaymentUncheckedCreateNestedManyWithoutContractInput;
|
|
3635
|
-
transitions?: Prisma.ContractTransitionUncheckedCreateNestedManyWithoutContractInput;
|
|
3636
3135
|
events?: Prisma.ContractEventUncheckedCreateNestedManyWithoutContractInput;
|
|
3637
3136
|
terminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutContractInput;
|
|
3638
3137
|
offerLetters?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutContractInput;
|
|
3639
|
-
prequalification?: Prisma.PrequalificationUncheckedCreateNestedOneWithoutContractInput;
|
|
3640
3138
|
};
|
|
3641
3139
|
export type ContractCreateOrConnectWithoutPaymentMethodChangeRequestsInput = {
|
|
3642
3140
|
where: Prisma.ContractWhereUniqueInput;
|
|
@@ -3690,11 +3188,9 @@ export type ContractUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
3690
3188
|
phases?: Prisma.ContractPhaseUpdateManyWithoutContractNestedInput;
|
|
3691
3189
|
documents?: Prisma.ContractDocumentUpdateManyWithoutContractNestedInput;
|
|
3692
3190
|
payments?: Prisma.ContractPaymentUpdateManyWithoutContractNestedInput;
|
|
3693
|
-
transitions?: Prisma.ContractTransitionUpdateManyWithoutContractNestedInput;
|
|
3694
3191
|
events?: Prisma.ContractEventUpdateManyWithoutContractNestedInput;
|
|
3695
3192
|
terminations?: Prisma.ContractTerminationUpdateManyWithoutContractNestedInput;
|
|
3696
3193
|
offerLetters?: Prisma.OfferLetterUpdateManyWithoutContractNestedInput;
|
|
3697
|
-
prequalification?: Prisma.PrequalificationUpdateOneWithoutContractNestedInput;
|
|
3698
3194
|
};
|
|
3699
3195
|
export type ContractUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
3700
3196
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -3735,11 +3231,9 @@ export type ContractUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
3735
3231
|
phases?: Prisma.ContractPhaseUncheckedUpdateManyWithoutContractNestedInput;
|
|
3736
3232
|
documents?: Prisma.ContractDocumentUncheckedUpdateManyWithoutContractNestedInput;
|
|
3737
3233
|
payments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutContractNestedInput;
|
|
3738
|
-
transitions?: Prisma.ContractTransitionUncheckedUpdateManyWithoutContractNestedInput;
|
|
3739
3234
|
events?: Prisma.ContractEventUncheckedUpdateManyWithoutContractNestedInput;
|
|
3740
3235
|
terminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutContractNestedInput;
|
|
3741
3236
|
offerLetters?: Prisma.OfferLetterUncheckedUpdateManyWithoutContractNestedInput;
|
|
3742
|
-
prequalification?: Prisma.PrequalificationUncheckedUpdateOneWithoutContractNestedInput;
|
|
3743
3237
|
};
|
|
3744
3238
|
export type ContractCreateManyBuyerInput = {
|
|
3745
3239
|
id?: string;
|
|
@@ -3851,11 +3345,9 @@ export type ContractUpdateWithoutBuyerInput = {
|
|
|
3851
3345
|
phases?: Prisma.ContractPhaseUpdateManyWithoutContractNestedInput;
|
|
3852
3346
|
documents?: Prisma.ContractDocumentUpdateManyWithoutContractNestedInput;
|
|
3853
3347
|
payments?: Prisma.ContractPaymentUpdateManyWithoutContractNestedInput;
|
|
3854
|
-
transitions?: Prisma.ContractTransitionUpdateManyWithoutContractNestedInput;
|
|
3855
3348
|
events?: Prisma.ContractEventUpdateManyWithoutContractNestedInput;
|
|
3856
3349
|
terminations?: Prisma.ContractTerminationUpdateManyWithoutContractNestedInput;
|
|
3857
3350
|
offerLetters?: Prisma.OfferLetterUpdateManyWithoutContractNestedInput;
|
|
3858
|
-
prequalification?: Prisma.PrequalificationUpdateOneWithoutContractNestedInput;
|
|
3859
3351
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutContractNestedInput;
|
|
3860
3352
|
};
|
|
3861
3353
|
export type ContractUncheckedUpdateWithoutBuyerInput = {
|
|
@@ -3896,11 +3388,9 @@ export type ContractUncheckedUpdateWithoutBuyerInput = {
|
|
|
3896
3388
|
phases?: Prisma.ContractPhaseUncheckedUpdateManyWithoutContractNestedInput;
|
|
3897
3389
|
documents?: Prisma.ContractDocumentUncheckedUpdateManyWithoutContractNestedInput;
|
|
3898
3390
|
payments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutContractNestedInput;
|
|
3899
|
-
transitions?: Prisma.ContractTransitionUncheckedUpdateManyWithoutContractNestedInput;
|
|
3900
3391
|
events?: Prisma.ContractEventUncheckedUpdateManyWithoutContractNestedInput;
|
|
3901
3392
|
terminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutContractNestedInput;
|
|
3902
3393
|
offerLetters?: Prisma.OfferLetterUncheckedUpdateManyWithoutContractNestedInput;
|
|
3903
|
-
prequalification?: Prisma.PrequalificationUncheckedUpdateOneWithoutContractNestedInput;
|
|
3904
3394
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutContractNestedInput;
|
|
3905
3395
|
};
|
|
3906
3396
|
export type ContractUncheckedUpdateManyWithoutBuyerInput = {
|
|
@@ -3977,11 +3467,9 @@ export type ContractUpdateWithoutSellerInput = {
|
|
|
3977
3467
|
phases?: Prisma.ContractPhaseUpdateManyWithoutContractNestedInput;
|
|
3978
3468
|
documents?: Prisma.ContractDocumentUpdateManyWithoutContractNestedInput;
|
|
3979
3469
|
payments?: Prisma.ContractPaymentUpdateManyWithoutContractNestedInput;
|
|
3980
|
-
transitions?: Prisma.ContractTransitionUpdateManyWithoutContractNestedInput;
|
|
3981
3470
|
events?: Prisma.ContractEventUpdateManyWithoutContractNestedInput;
|
|
3982
3471
|
terminations?: Prisma.ContractTerminationUpdateManyWithoutContractNestedInput;
|
|
3983
3472
|
offerLetters?: Prisma.OfferLetterUpdateManyWithoutContractNestedInput;
|
|
3984
|
-
prequalification?: Prisma.PrequalificationUpdateOneWithoutContractNestedInput;
|
|
3985
3473
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutContractNestedInput;
|
|
3986
3474
|
};
|
|
3987
3475
|
export type ContractUncheckedUpdateWithoutSellerInput = {
|
|
@@ -4022,11 +3510,9 @@ export type ContractUncheckedUpdateWithoutSellerInput = {
|
|
|
4022
3510
|
phases?: Prisma.ContractPhaseUncheckedUpdateManyWithoutContractNestedInput;
|
|
4023
3511
|
documents?: Prisma.ContractDocumentUncheckedUpdateManyWithoutContractNestedInput;
|
|
4024
3512
|
payments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutContractNestedInput;
|
|
4025
|
-
transitions?: Prisma.ContractTransitionUncheckedUpdateManyWithoutContractNestedInput;
|
|
4026
3513
|
events?: Prisma.ContractEventUncheckedUpdateManyWithoutContractNestedInput;
|
|
4027
3514
|
terminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutContractNestedInput;
|
|
4028
3515
|
offerLetters?: Prisma.OfferLetterUncheckedUpdateManyWithoutContractNestedInput;
|
|
4029
|
-
prequalification?: Prisma.PrequalificationUncheckedUpdateOneWithoutContractNestedInput;
|
|
4030
3516
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutContractNestedInput;
|
|
4031
3517
|
};
|
|
4032
3518
|
export type ContractUncheckedUpdateManyWithoutSellerInput = {
|
|
@@ -4139,11 +3625,9 @@ export type ContractUpdateWithoutTenantInput = {
|
|
|
4139
3625
|
phases?: Prisma.ContractPhaseUpdateManyWithoutContractNestedInput;
|
|
4140
3626
|
documents?: Prisma.ContractDocumentUpdateManyWithoutContractNestedInput;
|
|
4141
3627
|
payments?: Prisma.ContractPaymentUpdateManyWithoutContractNestedInput;
|
|
4142
|
-
transitions?: Prisma.ContractTransitionUpdateManyWithoutContractNestedInput;
|
|
4143
3628
|
events?: Prisma.ContractEventUpdateManyWithoutContractNestedInput;
|
|
4144
3629
|
terminations?: Prisma.ContractTerminationUpdateManyWithoutContractNestedInput;
|
|
4145
3630
|
offerLetters?: Prisma.OfferLetterUpdateManyWithoutContractNestedInput;
|
|
4146
|
-
prequalification?: Prisma.PrequalificationUpdateOneWithoutContractNestedInput;
|
|
4147
3631
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutContractNestedInput;
|
|
4148
3632
|
};
|
|
4149
3633
|
export type ContractUncheckedUpdateWithoutTenantInput = {
|
|
@@ -4184,11 +3668,9 @@ export type ContractUncheckedUpdateWithoutTenantInput = {
|
|
|
4184
3668
|
phases?: Prisma.ContractPhaseUncheckedUpdateManyWithoutContractNestedInput;
|
|
4185
3669
|
documents?: Prisma.ContractDocumentUncheckedUpdateManyWithoutContractNestedInput;
|
|
4186
3670
|
payments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutContractNestedInput;
|
|
4187
|
-
transitions?: Prisma.ContractTransitionUncheckedUpdateManyWithoutContractNestedInput;
|
|
4188
3671
|
events?: Prisma.ContractEventUncheckedUpdateManyWithoutContractNestedInput;
|
|
4189
3672
|
terminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutContractNestedInput;
|
|
4190
3673
|
offerLetters?: Prisma.OfferLetterUncheckedUpdateManyWithoutContractNestedInput;
|
|
4191
|
-
prequalification?: Prisma.PrequalificationUncheckedUpdateOneWithoutContractNestedInput;
|
|
4192
3674
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutContractNestedInput;
|
|
4193
3675
|
};
|
|
4194
3676
|
export type ContractUncheckedUpdateManyWithoutTenantInput = {
|
|
@@ -4301,11 +3783,9 @@ export type ContractUpdateWithoutPropertyUnitInput = {
|
|
|
4301
3783
|
phases?: Prisma.ContractPhaseUpdateManyWithoutContractNestedInput;
|
|
4302
3784
|
documents?: Prisma.ContractDocumentUpdateManyWithoutContractNestedInput;
|
|
4303
3785
|
payments?: Prisma.ContractPaymentUpdateManyWithoutContractNestedInput;
|
|
4304
|
-
transitions?: Prisma.ContractTransitionUpdateManyWithoutContractNestedInput;
|
|
4305
3786
|
events?: Prisma.ContractEventUpdateManyWithoutContractNestedInput;
|
|
4306
3787
|
terminations?: Prisma.ContractTerminationUpdateManyWithoutContractNestedInput;
|
|
4307
3788
|
offerLetters?: Prisma.OfferLetterUpdateManyWithoutContractNestedInput;
|
|
4308
|
-
prequalification?: Prisma.PrequalificationUpdateOneWithoutContractNestedInput;
|
|
4309
3789
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutContractNestedInput;
|
|
4310
3790
|
};
|
|
4311
3791
|
export type ContractUncheckedUpdateWithoutPropertyUnitInput = {
|
|
@@ -4346,11 +3826,9 @@ export type ContractUncheckedUpdateWithoutPropertyUnitInput = {
|
|
|
4346
3826
|
phases?: Prisma.ContractPhaseUncheckedUpdateManyWithoutContractNestedInput;
|
|
4347
3827
|
documents?: Prisma.ContractDocumentUncheckedUpdateManyWithoutContractNestedInput;
|
|
4348
3828
|
payments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutContractNestedInput;
|
|
4349
|
-
transitions?: Prisma.ContractTransitionUncheckedUpdateManyWithoutContractNestedInput;
|
|
4350
3829
|
events?: Prisma.ContractEventUncheckedUpdateManyWithoutContractNestedInput;
|
|
4351
3830
|
terminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutContractNestedInput;
|
|
4352
3831
|
offerLetters?: Prisma.OfferLetterUncheckedUpdateManyWithoutContractNestedInput;
|
|
4353
|
-
prequalification?: Prisma.PrequalificationUncheckedUpdateOneWithoutContractNestedInput;
|
|
4354
3832
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutContractNestedInput;
|
|
4355
3833
|
};
|
|
4356
3834
|
export type ContractUncheckedUpdateManyWithoutPropertyUnitInput = {
|
|
@@ -4463,11 +3941,9 @@ export type ContractUpdateWithoutPaymentMethodInput = {
|
|
|
4463
3941
|
phases?: Prisma.ContractPhaseUpdateManyWithoutContractNestedInput;
|
|
4464
3942
|
documents?: Prisma.ContractDocumentUpdateManyWithoutContractNestedInput;
|
|
4465
3943
|
payments?: Prisma.ContractPaymentUpdateManyWithoutContractNestedInput;
|
|
4466
|
-
transitions?: Prisma.ContractTransitionUpdateManyWithoutContractNestedInput;
|
|
4467
3944
|
events?: Prisma.ContractEventUpdateManyWithoutContractNestedInput;
|
|
4468
3945
|
terminations?: Prisma.ContractTerminationUpdateManyWithoutContractNestedInput;
|
|
4469
3946
|
offerLetters?: Prisma.OfferLetterUpdateManyWithoutContractNestedInput;
|
|
4470
|
-
prequalification?: Prisma.PrequalificationUpdateOneWithoutContractNestedInput;
|
|
4471
3947
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutContractNestedInput;
|
|
4472
3948
|
};
|
|
4473
3949
|
export type ContractUncheckedUpdateWithoutPaymentMethodInput = {
|
|
@@ -4508,11 +3984,9 @@ export type ContractUncheckedUpdateWithoutPaymentMethodInput = {
|
|
|
4508
3984
|
phases?: Prisma.ContractPhaseUncheckedUpdateManyWithoutContractNestedInput;
|
|
4509
3985
|
documents?: Prisma.ContractDocumentUncheckedUpdateManyWithoutContractNestedInput;
|
|
4510
3986
|
payments?: Prisma.ContractPaymentUncheckedUpdateManyWithoutContractNestedInput;
|
|
4511
|
-
transitions?: Prisma.ContractTransitionUncheckedUpdateManyWithoutContractNestedInput;
|
|
4512
3987
|
events?: Prisma.ContractEventUncheckedUpdateManyWithoutContractNestedInput;
|
|
4513
3988
|
terminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutContractNestedInput;
|
|
4514
3989
|
offerLetters?: Prisma.OfferLetterUncheckedUpdateManyWithoutContractNestedInput;
|
|
4515
|
-
prequalification?: Prisma.PrequalificationUncheckedUpdateOneWithoutContractNestedInput;
|
|
4516
3990
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutContractNestedInput;
|
|
4517
3991
|
};
|
|
4518
3992
|
export type ContractUncheckedUpdateManyWithoutPaymentMethodInput = {
|
|
@@ -4558,7 +4032,6 @@ export type ContractCountOutputType = {
|
|
|
4558
4032
|
phases: number;
|
|
4559
4033
|
documents: number;
|
|
4560
4034
|
payments: number;
|
|
4561
|
-
transitions: number;
|
|
4562
4035
|
events: number;
|
|
4563
4036
|
terminations: number;
|
|
4564
4037
|
offerLetters: number;
|
|
@@ -4568,7 +4041,6 @@ export type ContractCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensio
|
|
|
4568
4041
|
phases?: boolean | ContractCountOutputTypeCountPhasesArgs;
|
|
4569
4042
|
documents?: boolean | ContractCountOutputTypeCountDocumentsArgs;
|
|
4570
4043
|
payments?: boolean | ContractCountOutputTypeCountPaymentsArgs;
|
|
4571
|
-
transitions?: boolean | ContractCountOutputTypeCountTransitionsArgs;
|
|
4572
4044
|
events?: boolean | ContractCountOutputTypeCountEventsArgs;
|
|
4573
4045
|
terminations?: boolean | ContractCountOutputTypeCountTerminationsArgs;
|
|
4574
4046
|
offerLetters?: boolean | ContractCountOutputTypeCountOfferLettersArgs;
|
|
@@ -4601,12 +4073,6 @@ export type ContractCountOutputTypeCountDocumentsArgs<ExtArgs extends runtime.Ty
|
|
|
4601
4073
|
export type ContractCountOutputTypeCountPaymentsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
4602
4074
|
where?: Prisma.ContractPaymentWhereInput;
|
|
4603
4075
|
};
|
|
4604
|
-
/**
|
|
4605
|
-
* ContractCountOutputType without action
|
|
4606
|
-
*/
|
|
4607
|
-
export type ContractCountOutputTypeCountTransitionsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
4608
|
-
where?: Prisma.ContractTransitionWhereInput;
|
|
4609
|
-
};
|
|
4610
4076
|
/**
|
|
4611
4077
|
* ContractCountOutputType without action
|
|
4612
4078
|
*/
|
|
@@ -4675,11 +4141,9 @@ export type ContractSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
4675
4141
|
phases?: boolean | Prisma.Contract$phasesArgs<ExtArgs>;
|
|
4676
4142
|
documents?: boolean | Prisma.Contract$documentsArgs<ExtArgs>;
|
|
4677
4143
|
payments?: boolean | Prisma.Contract$paymentsArgs<ExtArgs>;
|
|
4678
|
-
transitions?: boolean | Prisma.Contract$transitionsArgs<ExtArgs>;
|
|
4679
4144
|
events?: boolean | Prisma.Contract$eventsArgs<ExtArgs>;
|
|
4680
4145
|
terminations?: boolean | Prisma.Contract$terminationsArgs<ExtArgs>;
|
|
4681
4146
|
offerLetters?: boolean | Prisma.Contract$offerLettersArgs<ExtArgs>;
|
|
4682
|
-
prequalification?: boolean | Prisma.Contract$prequalificationArgs<ExtArgs>;
|
|
4683
4147
|
paymentMethodChangeRequests?: boolean | Prisma.Contract$paymentMethodChangeRequestsArgs<ExtArgs>;
|
|
4684
4148
|
_count?: boolean | Prisma.ContractCountOutputTypeDefaultArgs<ExtArgs>;
|
|
4685
4149
|
}, ExtArgs["result"]["contract"]>;
|
|
@@ -4730,11 +4194,9 @@ export type ContractInclude<ExtArgs extends runtime.Types.Extensions.InternalArg
|
|
|
4730
4194
|
phases?: boolean | Prisma.Contract$phasesArgs<ExtArgs>;
|
|
4731
4195
|
documents?: boolean | Prisma.Contract$documentsArgs<ExtArgs>;
|
|
4732
4196
|
payments?: boolean | Prisma.Contract$paymentsArgs<ExtArgs>;
|
|
4733
|
-
transitions?: boolean | Prisma.Contract$transitionsArgs<ExtArgs>;
|
|
4734
4197
|
events?: boolean | Prisma.Contract$eventsArgs<ExtArgs>;
|
|
4735
4198
|
terminations?: boolean | Prisma.Contract$terminationsArgs<ExtArgs>;
|
|
4736
4199
|
offerLetters?: boolean | Prisma.Contract$offerLettersArgs<ExtArgs>;
|
|
4737
|
-
prequalification?: boolean | Prisma.Contract$prequalificationArgs<ExtArgs>;
|
|
4738
4200
|
paymentMethodChangeRequests?: boolean | Prisma.Contract$paymentMethodChangeRequestsArgs<ExtArgs>;
|
|
4739
4201
|
_count?: boolean | Prisma.ContractCountOutputTypeDefaultArgs<ExtArgs>;
|
|
4740
4202
|
};
|
|
@@ -4749,11 +4211,9 @@ export type $ContractPayload<ExtArgs extends runtime.Types.Extensions.InternalAr
|
|
|
4749
4211
|
phases: Prisma.$ContractPhasePayload<ExtArgs>[];
|
|
4750
4212
|
documents: Prisma.$ContractDocumentPayload<ExtArgs>[];
|
|
4751
4213
|
payments: Prisma.$ContractPaymentPayload<ExtArgs>[];
|
|
4752
|
-
transitions: Prisma.$ContractTransitionPayload<ExtArgs>[];
|
|
4753
4214
|
events: Prisma.$ContractEventPayload<ExtArgs>[];
|
|
4754
4215
|
terminations: Prisma.$ContractTerminationPayload<ExtArgs>[];
|
|
4755
4216
|
offerLetters: Prisma.$OfferLetterPayload<ExtArgs>[];
|
|
4756
|
-
prequalification: Prisma.$PrequalificationPayload<ExtArgs> | null;
|
|
4757
4217
|
paymentMethodChangeRequests: Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>[];
|
|
4758
4218
|
};
|
|
4759
4219
|
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
@@ -5077,11 +4537,9 @@ export interface Prisma__ContractClient<T, Null = never, ExtArgs extends runtime
|
|
|
5077
4537
|
phases<T extends Prisma.Contract$phasesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Contract$phasesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ContractPhasePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
5078
4538
|
documents<T extends Prisma.Contract$documentsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Contract$documentsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ContractDocumentPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
5079
4539
|
payments<T extends Prisma.Contract$paymentsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Contract$paymentsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ContractPaymentPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
5080
|
-
transitions<T extends Prisma.Contract$transitionsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Contract$transitionsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ContractTransitionPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
5081
4540
|
events<T extends Prisma.Contract$eventsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Contract$eventsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ContractEventPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
5082
4541
|
terminations<T extends Prisma.Contract$terminationsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Contract$terminationsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ContractTerminationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
5083
4542
|
offerLetters<T extends Prisma.Contract$offerLettersArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Contract$offerLettersArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$OfferLetterPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
5084
|
-
prequalification<T extends Prisma.Contract$prequalificationArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Contract$prequalificationArgs<ExtArgs>>): Prisma.Prisma__PrequalificationClient<runtime.Types.Result.GetResult<Prisma.$PrequalificationPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
5085
4543
|
paymentMethodChangeRequests<T extends Prisma.Contract$paymentMethodChangeRequestsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Contract$paymentMethodChangeRequestsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
5086
4544
|
/**
|
|
5087
4545
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
@@ -5575,29 +5033,6 @@ export type Contract$paymentsArgs<ExtArgs extends runtime.Types.Extensions.Inter
|
|
|
5575
5033
|
skip?: number;
|
|
5576
5034
|
distinct?: Prisma.ContractPaymentScalarFieldEnum | Prisma.ContractPaymentScalarFieldEnum[];
|
|
5577
5035
|
};
|
|
5578
|
-
/**
|
|
5579
|
-
* Contract.transitions
|
|
5580
|
-
*/
|
|
5581
|
-
export type Contract$transitionsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
5582
|
-
/**
|
|
5583
|
-
* Select specific fields to fetch from the ContractTransition
|
|
5584
|
-
*/
|
|
5585
|
-
select?: Prisma.ContractTransitionSelect<ExtArgs> | null;
|
|
5586
|
-
/**
|
|
5587
|
-
* Omit specific fields from the ContractTransition
|
|
5588
|
-
*/
|
|
5589
|
-
omit?: Prisma.ContractTransitionOmit<ExtArgs> | null;
|
|
5590
|
-
/**
|
|
5591
|
-
* Choose, which related nodes to fetch as well
|
|
5592
|
-
*/
|
|
5593
|
-
include?: Prisma.ContractTransitionInclude<ExtArgs> | null;
|
|
5594
|
-
where?: Prisma.ContractTransitionWhereInput;
|
|
5595
|
-
orderBy?: Prisma.ContractTransitionOrderByWithRelationInput | Prisma.ContractTransitionOrderByWithRelationInput[];
|
|
5596
|
-
cursor?: Prisma.ContractTransitionWhereUniqueInput;
|
|
5597
|
-
take?: number;
|
|
5598
|
-
skip?: number;
|
|
5599
|
-
distinct?: Prisma.ContractTransitionScalarFieldEnum | Prisma.ContractTransitionScalarFieldEnum[];
|
|
5600
|
-
};
|
|
5601
5036
|
/**
|
|
5602
5037
|
* Contract.events
|
|
5603
5038
|
*/
|
|
@@ -5667,24 +5102,6 @@ export type Contract$offerLettersArgs<ExtArgs extends runtime.Types.Extensions.I
|
|
|
5667
5102
|
skip?: number;
|
|
5668
5103
|
distinct?: Prisma.OfferLetterScalarFieldEnum | Prisma.OfferLetterScalarFieldEnum[];
|
|
5669
5104
|
};
|
|
5670
|
-
/**
|
|
5671
|
-
* Contract.prequalification
|
|
5672
|
-
*/
|
|
5673
|
-
export type Contract$prequalificationArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
5674
|
-
/**
|
|
5675
|
-
* Select specific fields to fetch from the Prequalification
|
|
5676
|
-
*/
|
|
5677
|
-
select?: Prisma.PrequalificationSelect<ExtArgs> | null;
|
|
5678
|
-
/**
|
|
5679
|
-
* Omit specific fields from the Prequalification
|
|
5680
|
-
*/
|
|
5681
|
-
omit?: Prisma.PrequalificationOmit<ExtArgs> | null;
|
|
5682
|
-
/**
|
|
5683
|
-
* Choose, which related nodes to fetch as well
|
|
5684
|
-
*/
|
|
5685
|
-
include?: Prisma.PrequalificationInclude<ExtArgs> | null;
|
|
5686
|
-
where?: Prisma.PrequalificationWhereInput;
|
|
5687
|
-
};
|
|
5688
5105
|
/**
|
|
5689
5106
|
* Contract.paymentMethodChangeRequests
|
|
5690
5107
|
*/
|