@valentine-efagene/qshelter-common 2.0.29 → 2.0.31
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 +20 -0
- package/dist/generated/client/client.d.ts +20 -0
- package/dist/generated/client/commonInputTypes.d.ts +531 -51
- package/dist/generated/client/enums.d.ts +133 -0
- package/dist/generated/client/enums.js +117 -0
- package/dist/generated/client/internal/class.d.ts +44 -0
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +478 -35
- package/dist/generated/client/internal/prismaNamespace.js +139 -36
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +146 -35
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +139 -36
- package/dist/generated/client/models/Contract.d.ts +423 -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/ContractTermination.d.ts +3449 -0
- package/dist/generated/client/models/ContractTermination.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/Tenant.d.ts +163 -0
- package/dist/generated/client/models/User.d.ts +586 -0
- package/dist/generated/client/models/index.d.ts +4 -0
- package/dist/generated/client/models/index.js +4 -0
- package/dist/generated/client/models.d.ts +4 -0
- package/package.json +1 -1
- package/prisma/migrations/20260101081428_normalize_schema/migration.sql +119 -0
- package/prisma/migrations/20260101102022_add_contract_termination/migration.sql +69 -0
- package/prisma/schema.prisma +340 -30
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -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 PaymentPlan
|
|
@@ -28,7 +29,7 @@ export type PaymentPlanMinAggregateOutputType = {
|
|
|
28
29
|
name: string | null;
|
|
29
30
|
description: string | null;
|
|
30
31
|
isActive: boolean | null;
|
|
31
|
-
paymentFrequency:
|
|
32
|
+
paymentFrequency: $Enums.PaymentFrequency | null;
|
|
32
33
|
customFrequencyDays: number | null;
|
|
33
34
|
numberOfInstallments: number | null;
|
|
34
35
|
calculateInterestDaily: boolean | null;
|
|
@@ -42,7 +43,7 @@ export type PaymentPlanMaxAggregateOutputType = {
|
|
|
42
43
|
name: string | null;
|
|
43
44
|
description: string | null;
|
|
44
45
|
isActive: boolean | null;
|
|
45
|
-
paymentFrequency:
|
|
46
|
+
paymentFrequency: $Enums.PaymentFrequency | null;
|
|
46
47
|
customFrequencyDays: number | null;
|
|
47
48
|
numberOfInstallments: number | null;
|
|
48
49
|
calculateInterestDaily: boolean | null;
|
|
@@ -200,7 +201,7 @@ export type PaymentPlanGroupByOutputType = {
|
|
|
200
201
|
name: string;
|
|
201
202
|
description: string | null;
|
|
202
203
|
isActive: boolean;
|
|
203
|
-
paymentFrequency:
|
|
204
|
+
paymentFrequency: $Enums.PaymentFrequency;
|
|
204
205
|
customFrequencyDays: number | null;
|
|
205
206
|
numberOfInstallments: number;
|
|
206
207
|
calculateInterestDaily: boolean;
|
|
@@ -225,7 +226,7 @@ export type PaymentPlanWhereInput = {
|
|
|
225
226
|
name?: Prisma.StringFilter<"PaymentPlan"> | string;
|
|
226
227
|
description?: Prisma.StringNullableFilter<"PaymentPlan"> | string | null;
|
|
227
228
|
isActive?: Prisma.BoolFilter<"PaymentPlan"> | boolean;
|
|
228
|
-
paymentFrequency?: Prisma.
|
|
229
|
+
paymentFrequency?: Prisma.EnumPaymentFrequencyFilter<"PaymentPlan"> | $Enums.PaymentFrequency;
|
|
229
230
|
customFrequencyDays?: Prisma.IntNullableFilter<"PaymentPlan"> | number | null;
|
|
230
231
|
numberOfInstallments?: Prisma.IntFilter<"PaymentPlan"> | number;
|
|
231
232
|
calculateInterestDaily?: Prisma.BoolFilter<"PaymentPlan"> | boolean;
|
|
@@ -264,7 +265,7 @@ export type PaymentPlanWhereUniqueInput = Prisma.AtLeast<{
|
|
|
264
265
|
name?: Prisma.StringFilter<"PaymentPlan"> | string;
|
|
265
266
|
description?: Prisma.StringNullableFilter<"PaymentPlan"> | string | null;
|
|
266
267
|
isActive?: Prisma.BoolFilter<"PaymentPlan"> | boolean;
|
|
267
|
-
paymentFrequency?: Prisma.
|
|
268
|
+
paymentFrequency?: Prisma.EnumPaymentFrequencyFilter<"PaymentPlan"> | $Enums.PaymentFrequency;
|
|
268
269
|
customFrequencyDays?: Prisma.IntNullableFilter<"PaymentPlan"> | number | null;
|
|
269
270
|
numberOfInstallments?: Prisma.IntFilter<"PaymentPlan"> | number;
|
|
270
271
|
calculateInterestDaily?: Prisma.BoolFilter<"PaymentPlan"> | boolean;
|
|
@@ -303,7 +304,7 @@ export type PaymentPlanScalarWhereWithAggregatesInput = {
|
|
|
303
304
|
name?: Prisma.StringWithAggregatesFilter<"PaymentPlan"> | string;
|
|
304
305
|
description?: Prisma.StringNullableWithAggregatesFilter<"PaymentPlan"> | string | null;
|
|
305
306
|
isActive?: Prisma.BoolWithAggregatesFilter<"PaymentPlan"> | boolean;
|
|
306
|
-
paymentFrequency?: Prisma.
|
|
307
|
+
paymentFrequency?: Prisma.EnumPaymentFrequencyWithAggregatesFilter<"PaymentPlan"> | $Enums.PaymentFrequency;
|
|
307
308
|
customFrequencyDays?: Prisma.IntNullableWithAggregatesFilter<"PaymentPlan"> | number | null;
|
|
308
309
|
numberOfInstallments?: Prisma.IntWithAggregatesFilter<"PaymentPlan"> | number;
|
|
309
310
|
calculateInterestDaily?: Prisma.BoolWithAggregatesFilter<"PaymentPlan"> | boolean;
|
|
@@ -316,7 +317,7 @@ export type PaymentPlanCreateInput = {
|
|
|
316
317
|
name: string;
|
|
317
318
|
description?: string | null;
|
|
318
319
|
isActive?: boolean;
|
|
319
|
-
paymentFrequency:
|
|
320
|
+
paymentFrequency: $Enums.PaymentFrequency;
|
|
320
321
|
customFrequencyDays?: number | null;
|
|
321
322
|
numberOfInstallments: number;
|
|
322
323
|
calculateInterestDaily?: boolean;
|
|
@@ -333,7 +334,7 @@ export type PaymentPlanUncheckedCreateInput = {
|
|
|
333
334
|
name: string;
|
|
334
335
|
description?: string | null;
|
|
335
336
|
isActive?: boolean;
|
|
336
|
-
paymentFrequency:
|
|
337
|
+
paymentFrequency: $Enums.PaymentFrequency;
|
|
337
338
|
customFrequencyDays?: number | null;
|
|
338
339
|
numberOfInstallments: number;
|
|
339
340
|
calculateInterestDaily?: boolean;
|
|
@@ -348,7 +349,7 @@ export type PaymentPlanUpdateInput = {
|
|
|
348
349
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
349
350
|
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
350
351
|
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
351
|
-
paymentFrequency?: Prisma.
|
|
352
|
+
paymentFrequency?: Prisma.EnumPaymentFrequencyFieldUpdateOperationsInput | $Enums.PaymentFrequency;
|
|
352
353
|
customFrequencyDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
353
354
|
numberOfInstallments?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
354
355
|
calculateInterestDaily?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
@@ -365,7 +366,7 @@ export type PaymentPlanUncheckedUpdateInput = {
|
|
|
365
366
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
366
367
|
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
367
368
|
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
368
|
-
paymentFrequency?: Prisma.
|
|
369
|
+
paymentFrequency?: Prisma.EnumPaymentFrequencyFieldUpdateOperationsInput | $Enums.PaymentFrequency;
|
|
369
370
|
customFrequencyDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
370
371
|
numberOfInstallments?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
371
372
|
calculateInterestDaily?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
@@ -381,7 +382,7 @@ export type PaymentPlanCreateManyInput = {
|
|
|
381
382
|
name: string;
|
|
382
383
|
description?: string | null;
|
|
383
384
|
isActive?: boolean;
|
|
384
|
-
paymentFrequency:
|
|
385
|
+
paymentFrequency: $Enums.PaymentFrequency;
|
|
385
386
|
customFrequencyDays?: number | null;
|
|
386
387
|
numberOfInstallments: number;
|
|
387
388
|
calculateInterestDaily?: boolean;
|
|
@@ -394,7 +395,7 @@ export type PaymentPlanUpdateManyMutationInput = {
|
|
|
394
395
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
395
396
|
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
396
397
|
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
397
|
-
paymentFrequency?: Prisma.
|
|
398
|
+
paymentFrequency?: Prisma.EnumPaymentFrequencyFieldUpdateOperationsInput | $Enums.PaymentFrequency;
|
|
398
399
|
customFrequencyDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
399
400
|
numberOfInstallments?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
400
401
|
calculateInterestDaily?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
@@ -408,7 +409,7 @@ export type PaymentPlanUncheckedUpdateManyInput = {
|
|
|
408
409
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
409
410
|
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
410
411
|
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
411
|
-
paymentFrequency?: Prisma.
|
|
412
|
+
paymentFrequency?: Prisma.EnumPaymentFrequencyFieldUpdateOperationsInput | $Enums.PaymentFrequency;
|
|
412
413
|
customFrequencyDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
413
414
|
numberOfInstallments?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
414
415
|
calculateInterestDaily?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
@@ -527,6 +528,9 @@ export type PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput = {
|
|
|
527
528
|
updateMany?: Prisma.PaymentPlanUpdateManyWithWhereWithoutTenantInput | Prisma.PaymentPlanUpdateManyWithWhereWithoutTenantInput[];
|
|
528
529
|
deleteMany?: Prisma.PaymentPlanScalarWhereInput | Prisma.PaymentPlanScalarWhereInput[];
|
|
529
530
|
};
|
|
531
|
+
export type EnumPaymentFrequencyFieldUpdateOperationsInput = {
|
|
532
|
+
set?: $Enums.PaymentFrequency;
|
|
533
|
+
};
|
|
530
534
|
export type PaymentPlanCreateNestedOneWithoutMethodPhasesInput = {
|
|
531
535
|
create?: Prisma.XOR<Prisma.PaymentPlanCreateWithoutMethodPhasesInput, Prisma.PaymentPlanUncheckedCreateWithoutMethodPhasesInput>;
|
|
532
536
|
connectOrCreate?: Prisma.PaymentPlanCreateOrConnectWithoutMethodPhasesInput;
|
|
@@ -560,7 +564,7 @@ export type PaymentPlanCreateWithoutTenantInput = {
|
|
|
560
564
|
name: string;
|
|
561
565
|
description?: string | null;
|
|
562
566
|
isActive?: boolean;
|
|
563
|
-
paymentFrequency:
|
|
567
|
+
paymentFrequency: $Enums.PaymentFrequency;
|
|
564
568
|
customFrequencyDays?: number | null;
|
|
565
569
|
numberOfInstallments: number;
|
|
566
570
|
calculateInterestDaily?: boolean;
|
|
@@ -575,7 +579,7 @@ export type PaymentPlanUncheckedCreateWithoutTenantInput = {
|
|
|
575
579
|
name: string;
|
|
576
580
|
description?: string | null;
|
|
577
581
|
isActive?: boolean;
|
|
578
|
-
paymentFrequency:
|
|
582
|
+
paymentFrequency: $Enums.PaymentFrequency;
|
|
579
583
|
customFrequencyDays?: number | null;
|
|
580
584
|
numberOfInstallments: number;
|
|
581
585
|
calculateInterestDaily?: boolean;
|
|
@@ -615,7 +619,7 @@ export type PaymentPlanScalarWhereInput = {
|
|
|
615
619
|
name?: Prisma.StringFilter<"PaymentPlan"> | string;
|
|
616
620
|
description?: Prisma.StringNullableFilter<"PaymentPlan"> | string | null;
|
|
617
621
|
isActive?: Prisma.BoolFilter<"PaymentPlan"> | boolean;
|
|
618
|
-
paymentFrequency?: Prisma.
|
|
622
|
+
paymentFrequency?: Prisma.EnumPaymentFrequencyFilter<"PaymentPlan"> | $Enums.PaymentFrequency;
|
|
619
623
|
customFrequencyDays?: Prisma.IntNullableFilter<"PaymentPlan"> | number | null;
|
|
620
624
|
numberOfInstallments?: Prisma.IntFilter<"PaymentPlan"> | number;
|
|
621
625
|
calculateInterestDaily?: Prisma.BoolFilter<"PaymentPlan"> | boolean;
|
|
@@ -628,7 +632,7 @@ export type PaymentPlanCreateWithoutMethodPhasesInput = {
|
|
|
628
632
|
name: string;
|
|
629
633
|
description?: string | null;
|
|
630
634
|
isActive?: boolean;
|
|
631
|
-
paymentFrequency:
|
|
635
|
+
paymentFrequency: $Enums.PaymentFrequency;
|
|
632
636
|
customFrequencyDays?: number | null;
|
|
633
637
|
numberOfInstallments: number;
|
|
634
638
|
calculateInterestDaily?: boolean;
|
|
@@ -644,7 +648,7 @@ export type PaymentPlanUncheckedCreateWithoutMethodPhasesInput = {
|
|
|
644
648
|
name: string;
|
|
645
649
|
description?: string | null;
|
|
646
650
|
isActive?: boolean;
|
|
647
|
-
paymentFrequency:
|
|
651
|
+
paymentFrequency: $Enums.PaymentFrequency;
|
|
648
652
|
customFrequencyDays?: number | null;
|
|
649
653
|
numberOfInstallments: number;
|
|
650
654
|
calculateInterestDaily?: boolean;
|
|
@@ -671,7 +675,7 @@ export type PaymentPlanUpdateWithoutMethodPhasesInput = {
|
|
|
671
675
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
672
676
|
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
673
677
|
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
674
|
-
paymentFrequency?: Prisma.
|
|
678
|
+
paymentFrequency?: Prisma.EnumPaymentFrequencyFieldUpdateOperationsInput | $Enums.PaymentFrequency;
|
|
675
679
|
customFrequencyDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
676
680
|
numberOfInstallments?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
677
681
|
calculateInterestDaily?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
@@ -687,7 +691,7 @@ export type PaymentPlanUncheckedUpdateWithoutMethodPhasesInput = {
|
|
|
687
691
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
688
692
|
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
689
693
|
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
690
|
-
paymentFrequency?: Prisma.
|
|
694
|
+
paymentFrequency?: Prisma.EnumPaymentFrequencyFieldUpdateOperationsInput | $Enums.PaymentFrequency;
|
|
691
695
|
customFrequencyDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
692
696
|
numberOfInstallments?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
693
697
|
calculateInterestDaily?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
@@ -701,7 +705,7 @@ export type PaymentPlanCreateWithoutContractPhasesInput = {
|
|
|
701
705
|
name: string;
|
|
702
706
|
description?: string | null;
|
|
703
707
|
isActive?: boolean;
|
|
704
|
-
paymentFrequency:
|
|
708
|
+
paymentFrequency: $Enums.PaymentFrequency;
|
|
705
709
|
customFrequencyDays?: number | null;
|
|
706
710
|
numberOfInstallments: number;
|
|
707
711
|
calculateInterestDaily?: boolean;
|
|
@@ -717,7 +721,7 @@ export type PaymentPlanUncheckedCreateWithoutContractPhasesInput = {
|
|
|
717
721
|
name: string;
|
|
718
722
|
description?: string | null;
|
|
719
723
|
isActive?: boolean;
|
|
720
|
-
paymentFrequency:
|
|
724
|
+
paymentFrequency: $Enums.PaymentFrequency;
|
|
721
725
|
customFrequencyDays?: number | null;
|
|
722
726
|
numberOfInstallments: number;
|
|
723
727
|
calculateInterestDaily?: boolean;
|
|
@@ -744,7 +748,7 @@ export type PaymentPlanUpdateWithoutContractPhasesInput = {
|
|
|
744
748
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
745
749
|
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
746
750
|
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
747
|
-
paymentFrequency?: Prisma.
|
|
751
|
+
paymentFrequency?: Prisma.EnumPaymentFrequencyFieldUpdateOperationsInput | $Enums.PaymentFrequency;
|
|
748
752
|
customFrequencyDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
749
753
|
numberOfInstallments?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
750
754
|
calculateInterestDaily?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
@@ -760,7 +764,7 @@ export type PaymentPlanUncheckedUpdateWithoutContractPhasesInput = {
|
|
|
760
764
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
761
765
|
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
762
766
|
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
763
|
-
paymentFrequency?: Prisma.
|
|
767
|
+
paymentFrequency?: Prisma.EnumPaymentFrequencyFieldUpdateOperationsInput | $Enums.PaymentFrequency;
|
|
764
768
|
customFrequencyDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
765
769
|
numberOfInstallments?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
766
770
|
calculateInterestDaily?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
@@ -774,7 +778,7 @@ export type PaymentPlanCreateManyTenantInput = {
|
|
|
774
778
|
name: string;
|
|
775
779
|
description?: string | null;
|
|
776
780
|
isActive?: boolean;
|
|
777
|
-
paymentFrequency:
|
|
781
|
+
paymentFrequency: $Enums.PaymentFrequency;
|
|
778
782
|
customFrequencyDays?: number | null;
|
|
779
783
|
numberOfInstallments: number;
|
|
780
784
|
calculateInterestDaily?: boolean;
|
|
@@ -787,7 +791,7 @@ export type PaymentPlanUpdateWithoutTenantInput = {
|
|
|
787
791
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
788
792
|
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
789
793
|
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
790
|
-
paymentFrequency?: Prisma.
|
|
794
|
+
paymentFrequency?: Prisma.EnumPaymentFrequencyFieldUpdateOperationsInput | $Enums.PaymentFrequency;
|
|
791
795
|
customFrequencyDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
792
796
|
numberOfInstallments?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
793
797
|
calculateInterestDaily?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
@@ -802,7 +806,7 @@ export type PaymentPlanUncheckedUpdateWithoutTenantInput = {
|
|
|
802
806
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
803
807
|
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
804
808
|
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
805
|
-
paymentFrequency?: Prisma.
|
|
809
|
+
paymentFrequency?: Prisma.EnumPaymentFrequencyFieldUpdateOperationsInput | $Enums.PaymentFrequency;
|
|
806
810
|
customFrequencyDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
807
811
|
numberOfInstallments?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
808
812
|
calculateInterestDaily?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
@@ -817,7 +821,7 @@ export type PaymentPlanUncheckedUpdateManyWithoutTenantInput = {
|
|
|
817
821
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
818
822
|
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
819
823
|
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
820
|
-
paymentFrequency?: Prisma.
|
|
824
|
+
paymentFrequency?: Prisma.EnumPaymentFrequencyFieldUpdateOperationsInput | $Enums.PaymentFrequency;
|
|
821
825
|
customFrequencyDays?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
822
826
|
numberOfInstallments?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
823
827
|
calculateInterestDaily?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
@@ -909,7 +913,7 @@ export type $PaymentPlanPayload<ExtArgs extends runtime.Types.Extensions.Interna
|
|
|
909
913
|
name: string;
|
|
910
914
|
description: string | null;
|
|
911
915
|
isActive: boolean;
|
|
912
|
-
paymentFrequency:
|
|
916
|
+
paymentFrequency: $Enums.PaymentFrequency;
|
|
913
917
|
customFrequencyDays: number | null;
|
|
914
918
|
numberOfInstallments: number;
|
|
915
919
|
calculateInterestDaily: boolean;
|
|
@@ -1226,7 +1230,7 @@ export interface PaymentPlanFieldRefs {
|
|
|
1226
1230
|
readonly name: Prisma.FieldRef<"PaymentPlan", 'String'>;
|
|
1227
1231
|
readonly description: Prisma.FieldRef<"PaymentPlan", 'String'>;
|
|
1228
1232
|
readonly isActive: Prisma.FieldRef<"PaymentPlan", 'Boolean'>;
|
|
1229
|
-
readonly paymentFrequency: Prisma.FieldRef<"PaymentPlan", '
|
|
1233
|
+
readonly paymentFrequency: Prisma.FieldRef<"PaymentPlan", 'PaymentFrequency'>;
|
|
1230
1234
|
readonly customFrequencyDays: Prisma.FieldRef<"PaymentPlan", 'Int'>;
|
|
1231
1235
|
readonly numberOfInstallments: Prisma.FieldRef<"PaymentPlan", 'Int'>;
|
|
1232
1236
|
readonly calculateInterestDaily: Prisma.FieldRef<"PaymentPlan", 'Boolean'>;
|