@valentine-efagene/qshelter-common 2.0.28 → 2.0.30
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 +15 -0
- package/dist/generated/client/client.d.ts +15 -0
- package/dist/generated/client/commonInputTypes.d.ts +408 -48
- package/dist/generated/client/enums.d.ts +92 -0
- package/dist/generated/client/enums.js +80 -0
- package/dist/generated/client/internal/class.d.ts +33 -0
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +330 -36
- package/dist/generated/client/internal/prismaNamespace.js +76 -37
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +80 -35
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +76 -37
- package/dist/generated/client/models/Contract.d.ts +152 -148
- package/dist/generated/client/models/ContractDocument.d.ts +32 -28
- package/dist/generated/client/models/ContractInstallment.d.ts +30 -26
- package/dist/generated/client/models/ContractPayment.d.ts +44 -40
- package/dist/generated/client/models/ContractPhase.d.ts +539 -121
- package/dist/generated/client/models/ContractPhaseStep.d.ts +208 -108
- package/dist/generated/client/models/ContractPhaseStepApproval.d.ts +32 -28
- package/dist/generated/client/models/ContractPhaseStepDocument.d.ts +1052 -0
- package/dist/generated/client/models/ContractPhaseStepDocument.js +1 -0
- package/dist/generated/client/models/PaymentMethodPhaseDocument.d.ts +1216 -0
- package/dist/generated/client/models/PaymentMethodPhaseDocument.js +1 -0
- package/dist/generated/client/models/PaymentMethodPhaseStep.d.ts +1187 -0
- package/dist/generated/client/models/PaymentMethodPhaseStep.js +1 -0
- package/dist/generated/client/models/PaymentPlan.d.ts +34 -30
- package/dist/generated/client/models/PropertyPaymentMethodPhase.d.ts +504 -135
- package/dist/generated/client/models/index.d.ts +3 -0
- package/dist/generated/client/models/index.js +3 -0
- package/dist/generated/client/models.d.ts +3 -0
- package/dist/src/middleware/error-handler.js +3 -0
- package/package.json +1 -1
- package/prisma/schema.prisma +195 -30
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type * as runtime from "@prisma/client/runtime/client";
|
|
2
|
+
import type * as $Enums from "../enums.js";
|
|
2
3
|
import type * as Prisma from "../internal/prismaNamespace.js";
|
|
3
4
|
/**
|
|
4
5
|
* Model Contract
|
|
@@ -54,8 +55,8 @@ export type ContractMinAggregateOutputType = {
|
|
|
54
55
|
periodicPayment: number | null;
|
|
55
56
|
totalPaidToDate: number | null;
|
|
56
57
|
totalInterestPaid: number | null;
|
|
57
|
-
status:
|
|
58
|
-
state:
|
|
58
|
+
status: $Enums.ContractStatus | null;
|
|
59
|
+
state: $Enums.ContractStatus | null;
|
|
59
60
|
currentPhaseId: string | null;
|
|
60
61
|
nextPaymentDueDate: Date | null;
|
|
61
62
|
lastReminderSentAt: Date | null;
|
|
@@ -86,8 +87,8 @@ export type ContractMaxAggregateOutputType = {
|
|
|
86
87
|
periodicPayment: number | null;
|
|
87
88
|
totalPaidToDate: number | null;
|
|
88
89
|
totalInterestPaid: number | null;
|
|
89
|
-
status:
|
|
90
|
-
state:
|
|
90
|
+
status: $Enums.ContractStatus | null;
|
|
91
|
+
state: $Enums.ContractStatus | null;
|
|
91
92
|
currentPhaseId: string | null;
|
|
92
93
|
nextPaymentDueDate: Date | null;
|
|
93
94
|
lastReminderSentAt: Date | null;
|
|
@@ -346,8 +347,8 @@ export type ContractGroupByOutputType = {
|
|
|
346
347
|
periodicPayment: number | null;
|
|
347
348
|
totalPaidToDate: number;
|
|
348
349
|
totalInterestPaid: number;
|
|
349
|
-
status:
|
|
350
|
-
state:
|
|
350
|
+
status: $Enums.ContractStatus;
|
|
351
|
+
state: $Enums.ContractStatus;
|
|
351
352
|
currentPhaseId: string | null;
|
|
352
353
|
nextPaymentDueDate: Date | null;
|
|
353
354
|
lastReminderSentAt: Date | null;
|
|
@@ -389,8 +390,8 @@ export type ContractWhereInput = {
|
|
|
389
390
|
periodicPayment?: Prisma.FloatNullableFilter<"Contract"> | number | null;
|
|
390
391
|
totalPaidToDate?: Prisma.FloatFilter<"Contract"> | number;
|
|
391
392
|
totalInterestPaid?: Prisma.FloatFilter<"Contract"> | number;
|
|
392
|
-
status?: Prisma.
|
|
393
|
-
state?: Prisma.
|
|
393
|
+
status?: Prisma.EnumContractStatusFilter<"Contract"> | $Enums.ContractStatus;
|
|
394
|
+
state?: Prisma.EnumContractStatusFilter<"Contract"> | $Enums.ContractStatus;
|
|
394
395
|
currentPhaseId?: Prisma.StringNullableFilter<"Contract"> | string | null;
|
|
395
396
|
nextPaymentDueDate?: Prisma.DateTimeNullableFilter<"Contract"> | Date | string | null;
|
|
396
397
|
lastReminderSentAt?: Prisma.DateTimeNullableFilter<"Contract"> | Date | string | null;
|
|
@@ -481,8 +482,8 @@ export type ContractWhereUniqueInput = Prisma.AtLeast<{
|
|
|
481
482
|
periodicPayment?: Prisma.FloatNullableFilter<"Contract"> | number | null;
|
|
482
483
|
totalPaidToDate?: Prisma.FloatFilter<"Contract"> | number;
|
|
483
484
|
totalInterestPaid?: Prisma.FloatFilter<"Contract"> | number;
|
|
484
|
-
status?: Prisma.
|
|
485
|
-
state?: Prisma.
|
|
485
|
+
status?: Prisma.EnumContractStatusFilter<"Contract"> | $Enums.ContractStatus;
|
|
486
|
+
state?: Prisma.EnumContractStatusFilter<"Contract"> | $Enums.ContractStatus;
|
|
486
487
|
currentPhaseId?: Prisma.StringNullableFilter<"Contract"> | string | null;
|
|
487
488
|
nextPaymentDueDate?: Prisma.DateTimeNullableFilter<"Contract"> | Date | string | null;
|
|
488
489
|
lastReminderSentAt?: Prisma.DateTimeNullableFilter<"Contract"> | Date | string | null;
|
|
@@ -565,8 +566,8 @@ export type ContractScalarWhereWithAggregatesInput = {
|
|
|
565
566
|
periodicPayment?: Prisma.FloatNullableWithAggregatesFilter<"Contract"> | number | null;
|
|
566
567
|
totalPaidToDate?: Prisma.FloatWithAggregatesFilter<"Contract"> | number;
|
|
567
568
|
totalInterestPaid?: Prisma.FloatWithAggregatesFilter<"Contract"> | number;
|
|
568
|
-
status?: Prisma.
|
|
569
|
-
state?: Prisma.
|
|
569
|
+
status?: Prisma.EnumContractStatusWithAggregatesFilter<"Contract"> | $Enums.ContractStatus;
|
|
570
|
+
state?: Prisma.EnumContractStatusWithAggregatesFilter<"Contract"> | $Enums.ContractStatus;
|
|
570
571
|
currentPhaseId?: Prisma.StringNullableWithAggregatesFilter<"Contract"> | string | null;
|
|
571
572
|
nextPaymentDueDate?: Prisma.DateTimeNullableWithAggregatesFilter<"Contract"> | Date | string | null;
|
|
572
573
|
lastReminderSentAt?: Prisma.DateTimeNullableWithAggregatesFilter<"Contract"> | Date | string | null;
|
|
@@ -592,8 +593,8 @@ export type ContractCreateInput = {
|
|
|
592
593
|
periodicPayment?: number | null;
|
|
593
594
|
totalPaidToDate?: number;
|
|
594
595
|
totalInterestPaid?: number;
|
|
595
|
-
status?:
|
|
596
|
-
state?:
|
|
596
|
+
status?: $Enums.ContractStatus;
|
|
597
|
+
state?: $Enums.ContractStatus;
|
|
597
598
|
currentPhaseId?: string | null;
|
|
598
599
|
nextPaymentDueDate?: Date | string | null;
|
|
599
600
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -636,8 +637,8 @@ export type ContractUncheckedCreateInput = {
|
|
|
636
637
|
periodicPayment?: number | null;
|
|
637
638
|
totalPaidToDate?: number;
|
|
638
639
|
totalInterestPaid?: number;
|
|
639
|
-
status?:
|
|
640
|
-
state?:
|
|
640
|
+
status?: $Enums.ContractStatus;
|
|
641
|
+
state?: $Enums.ContractStatus;
|
|
641
642
|
currentPhaseId?: string | null;
|
|
642
643
|
nextPaymentDueDate?: Date | string | null;
|
|
643
644
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -670,8 +671,8 @@ export type ContractUpdateInput = {
|
|
|
670
671
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
671
672
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
672
673
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
673
|
-
status?: Prisma.
|
|
674
|
-
state?: Prisma.
|
|
674
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
675
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
675
676
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
676
677
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
677
678
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -714,8 +715,8 @@ export type ContractUncheckedUpdateInput = {
|
|
|
714
715
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
715
716
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
716
717
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
717
|
-
status?: Prisma.
|
|
718
|
-
state?: Prisma.
|
|
718
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
719
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
719
720
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
720
721
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
721
722
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -753,8 +754,8 @@ export type ContractCreateManyInput = {
|
|
|
753
754
|
periodicPayment?: number | null;
|
|
754
755
|
totalPaidToDate?: number;
|
|
755
756
|
totalInterestPaid?: number;
|
|
756
|
-
status?:
|
|
757
|
-
state?:
|
|
757
|
+
status?: $Enums.ContractStatus;
|
|
758
|
+
state?: $Enums.ContractStatus;
|
|
758
759
|
currentPhaseId?: string | null;
|
|
759
760
|
nextPaymentDueDate?: Date | string | null;
|
|
760
761
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -780,8 +781,8 @@ export type ContractUpdateManyMutationInput = {
|
|
|
780
781
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
781
782
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
782
783
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
783
|
-
status?: Prisma.
|
|
784
|
-
state?: Prisma.
|
|
784
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
785
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
785
786
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
786
787
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
787
788
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -812,8 +813,8 @@ export type ContractUncheckedUpdateManyInput = {
|
|
|
812
813
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
813
814
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
814
815
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
815
|
-
status?: Prisma.
|
|
816
|
-
state?: Prisma.
|
|
816
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
817
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
817
818
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
818
819
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
819
820
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -1153,6 +1154,9 @@ export type ContractUncheckedUpdateManyWithoutPaymentMethodNestedInput = {
|
|
|
1153
1154
|
updateMany?: Prisma.ContractUpdateManyWithWhereWithoutPaymentMethodInput | Prisma.ContractUpdateManyWithWhereWithoutPaymentMethodInput[];
|
|
1154
1155
|
deleteMany?: Prisma.ContractScalarWhereInput | Prisma.ContractScalarWhereInput[];
|
|
1155
1156
|
};
|
|
1157
|
+
export type EnumContractStatusFieldUpdateOperationsInput = {
|
|
1158
|
+
set?: $Enums.ContractStatus;
|
|
1159
|
+
};
|
|
1156
1160
|
export type ContractCreateNestedOneWithoutPhasesInput = {
|
|
1157
1161
|
create?: Prisma.XOR<Prisma.ContractCreateWithoutPhasesInput, Prisma.ContractUncheckedCreateWithoutPhasesInput>;
|
|
1158
1162
|
connectOrCreate?: Prisma.ContractCreateOrConnectWithoutPhasesInput;
|
|
@@ -1254,8 +1258,8 @@ export type ContractCreateWithoutBuyerInput = {
|
|
|
1254
1258
|
periodicPayment?: number | null;
|
|
1255
1259
|
totalPaidToDate?: number;
|
|
1256
1260
|
totalInterestPaid?: number;
|
|
1257
|
-
status?:
|
|
1258
|
-
state?:
|
|
1261
|
+
status?: $Enums.ContractStatus;
|
|
1262
|
+
state?: $Enums.ContractStatus;
|
|
1259
1263
|
currentPhaseId?: string | null;
|
|
1260
1264
|
nextPaymentDueDate?: Date | string | null;
|
|
1261
1265
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -1296,8 +1300,8 @@ export type ContractUncheckedCreateWithoutBuyerInput = {
|
|
|
1296
1300
|
periodicPayment?: number | null;
|
|
1297
1301
|
totalPaidToDate?: number;
|
|
1298
1302
|
totalInterestPaid?: number;
|
|
1299
|
-
status?:
|
|
1300
|
-
state?:
|
|
1303
|
+
status?: $Enums.ContractStatus;
|
|
1304
|
+
state?: $Enums.ContractStatus;
|
|
1301
1305
|
currentPhaseId?: string | null;
|
|
1302
1306
|
nextPaymentDueDate?: Date | string | null;
|
|
1303
1307
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -1338,8 +1342,8 @@ export type ContractCreateWithoutSellerInput = {
|
|
|
1338
1342
|
periodicPayment?: number | null;
|
|
1339
1343
|
totalPaidToDate?: number;
|
|
1340
1344
|
totalInterestPaid?: number;
|
|
1341
|
-
status?:
|
|
1342
|
-
state?:
|
|
1345
|
+
status?: $Enums.ContractStatus;
|
|
1346
|
+
state?: $Enums.ContractStatus;
|
|
1343
1347
|
currentPhaseId?: string | null;
|
|
1344
1348
|
nextPaymentDueDate?: Date | string | null;
|
|
1345
1349
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -1380,8 +1384,8 @@ export type ContractUncheckedCreateWithoutSellerInput = {
|
|
|
1380
1384
|
periodicPayment?: number | null;
|
|
1381
1385
|
totalPaidToDate?: number;
|
|
1382
1386
|
totalInterestPaid?: number;
|
|
1383
|
-
status?:
|
|
1384
|
-
state?:
|
|
1387
|
+
status?: $Enums.ContractStatus;
|
|
1388
|
+
state?: $Enums.ContractStatus;
|
|
1385
1389
|
currentPhaseId?: string | null;
|
|
1386
1390
|
nextPaymentDueDate?: Date | string | null;
|
|
1387
1391
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -1443,8 +1447,8 @@ export type ContractScalarWhereInput = {
|
|
|
1443
1447
|
periodicPayment?: Prisma.FloatNullableFilter<"Contract"> | number | null;
|
|
1444
1448
|
totalPaidToDate?: Prisma.FloatFilter<"Contract"> | number;
|
|
1445
1449
|
totalInterestPaid?: Prisma.FloatFilter<"Contract"> | number;
|
|
1446
|
-
status?: Prisma.
|
|
1447
|
-
state?: Prisma.
|
|
1450
|
+
status?: Prisma.EnumContractStatusFilter<"Contract"> | $Enums.ContractStatus;
|
|
1451
|
+
state?: Prisma.EnumContractStatusFilter<"Contract"> | $Enums.ContractStatus;
|
|
1448
1452
|
currentPhaseId?: Prisma.StringNullableFilter<"Contract"> | string | null;
|
|
1449
1453
|
nextPaymentDueDate?: Prisma.DateTimeNullableFilter<"Contract"> | Date | string | null;
|
|
1450
1454
|
lastReminderSentAt?: Prisma.DateTimeNullableFilter<"Contract"> | Date | string | null;
|
|
@@ -1483,8 +1487,8 @@ export type ContractCreateWithoutTenantInput = {
|
|
|
1483
1487
|
periodicPayment?: number | null;
|
|
1484
1488
|
totalPaidToDate?: number;
|
|
1485
1489
|
totalInterestPaid?: number;
|
|
1486
|
-
status?:
|
|
1487
|
-
state?:
|
|
1490
|
+
status?: $Enums.ContractStatus;
|
|
1491
|
+
state?: $Enums.ContractStatus;
|
|
1488
1492
|
currentPhaseId?: string | null;
|
|
1489
1493
|
nextPaymentDueDate?: Date | string | null;
|
|
1490
1494
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -1525,8 +1529,8 @@ export type ContractUncheckedCreateWithoutTenantInput = {
|
|
|
1525
1529
|
periodicPayment?: number | null;
|
|
1526
1530
|
totalPaidToDate?: number;
|
|
1527
1531
|
totalInterestPaid?: number;
|
|
1528
|
-
status?:
|
|
1529
|
-
state?:
|
|
1532
|
+
status?: $Enums.ContractStatus;
|
|
1533
|
+
state?: $Enums.ContractStatus;
|
|
1530
1534
|
currentPhaseId?: string | null;
|
|
1531
1535
|
nextPaymentDueDate?: Date | string | null;
|
|
1532
1536
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -1580,8 +1584,8 @@ export type ContractCreateWithoutPropertyUnitInput = {
|
|
|
1580
1584
|
periodicPayment?: number | null;
|
|
1581
1585
|
totalPaidToDate?: number;
|
|
1582
1586
|
totalInterestPaid?: number;
|
|
1583
|
-
status?:
|
|
1584
|
-
state?:
|
|
1587
|
+
status?: $Enums.ContractStatus;
|
|
1588
|
+
state?: $Enums.ContractStatus;
|
|
1585
1589
|
currentPhaseId?: string | null;
|
|
1586
1590
|
nextPaymentDueDate?: Date | string | null;
|
|
1587
1591
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -1622,8 +1626,8 @@ export type ContractUncheckedCreateWithoutPropertyUnitInput = {
|
|
|
1622
1626
|
periodicPayment?: number | null;
|
|
1623
1627
|
totalPaidToDate?: number;
|
|
1624
1628
|
totalInterestPaid?: number;
|
|
1625
|
-
status?:
|
|
1626
|
-
state?:
|
|
1629
|
+
status?: $Enums.ContractStatus;
|
|
1630
|
+
state?: $Enums.ContractStatus;
|
|
1627
1631
|
currentPhaseId?: string | null;
|
|
1628
1632
|
nextPaymentDueDate?: Date | string | null;
|
|
1629
1633
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -1677,8 +1681,8 @@ export type ContractCreateWithoutPaymentMethodInput = {
|
|
|
1677
1681
|
periodicPayment?: number | null;
|
|
1678
1682
|
totalPaidToDate?: number;
|
|
1679
1683
|
totalInterestPaid?: number;
|
|
1680
|
-
status?:
|
|
1681
|
-
state?:
|
|
1684
|
+
status?: $Enums.ContractStatus;
|
|
1685
|
+
state?: $Enums.ContractStatus;
|
|
1682
1686
|
currentPhaseId?: string | null;
|
|
1683
1687
|
nextPaymentDueDate?: Date | string | null;
|
|
1684
1688
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -1719,8 +1723,8 @@ export type ContractUncheckedCreateWithoutPaymentMethodInput = {
|
|
|
1719
1723
|
periodicPayment?: number | null;
|
|
1720
1724
|
totalPaidToDate?: number;
|
|
1721
1725
|
totalInterestPaid?: number;
|
|
1722
|
-
status?:
|
|
1723
|
-
state?:
|
|
1726
|
+
status?: $Enums.ContractStatus;
|
|
1727
|
+
state?: $Enums.ContractStatus;
|
|
1724
1728
|
currentPhaseId?: string | null;
|
|
1725
1729
|
nextPaymentDueDate?: Date | string | null;
|
|
1726
1730
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -1774,8 +1778,8 @@ export type ContractCreateWithoutPhasesInput = {
|
|
|
1774
1778
|
periodicPayment?: number | null;
|
|
1775
1779
|
totalPaidToDate?: number;
|
|
1776
1780
|
totalInterestPaid?: number;
|
|
1777
|
-
status?:
|
|
1778
|
-
state?:
|
|
1781
|
+
status?: $Enums.ContractStatus;
|
|
1782
|
+
state?: $Enums.ContractStatus;
|
|
1779
1783
|
currentPhaseId?: string | null;
|
|
1780
1784
|
nextPaymentDueDate?: Date | string | null;
|
|
1781
1785
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -1817,8 +1821,8 @@ export type ContractUncheckedCreateWithoutPhasesInput = {
|
|
|
1817
1821
|
periodicPayment?: number | null;
|
|
1818
1822
|
totalPaidToDate?: number;
|
|
1819
1823
|
totalInterestPaid?: number;
|
|
1820
|
-
status?:
|
|
1821
|
-
state?:
|
|
1824
|
+
status?: $Enums.ContractStatus;
|
|
1825
|
+
state?: $Enums.ContractStatus;
|
|
1822
1826
|
currentPhaseId?: string | null;
|
|
1823
1827
|
nextPaymentDueDate?: Date | string | null;
|
|
1824
1828
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -1863,8 +1867,8 @@ export type ContractUpdateWithoutPhasesInput = {
|
|
|
1863
1867
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1864
1868
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
1865
1869
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
1866
|
-
status?: Prisma.
|
|
1867
|
-
state?: Prisma.
|
|
1870
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
1871
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
1868
1872
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1869
1873
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1870
1874
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -1906,8 +1910,8 @@ export type ContractUncheckedUpdateWithoutPhasesInput = {
|
|
|
1906
1910
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
1907
1911
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
1908
1912
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
1909
|
-
status?: Prisma.
|
|
1910
|
-
state?: Prisma.
|
|
1913
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
1914
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
1911
1915
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1912
1916
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
1913
1917
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -1939,8 +1943,8 @@ export type ContractCreateWithoutPaymentsInput = {
|
|
|
1939
1943
|
periodicPayment?: number | null;
|
|
1940
1944
|
totalPaidToDate?: number;
|
|
1941
1945
|
totalInterestPaid?: number;
|
|
1942
|
-
status?:
|
|
1943
|
-
state?:
|
|
1946
|
+
status?: $Enums.ContractStatus;
|
|
1947
|
+
state?: $Enums.ContractStatus;
|
|
1944
1948
|
currentPhaseId?: string | null;
|
|
1945
1949
|
nextPaymentDueDate?: Date | string | null;
|
|
1946
1950
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -1982,8 +1986,8 @@ export type ContractUncheckedCreateWithoutPaymentsInput = {
|
|
|
1982
1986
|
periodicPayment?: number | null;
|
|
1983
1987
|
totalPaidToDate?: number;
|
|
1984
1988
|
totalInterestPaid?: number;
|
|
1985
|
-
status?:
|
|
1986
|
-
state?:
|
|
1989
|
+
status?: $Enums.ContractStatus;
|
|
1990
|
+
state?: $Enums.ContractStatus;
|
|
1987
1991
|
currentPhaseId?: string | null;
|
|
1988
1992
|
nextPaymentDueDate?: Date | string | null;
|
|
1989
1993
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -2028,8 +2032,8 @@ export type ContractUpdateWithoutPaymentsInput = {
|
|
|
2028
2032
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2029
2033
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2030
2034
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2031
|
-
status?: Prisma.
|
|
2032
|
-
state?: Prisma.
|
|
2035
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
2036
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
2033
2037
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2034
2038
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2035
2039
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -2071,8 +2075,8 @@ export type ContractUncheckedUpdateWithoutPaymentsInput = {
|
|
|
2071
2075
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2072
2076
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2073
2077
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2074
|
-
status?: Prisma.
|
|
2075
|
-
state?: Prisma.
|
|
2078
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
2079
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
2076
2080
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2077
2081
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2078
2082
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -2104,8 +2108,8 @@ export type ContractCreateWithoutDocumentsInput = {
|
|
|
2104
2108
|
periodicPayment?: number | null;
|
|
2105
2109
|
totalPaidToDate?: number;
|
|
2106
2110
|
totalInterestPaid?: number;
|
|
2107
|
-
status?:
|
|
2108
|
-
state?:
|
|
2111
|
+
status?: $Enums.ContractStatus;
|
|
2112
|
+
state?: $Enums.ContractStatus;
|
|
2109
2113
|
currentPhaseId?: string | null;
|
|
2110
2114
|
nextPaymentDueDate?: Date | string | null;
|
|
2111
2115
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -2147,8 +2151,8 @@ export type ContractUncheckedCreateWithoutDocumentsInput = {
|
|
|
2147
2151
|
periodicPayment?: number | null;
|
|
2148
2152
|
totalPaidToDate?: number;
|
|
2149
2153
|
totalInterestPaid?: number;
|
|
2150
|
-
status?:
|
|
2151
|
-
state?:
|
|
2154
|
+
status?: $Enums.ContractStatus;
|
|
2155
|
+
state?: $Enums.ContractStatus;
|
|
2152
2156
|
currentPhaseId?: string | null;
|
|
2153
2157
|
nextPaymentDueDate?: Date | string | null;
|
|
2154
2158
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -2193,8 +2197,8 @@ export type ContractUpdateWithoutDocumentsInput = {
|
|
|
2193
2197
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2194
2198
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2195
2199
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2196
|
-
status?: Prisma.
|
|
2197
|
-
state?: Prisma.
|
|
2200
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
2201
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
2198
2202
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2199
2203
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2200
2204
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -2236,8 +2240,8 @@ export type ContractUncheckedUpdateWithoutDocumentsInput = {
|
|
|
2236
2240
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2237
2241
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2238
2242
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2239
|
-
status?: Prisma.
|
|
2240
|
-
state?: Prisma.
|
|
2243
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
2244
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
2241
2245
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2242
2246
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2243
2247
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -2269,8 +2273,8 @@ export type ContractCreateWithoutTransitionsInput = {
|
|
|
2269
2273
|
periodicPayment?: number | null;
|
|
2270
2274
|
totalPaidToDate?: number;
|
|
2271
2275
|
totalInterestPaid?: number;
|
|
2272
|
-
status?:
|
|
2273
|
-
state?:
|
|
2276
|
+
status?: $Enums.ContractStatus;
|
|
2277
|
+
state?: $Enums.ContractStatus;
|
|
2274
2278
|
currentPhaseId?: string | null;
|
|
2275
2279
|
nextPaymentDueDate?: Date | string | null;
|
|
2276
2280
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -2312,8 +2316,8 @@ export type ContractUncheckedCreateWithoutTransitionsInput = {
|
|
|
2312
2316
|
periodicPayment?: number | null;
|
|
2313
2317
|
totalPaidToDate?: number;
|
|
2314
2318
|
totalInterestPaid?: number;
|
|
2315
|
-
status?:
|
|
2316
|
-
state?:
|
|
2319
|
+
status?: $Enums.ContractStatus;
|
|
2320
|
+
state?: $Enums.ContractStatus;
|
|
2317
2321
|
currentPhaseId?: string | null;
|
|
2318
2322
|
nextPaymentDueDate?: Date | string | null;
|
|
2319
2323
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -2358,8 +2362,8 @@ export type ContractUpdateWithoutTransitionsInput = {
|
|
|
2358
2362
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2359
2363
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2360
2364
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2361
|
-
status?: Prisma.
|
|
2362
|
-
state?: Prisma.
|
|
2365
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
2366
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
2363
2367
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2364
2368
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2365
2369
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -2401,8 +2405,8 @@ export type ContractUncheckedUpdateWithoutTransitionsInput = {
|
|
|
2401
2405
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2402
2406
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2403
2407
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2404
|
-
status?: Prisma.
|
|
2405
|
-
state?: Prisma.
|
|
2408
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
2409
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
2406
2410
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2407
2411
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2408
2412
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -2434,8 +2438,8 @@ export type ContractCreateWithoutEventsInput = {
|
|
|
2434
2438
|
periodicPayment?: number | null;
|
|
2435
2439
|
totalPaidToDate?: number;
|
|
2436
2440
|
totalInterestPaid?: number;
|
|
2437
|
-
status?:
|
|
2438
|
-
state?:
|
|
2441
|
+
status?: $Enums.ContractStatus;
|
|
2442
|
+
state?: $Enums.ContractStatus;
|
|
2439
2443
|
currentPhaseId?: string | null;
|
|
2440
2444
|
nextPaymentDueDate?: Date | string | null;
|
|
2441
2445
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -2477,8 +2481,8 @@ export type ContractUncheckedCreateWithoutEventsInput = {
|
|
|
2477
2481
|
periodicPayment?: number | null;
|
|
2478
2482
|
totalPaidToDate?: number;
|
|
2479
2483
|
totalInterestPaid?: number;
|
|
2480
|
-
status?:
|
|
2481
|
-
state?:
|
|
2484
|
+
status?: $Enums.ContractStatus;
|
|
2485
|
+
state?: $Enums.ContractStatus;
|
|
2482
2486
|
currentPhaseId?: string | null;
|
|
2483
2487
|
nextPaymentDueDate?: Date | string | null;
|
|
2484
2488
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -2523,8 +2527,8 @@ export type ContractUpdateWithoutEventsInput = {
|
|
|
2523
2527
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2524
2528
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2525
2529
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2526
|
-
status?: Prisma.
|
|
2527
|
-
state?: Prisma.
|
|
2530
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
2531
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
2528
2532
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2529
2533
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2530
2534
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -2566,8 +2570,8 @@ export type ContractUncheckedUpdateWithoutEventsInput = {
|
|
|
2566
2570
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2567
2571
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2568
2572
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2569
|
-
status?: Prisma.
|
|
2570
|
-
state?: Prisma.
|
|
2573
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
2574
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
2571
2575
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2572
2576
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2573
2577
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -2599,8 +2603,8 @@ export type ContractCreateWithoutPrequalificationInput = {
|
|
|
2599
2603
|
periodicPayment?: number | null;
|
|
2600
2604
|
totalPaidToDate?: number;
|
|
2601
2605
|
totalInterestPaid?: number;
|
|
2602
|
-
status?:
|
|
2603
|
-
state?:
|
|
2606
|
+
status?: $Enums.ContractStatus;
|
|
2607
|
+
state?: $Enums.ContractStatus;
|
|
2604
2608
|
currentPhaseId?: string | null;
|
|
2605
2609
|
nextPaymentDueDate?: Date | string | null;
|
|
2606
2610
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -2642,8 +2646,8 @@ export type ContractUncheckedCreateWithoutPrequalificationInput = {
|
|
|
2642
2646
|
periodicPayment?: number | null;
|
|
2643
2647
|
totalPaidToDate?: number;
|
|
2644
2648
|
totalInterestPaid?: number;
|
|
2645
|
-
status?:
|
|
2646
|
-
state?:
|
|
2649
|
+
status?: $Enums.ContractStatus;
|
|
2650
|
+
state?: $Enums.ContractStatus;
|
|
2647
2651
|
currentPhaseId?: string | null;
|
|
2648
2652
|
nextPaymentDueDate?: Date | string | null;
|
|
2649
2653
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -2688,8 +2692,8 @@ export type ContractUpdateWithoutPrequalificationInput = {
|
|
|
2688
2692
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2689
2693
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2690
2694
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2691
|
-
status?: Prisma.
|
|
2692
|
-
state?: Prisma.
|
|
2695
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
2696
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
2693
2697
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2694
2698
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2695
2699
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -2731,8 +2735,8 @@ export type ContractUncheckedUpdateWithoutPrequalificationInput = {
|
|
|
2731
2735
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2732
2736
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2733
2737
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2734
|
-
status?: Prisma.
|
|
2735
|
-
state?: Prisma.
|
|
2738
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
2739
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
2736
2740
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2737
2741
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2738
2742
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -2764,8 +2768,8 @@ export type ContractCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
2764
2768
|
periodicPayment?: number | null;
|
|
2765
2769
|
totalPaidToDate?: number;
|
|
2766
2770
|
totalInterestPaid?: number;
|
|
2767
|
-
status?:
|
|
2768
|
-
state?:
|
|
2771
|
+
status?: $Enums.ContractStatus;
|
|
2772
|
+
state?: $Enums.ContractStatus;
|
|
2769
2773
|
currentPhaseId?: string | null;
|
|
2770
2774
|
nextPaymentDueDate?: Date | string | null;
|
|
2771
2775
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -2807,8 +2811,8 @@ export type ContractUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
2807
2811
|
periodicPayment?: number | null;
|
|
2808
2812
|
totalPaidToDate?: number;
|
|
2809
2813
|
totalInterestPaid?: number;
|
|
2810
|
-
status?:
|
|
2811
|
-
state?:
|
|
2814
|
+
status?: $Enums.ContractStatus;
|
|
2815
|
+
state?: $Enums.ContractStatus;
|
|
2812
2816
|
currentPhaseId?: string | null;
|
|
2813
2817
|
nextPaymentDueDate?: Date | string | null;
|
|
2814
2818
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -2853,8 +2857,8 @@ export type ContractUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
2853
2857
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2854
2858
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2855
2859
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2856
|
-
status?: Prisma.
|
|
2857
|
-
state?: Prisma.
|
|
2860
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
2861
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
2858
2862
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2859
2863
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2860
2864
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -2896,8 +2900,8 @@ export type ContractUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
2896
2900
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2897
2901
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2898
2902
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2899
|
-
status?: Prisma.
|
|
2900
|
-
state?: Prisma.
|
|
2903
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
2904
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
2901
2905
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2902
2906
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2903
2907
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -2933,8 +2937,8 @@ export type ContractCreateManyBuyerInput = {
|
|
|
2933
2937
|
periodicPayment?: number | null;
|
|
2934
2938
|
totalPaidToDate?: number;
|
|
2935
2939
|
totalInterestPaid?: number;
|
|
2936
|
-
status?:
|
|
2937
|
-
state?:
|
|
2940
|
+
status?: $Enums.ContractStatus;
|
|
2941
|
+
state?: $Enums.ContractStatus;
|
|
2938
2942
|
currentPhaseId?: string | null;
|
|
2939
2943
|
nextPaymentDueDate?: Date | string | null;
|
|
2940
2944
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -2964,8 +2968,8 @@ export type ContractCreateManySellerInput = {
|
|
|
2964
2968
|
periodicPayment?: number | null;
|
|
2965
2969
|
totalPaidToDate?: number;
|
|
2966
2970
|
totalInterestPaid?: number;
|
|
2967
|
-
status?:
|
|
2968
|
-
state?:
|
|
2971
|
+
status?: $Enums.ContractStatus;
|
|
2972
|
+
state?: $Enums.ContractStatus;
|
|
2969
2973
|
currentPhaseId?: string | null;
|
|
2970
2974
|
nextPaymentDueDate?: Date | string | null;
|
|
2971
2975
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -2991,8 +2995,8 @@ export type ContractUpdateWithoutBuyerInput = {
|
|
|
2991
2995
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
2992
2996
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2993
2997
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
2994
|
-
status?: Prisma.
|
|
2995
|
-
state?: Prisma.
|
|
2998
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
2999
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
2996
3000
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
2997
3001
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
2998
3002
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -3033,8 +3037,8 @@ export type ContractUncheckedUpdateWithoutBuyerInput = {
|
|
|
3033
3037
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
3034
3038
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3035
3039
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3036
|
-
status?: Prisma.
|
|
3037
|
-
state?: Prisma.
|
|
3040
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3041
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3038
3042
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
3039
3043
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
3040
3044
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -3071,8 +3075,8 @@ export type ContractUncheckedUpdateManyWithoutBuyerInput = {
|
|
|
3071
3075
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
3072
3076
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3073
3077
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3074
|
-
status?: Prisma.
|
|
3075
|
-
state?: Prisma.
|
|
3078
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3079
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3076
3080
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
3077
3081
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
3078
3082
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -3098,8 +3102,8 @@ export type ContractUpdateWithoutSellerInput = {
|
|
|
3098
3102
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
3099
3103
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3100
3104
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3101
|
-
status?: Prisma.
|
|
3102
|
-
state?: Prisma.
|
|
3105
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3106
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3103
3107
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
3104
3108
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
3105
3109
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -3140,8 +3144,8 @@ export type ContractUncheckedUpdateWithoutSellerInput = {
|
|
|
3140
3144
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
3141
3145
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3142
3146
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3143
|
-
status?: Prisma.
|
|
3144
|
-
state?: Prisma.
|
|
3147
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3148
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3145
3149
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
3146
3150
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
3147
3151
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -3178,8 +3182,8 @@ export type ContractUncheckedUpdateManyWithoutSellerInput = {
|
|
|
3178
3182
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
3179
3183
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3180
3184
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3181
|
-
status?: Prisma.
|
|
3182
|
-
state?: Prisma.
|
|
3185
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3186
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3183
3187
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
3184
3188
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
3185
3189
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -3209,8 +3213,8 @@ export type ContractCreateManyTenantInput = {
|
|
|
3209
3213
|
periodicPayment?: number | null;
|
|
3210
3214
|
totalPaidToDate?: number;
|
|
3211
3215
|
totalInterestPaid?: number;
|
|
3212
|
-
status?:
|
|
3213
|
-
state?:
|
|
3216
|
+
status?: $Enums.ContractStatus;
|
|
3217
|
+
state?: $Enums.ContractStatus;
|
|
3214
3218
|
currentPhaseId?: string | null;
|
|
3215
3219
|
nextPaymentDueDate?: Date | string | null;
|
|
3216
3220
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -3236,8 +3240,8 @@ export type ContractUpdateWithoutTenantInput = {
|
|
|
3236
3240
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
3237
3241
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3238
3242
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3239
|
-
status?: Prisma.
|
|
3240
|
-
state?: Prisma.
|
|
3243
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3244
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3241
3245
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
3242
3246
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
3243
3247
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -3278,8 +3282,8 @@ export type ContractUncheckedUpdateWithoutTenantInput = {
|
|
|
3278
3282
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
3279
3283
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3280
3284
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3281
|
-
status?: Prisma.
|
|
3282
|
-
state?: Prisma.
|
|
3285
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3286
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3283
3287
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
3284
3288
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
3285
3289
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -3316,8 +3320,8 @@ export type ContractUncheckedUpdateManyWithoutTenantInput = {
|
|
|
3316
3320
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
3317
3321
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3318
3322
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3319
|
-
status?: Prisma.
|
|
3320
|
-
state?: Prisma.
|
|
3323
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3324
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3321
3325
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
3322
3326
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
3323
3327
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -3347,8 +3351,8 @@ export type ContractCreateManyPropertyUnitInput = {
|
|
|
3347
3351
|
periodicPayment?: number | null;
|
|
3348
3352
|
totalPaidToDate?: number;
|
|
3349
3353
|
totalInterestPaid?: number;
|
|
3350
|
-
status?:
|
|
3351
|
-
state?:
|
|
3354
|
+
status?: $Enums.ContractStatus;
|
|
3355
|
+
state?: $Enums.ContractStatus;
|
|
3352
3356
|
currentPhaseId?: string | null;
|
|
3353
3357
|
nextPaymentDueDate?: Date | string | null;
|
|
3354
3358
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -3374,8 +3378,8 @@ export type ContractUpdateWithoutPropertyUnitInput = {
|
|
|
3374
3378
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
3375
3379
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3376
3380
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3377
|
-
status?: Prisma.
|
|
3378
|
-
state?: Prisma.
|
|
3381
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3382
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3379
3383
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
3380
3384
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
3381
3385
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -3416,8 +3420,8 @@ export type ContractUncheckedUpdateWithoutPropertyUnitInput = {
|
|
|
3416
3420
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
3417
3421
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3418
3422
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3419
|
-
status?: Prisma.
|
|
3420
|
-
state?: Prisma.
|
|
3423
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3424
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3421
3425
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
3422
3426
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
3423
3427
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -3454,8 +3458,8 @@ export type ContractUncheckedUpdateManyWithoutPropertyUnitInput = {
|
|
|
3454
3458
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
3455
3459
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3456
3460
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3457
|
-
status?: Prisma.
|
|
3458
|
-
state?: Prisma.
|
|
3461
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3462
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3459
3463
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
3460
3464
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
3461
3465
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -3485,8 +3489,8 @@ export type ContractCreateManyPaymentMethodInput = {
|
|
|
3485
3489
|
periodicPayment?: number | null;
|
|
3486
3490
|
totalPaidToDate?: number;
|
|
3487
3491
|
totalInterestPaid?: number;
|
|
3488
|
-
status?:
|
|
3489
|
-
state?:
|
|
3492
|
+
status?: $Enums.ContractStatus;
|
|
3493
|
+
state?: $Enums.ContractStatus;
|
|
3490
3494
|
currentPhaseId?: string | null;
|
|
3491
3495
|
nextPaymentDueDate?: Date | string | null;
|
|
3492
3496
|
lastReminderSentAt?: Date | string | null;
|
|
@@ -3512,8 +3516,8 @@ export type ContractUpdateWithoutPaymentMethodInput = {
|
|
|
3512
3516
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
3513
3517
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3514
3518
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3515
|
-
status?: Prisma.
|
|
3516
|
-
state?: Prisma.
|
|
3519
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3520
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3517
3521
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
3518
3522
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
3519
3523
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -3554,8 +3558,8 @@ export type ContractUncheckedUpdateWithoutPaymentMethodInput = {
|
|
|
3554
3558
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
3555
3559
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3556
3560
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3557
|
-
status?: Prisma.
|
|
3558
|
-
state?: Prisma.
|
|
3561
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3562
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3559
3563
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
3560
3564
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
3561
3565
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -3592,8 +3596,8 @@ export type ContractUncheckedUpdateManyWithoutPaymentMethodInput = {
|
|
|
3592
3596
|
periodicPayment?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
3593
3597
|
totalPaidToDate?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3594
3598
|
totalInterestPaid?: Prisma.FloatFieldUpdateOperationsInput | number;
|
|
3595
|
-
status?: Prisma.
|
|
3596
|
-
state?: Prisma.
|
|
3599
|
+
status?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3600
|
+
state?: Prisma.EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus;
|
|
3597
3601
|
currentPhaseId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
3598
3602
|
nextPaymentDueDate?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
3599
3603
|
lastReminderSentAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
@@ -3797,8 +3801,8 @@ export type $ContractPayload<ExtArgs extends runtime.Types.Extensions.InternalAr
|
|
|
3797
3801
|
periodicPayment: number | null;
|
|
3798
3802
|
totalPaidToDate: number;
|
|
3799
3803
|
totalInterestPaid: number;
|
|
3800
|
-
status:
|
|
3801
|
-
state:
|
|
3804
|
+
status: $Enums.ContractStatus;
|
|
3805
|
+
state: $Enums.ContractStatus;
|
|
3802
3806
|
currentPhaseId: string | null;
|
|
3803
3807
|
nextPaymentDueDate: Date | null;
|
|
3804
3808
|
lastReminderSentAt: Date | null;
|
|
@@ -4141,8 +4145,8 @@ export interface ContractFieldRefs {
|
|
|
4141
4145
|
readonly periodicPayment: Prisma.FieldRef<"Contract", 'Float'>;
|
|
4142
4146
|
readonly totalPaidToDate: Prisma.FieldRef<"Contract", 'Float'>;
|
|
4143
4147
|
readonly totalInterestPaid: Prisma.FieldRef<"Contract", 'Float'>;
|
|
4144
|
-
readonly status: Prisma.FieldRef<"Contract", '
|
|
4145
|
-
readonly state: Prisma.FieldRef<"Contract", '
|
|
4148
|
+
readonly status: Prisma.FieldRef<"Contract", 'ContractStatus'>;
|
|
4149
|
+
readonly state: Prisma.FieldRef<"Contract", 'ContractStatus'>;
|
|
4146
4150
|
readonly currentPhaseId: Prisma.FieldRef<"Contract", 'String'>;
|
|
4147
4151
|
readonly nextPaymentDueDate: Prisma.FieldRef<"Contract", 'DateTime'>;
|
|
4148
4152
|
readonly lastReminderSentAt: Prisma.FieldRef<"Contract", 'DateTime'>;
|