@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
|
@@ -154,6 +154,7 @@ export type TenantWhereInput = {
|
|
|
154
154
|
prequalifications?: Prisma.PrequalificationListRelationFilter;
|
|
155
155
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestListRelationFilter;
|
|
156
156
|
documentRequirementRules?: Prisma.DocumentRequirementRuleListRelationFilter;
|
|
157
|
+
contractTerminations?: Prisma.ContractTerminationListRelationFilter;
|
|
157
158
|
};
|
|
158
159
|
export type TenantOrderByWithRelationInput = {
|
|
159
160
|
id?: Prisma.SortOrder;
|
|
@@ -170,6 +171,7 @@ export type TenantOrderByWithRelationInput = {
|
|
|
170
171
|
prequalifications?: Prisma.PrequalificationOrderByRelationAggregateInput;
|
|
171
172
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestOrderByRelationAggregateInput;
|
|
172
173
|
documentRequirementRules?: Prisma.DocumentRequirementRuleOrderByRelationAggregateInput;
|
|
174
|
+
contractTerminations?: Prisma.ContractTerminationOrderByRelationAggregateInput;
|
|
173
175
|
_relevance?: Prisma.TenantOrderByRelevanceInput;
|
|
174
176
|
};
|
|
175
177
|
export type TenantWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -190,6 +192,7 @@ export type TenantWhereUniqueInput = Prisma.AtLeast<{
|
|
|
190
192
|
prequalifications?: Prisma.PrequalificationListRelationFilter;
|
|
191
193
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestListRelationFilter;
|
|
192
194
|
documentRequirementRules?: Prisma.DocumentRequirementRuleListRelationFilter;
|
|
195
|
+
contractTerminations?: Prisma.ContractTerminationListRelationFilter;
|
|
193
196
|
}, "id" | "subdomain">;
|
|
194
197
|
export type TenantOrderByWithAggregationInput = {
|
|
195
198
|
id?: Prisma.SortOrder;
|
|
@@ -228,6 +231,7 @@ export type TenantCreateInput = {
|
|
|
228
231
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutTenantInput;
|
|
229
232
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutTenantInput;
|
|
230
233
|
documentRequirementRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutTenantInput;
|
|
234
|
+
contractTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutTenantInput;
|
|
231
235
|
};
|
|
232
236
|
export type TenantUncheckedCreateInput = {
|
|
233
237
|
id?: string;
|
|
@@ -244,6 +248,7 @@ export type TenantUncheckedCreateInput = {
|
|
|
244
248
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutTenantInput;
|
|
245
249
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutTenantInput;
|
|
246
250
|
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutTenantInput;
|
|
251
|
+
contractTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutTenantInput;
|
|
247
252
|
};
|
|
248
253
|
export type TenantUpdateInput = {
|
|
249
254
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -260,6 +265,7 @@ export type TenantUpdateInput = {
|
|
|
260
265
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutTenantNestedInput;
|
|
261
266
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutTenantNestedInput;
|
|
262
267
|
documentRequirementRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutTenantNestedInput;
|
|
268
|
+
contractTerminations?: Prisma.ContractTerminationUpdateManyWithoutTenantNestedInput;
|
|
263
269
|
};
|
|
264
270
|
export type TenantUncheckedUpdateInput = {
|
|
265
271
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -276,6 +282,7 @@ export type TenantUncheckedUpdateInput = {
|
|
|
276
282
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
277
283
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutTenantNestedInput;
|
|
278
284
|
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
285
|
+
contractTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
279
286
|
};
|
|
280
287
|
export type TenantCreateManyInput = {
|
|
281
288
|
id?: string;
|
|
@@ -402,6 +409,18 @@ export type TenantUpdateOneRequiredWithoutContractsNestedInput = {
|
|
|
402
409
|
connect?: Prisma.TenantWhereUniqueInput;
|
|
403
410
|
update?: Prisma.XOR<Prisma.XOR<Prisma.TenantUpdateToOneWithWhereWithoutContractsInput, Prisma.TenantUpdateWithoutContractsInput>, Prisma.TenantUncheckedUpdateWithoutContractsInput>;
|
|
404
411
|
};
|
|
412
|
+
export type TenantCreateNestedOneWithoutContractTerminationsInput = {
|
|
413
|
+
create?: Prisma.XOR<Prisma.TenantCreateWithoutContractTerminationsInput, Prisma.TenantUncheckedCreateWithoutContractTerminationsInput>;
|
|
414
|
+
connectOrCreate?: Prisma.TenantCreateOrConnectWithoutContractTerminationsInput;
|
|
415
|
+
connect?: Prisma.TenantWhereUniqueInput;
|
|
416
|
+
};
|
|
417
|
+
export type TenantUpdateOneRequiredWithoutContractTerminationsNestedInput = {
|
|
418
|
+
create?: Prisma.XOR<Prisma.TenantCreateWithoutContractTerminationsInput, Prisma.TenantUncheckedCreateWithoutContractTerminationsInput>;
|
|
419
|
+
connectOrCreate?: Prisma.TenantCreateOrConnectWithoutContractTerminationsInput;
|
|
420
|
+
upsert?: Prisma.TenantUpsertWithoutContractTerminationsInput;
|
|
421
|
+
connect?: Prisma.TenantWhereUniqueInput;
|
|
422
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.TenantUpdateToOneWithWhereWithoutContractTerminationsInput, Prisma.TenantUpdateWithoutContractTerminationsInput>, Prisma.TenantUncheckedUpdateWithoutContractTerminationsInput>;
|
|
423
|
+
};
|
|
405
424
|
export type TenantCreateNestedOneWithoutPrequalificationsInput = {
|
|
406
425
|
create?: Prisma.XOR<Prisma.TenantCreateWithoutPrequalificationsInput, Prisma.TenantUncheckedCreateWithoutPrequalificationsInput>;
|
|
407
426
|
connectOrCreate?: Prisma.TenantCreateOrConnectWithoutPrequalificationsInput;
|
|
@@ -452,6 +471,7 @@ export type TenantCreateWithoutUsersInput = {
|
|
|
452
471
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutTenantInput;
|
|
453
472
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutTenantInput;
|
|
454
473
|
documentRequirementRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutTenantInput;
|
|
474
|
+
contractTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutTenantInput;
|
|
455
475
|
};
|
|
456
476
|
export type TenantUncheckedCreateWithoutUsersInput = {
|
|
457
477
|
id?: string;
|
|
@@ -467,6 +487,7 @@ export type TenantUncheckedCreateWithoutUsersInput = {
|
|
|
467
487
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutTenantInput;
|
|
468
488
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutTenantInput;
|
|
469
489
|
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutTenantInput;
|
|
490
|
+
contractTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutTenantInput;
|
|
470
491
|
};
|
|
471
492
|
export type TenantCreateOrConnectWithoutUsersInput = {
|
|
472
493
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -495,6 +516,7 @@ export type TenantUpdateWithoutUsersInput = {
|
|
|
495
516
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutTenantNestedInput;
|
|
496
517
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutTenantNestedInput;
|
|
497
518
|
documentRequirementRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutTenantNestedInput;
|
|
519
|
+
contractTerminations?: Prisma.ContractTerminationUpdateManyWithoutTenantNestedInput;
|
|
498
520
|
};
|
|
499
521
|
export type TenantUncheckedUpdateWithoutUsersInput = {
|
|
500
522
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -510,6 +532,7 @@ export type TenantUncheckedUpdateWithoutUsersInput = {
|
|
|
510
532
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
511
533
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutTenantNestedInput;
|
|
512
534
|
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
535
|
+
contractTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
513
536
|
};
|
|
514
537
|
export type TenantCreateWithoutPropertiesInput = {
|
|
515
538
|
id?: string;
|
|
@@ -525,6 +548,7 @@ export type TenantCreateWithoutPropertiesInput = {
|
|
|
525
548
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutTenantInput;
|
|
526
549
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutTenantInput;
|
|
527
550
|
documentRequirementRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutTenantInput;
|
|
551
|
+
contractTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutTenantInput;
|
|
528
552
|
};
|
|
529
553
|
export type TenantUncheckedCreateWithoutPropertiesInput = {
|
|
530
554
|
id?: string;
|
|
@@ -540,6 +564,7 @@ export type TenantUncheckedCreateWithoutPropertiesInput = {
|
|
|
540
564
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutTenantInput;
|
|
541
565
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutTenantInput;
|
|
542
566
|
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutTenantInput;
|
|
567
|
+
contractTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutTenantInput;
|
|
543
568
|
};
|
|
544
569
|
export type TenantCreateOrConnectWithoutPropertiesInput = {
|
|
545
570
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -568,6 +593,7 @@ export type TenantUpdateWithoutPropertiesInput = {
|
|
|
568
593
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutTenantNestedInput;
|
|
569
594
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutTenantNestedInput;
|
|
570
595
|
documentRequirementRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutTenantNestedInput;
|
|
596
|
+
contractTerminations?: Prisma.ContractTerminationUpdateManyWithoutTenantNestedInput;
|
|
571
597
|
};
|
|
572
598
|
export type TenantUncheckedUpdateWithoutPropertiesInput = {
|
|
573
599
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -583,6 +609,7 @@ export type TenantUncheckedUpdateWithoutPropertiesInput = {
|
|
|
583
609
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
584
610
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutTenantNestedInput;
|
|
585
611
|
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
612
|
+
contractTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
586
613
|
};
|
|
587
614
|
export type TenantCreateWithoutPaymentPlansInput = {
|
|
588
615
|
id?: string;
|
|
@@ -598,6 +625,7 @@ export type TenantCreateWithoutPaymentPlansInput = {
|
|
|
598
625
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutTenantInput;
|
|
599
626
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutTenantInput;
|
|
600
627
|
documentRequirementRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutTenantInput;
|
|
628
|
+
contractTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutTenantInput;
|
|
601
629
|
};
|
|
602
630
|
export type TenantUncheckedCreateWithoutPaymentPlansInput = {
|
|
603
631
|
id?: string;
|
|
@@ -613,6 +641,7 @@ export type TenantUncheckedCreateWithoutPaymentPlansInput = {
|
|
|
613
641
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutTenantInput;
|
|
614
642
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutTenantInput;
|
|
615
643
|
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutTenantInput;
|
|
644
|
+
contractTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutTenantInput;
|
|
616
645
|
};
|
|
617
646
|
export type TenantCreateOrConnectWithoutPaymentPlansInput = {
|
|
618
647
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -641,6 +670,7 @@ export type TenantUpdateWithoutPaymentPlansInput = {
|
|
|
641
670
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutTenantNestedInput;
|
|
642
671
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutTenantNestedInput;
|
|
643
672
|
documentRequirementRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutTenantNestedInput;
|
|
673
|
+
contractTerminations?: Prisma.ContractTerminationUpdateManyWithoutTenantNestedInput;
|
|
644
674
|
};
|
|
645
675
|
export type TenantUncheckedUpdateWithoutPaymentPlansInput = {
|
|
646
676
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -656,6 +686,7 @@ export type TenantUncheckedUpdateWithoutPaymentPlansInput = {
|
|
|
656
686
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
657
687
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutTenantNestedInput;
|
|
658
688
|
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
689
|
+
contractTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
659
690
|
};
|
|
660
691
|
export type TenantCreateWithoutPaymentMethodsInput = {
|
|
661
692
|
id?: string;
|
|
@@ -671,6 +702,7 @@ export type TenantCreateWithoutPaymentMethodsInput = {
|
|
|
671
702
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutTenantInput;
|
|
672
703
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutTenantInput;
|
|
673
704
|
documentRequirementRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutTenantInput;
|
|
705
|
+
contractTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutTenantInput;
|
|
674
706
|
};
|
|
675
707
|
export type TenantUncheckedCreateWithoutPaymentMethodsInput = {
|
|
676
708
|
id?: string;
|
|
@@ -686,6 +718,7 @@ export type TenantUncheckedCreateWithoutPaymentMethodsInput = {
|
|
|
686
718
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutTenantInput;
|
|
687
719
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutTenantInput;
|
|
688
720
|
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutTenantInput;
|
|
721
|
+
contractTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutTenantInput;
|
|
689
722
|
};
|
|
690
723
|
export type TenantCreateOrConnectWithoutPaymentMethodsInput = {
|
|
691
724
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -714,6 +747,7 @@ export type TenantUpdateWithoutPaymentMethodsInput = {
|
|
|
714
747
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutTenantNestedInput;
|
|
715
748
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutTenantNestedInput;
|
|
716
749
|
documentRequirementRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutTenantNestedInput;
|
|
750
|
+
contractTerminations?: Prisma.ContractTerminationUpdateManyWithoutTenantNestedInput;
|
|
717
751
|
};
|
|
718
752
|
export type TenantUncheckedUpdateWithoutPaymentMethodsInput = {
|
|
719
753
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -729,6 +763,7 @@ export type TenantUncheckedUpdateWithoutPaymentMethodsInput = {
|
|
|
729
763
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
730
764
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutTenantNestedInput;
|
|
731
765
|
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
766
|
+
contractTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
732
767
|
};
|
|
733
768
|
export type TenantCreateWithoutContractsInput = {
|
|
734
769
|
id?: string;
|
|
@@ -744,6 +779,7 @@ export type TenantCreateWithoutContractsInput = {
|
|
|
744
779
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutTenantInput;
|
|
745
780
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutTenantInput;
|
|
746
781
|
documentRequirementRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutTenantInput;
|
|
782
|
+
contractTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutTenantInput;
|
|
747
783
|
};
|
|
748
784
|
export type TenantUncheckedCreateWithoutContractsInput = {
|
|
749
785
|
id?: string;
|
|
@@ -759,6 +795,7 @@ export type TenantUncheckedCreateWithoutContractsInput = {
|
|
|
759
795
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutTenantInput;
|
|
760
796
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutTenantInput;
|
|
761
797
|
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutTenantInput;
|
|
798
|
+
contractTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutTenantInput;
|
|
762
799
|
};
|
|
763
800
|
export type TenantCreateOrConnectWithoutContractsInput = {
|
|
764
801
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -787,6 +824,7 @@ export type TenantUpdateWithoutContractsInput = {
|
|
|
787
824
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutTenantNestedInput;
|
|
788
825
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutTenantNestedInput;
|
|
789
826
|
documentRequirementRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutTenantNestedInput;
|
|
827
|
+
contractTerminations?: Prisma.ContractTerminationUpdateManyWithoutTenantNestedInput;
|
|
790
828
|
};
|
|
791
829
|
export type TenantUncheckedUpdateWithoutContractsInput = {
|
|
792
830
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -802,6 +840,84 @@ export type TenantUncheckedUpdateWithoutContractsInput = {
|
|
|
802
840
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
803
841
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutTenantNestedInput;
|
|
804
842
|
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
843
|
+
contractTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
844
|
+
};
|
|
845
|
+
export type TenantCreateWithoutContractTerminationsInput = {
|
|
846
|
+
id?: string;
|
|
847
|
+
name: string;
|
|
848
|
+
subdomain: string;
|
|
849
|
+
isActive?: boolean;
|
|
850
|
+
createdAt?: Date | string;
|
|
851
|
+
updatedAt?: Date | string;
|
|
852
|
+
users?: Prisma.UserCreateNestedManyWithoutTenantInput;
|
|
853
|
+
properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
|
|
854
|
+
paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
|
|
855
|
+
paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
|
|
856
|
+
contracts?: Prisma.ContractCreateNestedManyWithoutTenantInput;
|
|
857
|
+
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutTenantInput;
|
|
858
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutTenantInput;
|
|
859
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutTenantInput;
|
|
860
|
+
};
|
|
861
|
+
export type TenantUncheckedCreateWithoutContractTerminationsInput = {
|
|
862
|
+
id?: string;
|
|
863
|
+
name: string;
|
|
864
|
+
subdomain: string;
|
|
865
|
+
isActive?: boolean;
|
|
866
|
+
createdAt?: Date | string;
|
|
867
|
+
updatedAt?: Date | string;
|
|
868
|
+
users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
|
|
869
|
+
properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
|
|
870
|
+
paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
|
|
871
|
+
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
|
|
872
|
+
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutTenantInput;
|
|
873
|
+
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutTenantInput;
|
|
874
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutTenantInput;
|
|
875
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutTenantInput;
|
|
876
|
+
};
|
|
877
|
+
export type TenantCreateOrConnectWithoutContractTerminationsInput = {
|
|
878
|
+
where: Prisma.TenantWhereUniqueInput;
|
|
879
|
+
create: Prisma.XOR<Prisma.TenantCreateWithoutContractTerminationsInput, Prisma.TenantUncheckedCreateWithoutContractTerminationsInput>;
|
|
880
|
+
};
|
|
881
|
+
export type TenantUpsertWithoutContractTerminationsInput = {
|
|
882
|
+
update: Prisma.XOR<Prisma.TenantUpdateWithoutContractTerminationsInput, Prisma.TenantUncheckedUpdateWithoutContractTerminationsInput>;
|
|
883
|
+
create: Prisma.XOR<Prisma.TenantCreateWithoutContractTerminationsInput, Prisma.TenantUncheckedCreateWithoutContractTerminationsInput>;
|
|
884
|
+
where?: Prisma.TenantWhereInput;
|
|
885
|
+
};
|
|
886
|
+
export type TenantUpdateToOneWithWhereWithoutContractTerminationsInput = {
|
|
887
|
+
where?: Prisma.TenantWhereInput;
|
|
888
|
+
data: Prisma.XOR<Prisma.TenantUpdateWithoutContractTerminationsInput, Prisma.TenantUncheckedUpdateWithoutContractTerminationsInput>;
|
|
889
|
+
};
|
|
890
|
+
export type TenantUpdateWithoutContractTerminationsInput = {
|
|
891
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
892
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
893
|
+
subdomain?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
894
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
895
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
896
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
897
|
+
users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
|
|
898
|
+
properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
|
|
899
|
+
paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
|
|
900
|
+
paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
|
|
901
|
+
contracts?: Prisma.ContractUpdateManyWithoutTenantNestedInput;
|
|
902
|
+
prequalifications?: Prisma.PrequalificationUpdateManyWithoutTenantNestedInput;
|
|
903
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutTenantNestedInput;
|
|
904
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutTenantNestedInput;
|
|
905
|
+
};
|
|
906
|
+
export type TenantUncheckedUpdateWithoutContractTerminationsInput = {
|
|
907
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
908
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
909
|
+
subdomain?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
910
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
911
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
912
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
913
|
+
users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
|
|
914
|
+
properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
|
|
915
|
+
paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
|
|
916
|
+
paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
|
|
917
|
+
contracts?: Prisma.ContractUncheckedUpdateManyWithoutTenantNestedInput;
|
|
918
|
+
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
919
|
+
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutTenantNestedInput;
|
|
920
|
+
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
805
921
|
};
|
|
806
922
|
export type TenantCreateWithoutPrequalificationsInput = {
|
|
807
923
|
id?: string;
|
|
@@ -817,6 +933,7 @@ export type TenantCreateWithoutPrequalificationsInput = {
|
|
|
817
933
|
contracts?: Prisma.ContractCreateNestedManyWithoutTenantInput;
|
|
818
934
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutTenantInput;
|
|
819
935
|
documentRequirementRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutTenantInput;
|
|
936
|
+
contractTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutTenantInput;
|
|
820
937
|
};
|
|
821
938
|
export type TenantUncheckedCreateWithoutPrequalificationsInput = {
|
|
822
939
|
id?: string;
|
|
@@ -832,6 +949,7 @@ export type TenantUncheckedCreateWithoutPrequalificationsInput = {
|
|
|
832
949
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutTenantInput;
|
|
833
950
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutTenantInput;
|
|
834
951
|
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutTenantInput;
|
|
952
|
+
contractTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutTenantInput;
|
|
835
953
|
};
|
|
836
954
|
export type TenantCreateOrConnectWithoutPrequalificationsInput = {
|
|
837
955
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -860,6 +978,7 @@ export type TenantUpdateWithoutPrequalificationsInput = {
|
|
|
860
978
|
contracts?: Prisma.ContractUpdateManyWithoutTenantNestedInput;
|
|
861
979
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutTenantNestedInput;
|
|
862
980
|
documentRequirementRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutTenantNestedInput;
|
|
981
|
+
contractTerminations?: Prisma.ContractTerminationUpdateManyWithoutTenantNestedInput;
|
|
863
982
|
};
|
|
864
983
|
export type TenantUncheckedUpdateWithoutPrequalificationsInput = {
|
|
865
984
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -875,6 +994,7 @@ export type TenantUncheckedUpdateWithoutPrequalificationsInput = {
|
|
|
875
994
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutTenantNestedInput;
|
|
876
995
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutTenantNestedInput;
|
|
877
996
|
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
997
|
+
contractTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
878
998
|
};
|
|
879
999
|
export type TenantCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
880
1000
|
id?: string;
|
|
@@ -890,6 +1010,7 @@ export type TenantCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
890
1010
|
contracts?: Prisma.ContractCreateNestedManyWithoutTenantInput;
|
|
891
1011
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutTenantInput;
|
|
892
1012
|
documentRequirementRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutTenantInput;
|
|
1013
|
+
contractTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutTenantInput;
|
|
893
1014
|
};
|
|
894
1015
|
export type TenantUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
895
1016
|
id?: string;
|
|
@@ -905,6 +1026,7 @@ export type TenantUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
905
1026
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutTenantInput;
|
|
906
1027
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutTenantInput;
|
|
907
1028
|
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutTenantInput;
|
|
1029
|
+
contractTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutTenantInput;
|
|
908
1030
|
};
|
|
909
1031
|
export type TenantCreateOrConnectWithoutPaymentMethodChangeRequestsInput = {
|
|
910
1032
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -933,6 +1055,7 @@ export type TenantUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
933
1055
|
contracts?: Prisma.ContractUpdateManyWithoutTenantNestedInput;
|
|
934
1056
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutTenantNestedInput;
|
|
935
1057
|
documentRequirementRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutTenantNestedInput;
|
|
1058
|
+
contractTerminations?: Prisma.ContractTerminationUpdateManyWithoutTenantNestedInput;
|
|
936
1059
|
};
|
|
937
1060
|
export type TenantUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
938
1061
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -948,6 +1071,7 @@ export type TenantUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
|
|
|
948
1071
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutTenantNestedInput;
|
|
949
1072
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
950
1073
|
documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1074
|
+
contractTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
951
1075
|
};
|
|
952
1076
|
export type TenantCreateWithoutDocumentRequirementRulesInput = {
|
|
953
1077
|
id?: string;
|
|
@@ -963,6 +1087,7 @@ export type TenantCreateWithoutDocumentRequirementRulesInput = {
|
|
|
963
1087
|
contracts?: Prisma.ContractCreateNestedManyWithoutTenantInput;
|
|
964
1088
|
prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutTenantInput;
|
|
965
1089
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutTenantInput;
|
|
1090
|
+
contractTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutTenantInput;
|
|
966
1091
|
};
|
|
967
1092
|
export type TenantUncheckedCreateWithoutDocumentRequirementRulesInput = {
|
|
968
1093
|
id?: string;
|
|
@@ -978,6 +1103,7 @@ export type TenantUncheckedCreateWithoutDocumentRequirementRulesInput = {
|
|
|
978
1103
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutTenantInput;
|
|
979
1104
|
prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutTenantInput;
|
|
980
1105
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutTenantInput;
|
|
1106
|
+
contractTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutTenantInput;
|
|
981
1107
|
};
|
|
982
1108
|
export type TenantCreateOrConnectWithoutDocumentRequirementRulesInput = {
|
|
983
1109
|
where: Prisma.TenantWhereUniqueInput;
|
|
@@ -1006,6 +1132,7 @@ export type TenantUpdateWithoutDocumentRequirementRulesInput = {
|
|
|
1006
1132
|
contracts?: Prisma.ContractUpdateManyWithoutTenantNestedInput;
|
|
1007
1133
|
prequalifications?: Prisma.PrequalificationUpdateManyWithoutTenantNestedInput;
|
|
1008
1134
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutTenantNestedInput;
|
|
1135
|
+
contractTerminations?: Prisma.ContractTerminationUpdateManyWithoutTenantNestedInput;
|
|
1009
1136
|
};
|
|
1010
1137
|
export type TenantUncheckedUpdateWithoutDocumentRequirementRulesInput = {
|
|
1011
1138
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -1021,6 +1148,7 @@ export type TenantUncheckedUpdateWithoutDocumentRequirementRulesInput = {
|
|
|
1021
1148
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1022
1149
|
prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1023
1150
|
paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1151
|
+
contractTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutTenantNestedInput;
|
|
1024
1152
|
};
|
|
1025
1153
|
/**
|
|
1026
1154
|
* Count Type TenantCountOutputType
|
|
@@ -1034,6 +1162,7 @@ export type TenantCountOutputType = {
|
|
|
1034
1162
|
prequalifications: number;
|
|
1035
1163
|
paymentMethodChangeRequests: number;
|
|
1036
1164
|
documentRequirementRules: number;
|
|
1165
|
+
contractTerminations: number;
|
|
1037
1166
|
};
|
|
1038
1167
|
export type TenantCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1039
1168
|
users?: boolean | TenantCountOutputTypeCountUsersArgs;
|
|
@@ -1044,6 +1173,7 @@ export type TenantCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions
|
|
|
1044
1173
|
prequalifications?: boolean | TenantCountOutputTypeCountPrequalificationsArgs;
|
|
1045
1174
|
paymentMethodChangeRequests?: boolean | TenantCountOutputTypeCountPaymentMethodChangeRequestsArgs;
|
|
1046
1175
|
documentRequirementRules?: boolean | TenantCountOutputTypeCountDocumentRequirementRulesArgs;
|
|
1176
|
+
contractTerminations?: boolean | TenantCountOutputTypeCountContractTerminationsArgs;
|
|
1047
1177
|
};
|
|
1048
1178
|
/**
|
|
1049
1179
|
* TenantCountOutputType without action
|
|
@@ -1102,6 +1232,12 @@ export type TenantCountOutputTypeCountPaymentMethodChangeRequestsArgs<ExtArgs ex
|
|
|
1102
1232
|
export type TenantCountOutputTypeCountDocumentRequirementRulesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1103
1233
|
where?: Prisma.DocumentRequirementRuleWhereInput;
|
|
1104
1234
|
};
|
|
1235
|
+
/**
|
|
1236
|
+
* TenantCountOutputType without action
|
|
1237
|
+
*/
|
|
1238
|
+
export type TenantCountOutputTypeCountContractTerminationsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1239
|
+
where?: Prisma.ContractTerminationWhereInput;
|
|
1240
|
+
};
|
|
1105
1241
|
export type TenantSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
1106
1242
|
id?: boolean;
|
|
1107
1243
|
name?: boolean;
|
|
@@ -1117,6 +1253,7 @@ export type TenantSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
1117
1253
|
prequalifications?: boolean | Prisma.Tenant$prequalificationsArgs<ExtArgs>;
|
|
1118
1254
|
paymentMethodChangeRequests?: boolean | Prisma.Tenant$paymentMethodChangeRequestsArgs<ExtArgs>;
|
|
1119
1255
|
documentRequirementRules?: boolean | Prisma.Tenant$documentRequirementRulesArgs<ExtArgs>;
|
|
1256
|
+
contractTerminations?: boolean | Prisma.Tenant$contractTerminationsArgs<ExtArgs>;
|
|
1120
1257
|
_count?: boolean | Prisma.TenantCountOutputTypeDefaultArgs<ExtArgs>;
|
|
1121
1258
|
}, ExtArgs["result"]["tenant"]>;
|
|
1122
1259
|
export type TenantSelectScalar = {
|
|
@@ -1137,6 +1274,7 @@ export type TenantInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
1137
1274
|
prequalifications?: boolean | Prisma.Tenant$prequalificationsArgs<ExtArgs>;
|
|
1138
1275
|
paymentMethodChangeRequests?: boolean | Prisma.Tenant$paymentMethodChangeRequestsArgs<ExtArgs>;
|
|
1139
1276
|
documentRequirementRules?: boolean | Prisma.Tenant$documentRequirementRulesArgs<ExtArgs>;
|
|
1277
|
+
contractTerminations?: boolean | Prisma.Tenant$contractTerminationsArgs<ExtArgs>;
|
|
1140
1278
|
_count?: boolean | Prisma.TenantCountOutputTypeDefaultArgs<ExtArgs>;
|
|
1141
1279
|
};
|
|
1142
1280
|
export type $TenantPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
@@ -1150,6 +1288,7 @@ export type $TenantPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
1150
1288
|
prequalifications: Prisma.$PrequalificationPayload<ExtArgs>[];
|
|
1151
1289
|
paymentMethodChangeRequests: Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>[];
|
|
1152
1290
|
documentRequirementRules: Prisma.$DocumentRequirementRulePayload<ExtArgs>[];
|
|
1291
|
+
contractTerminations: Prisma.$ContractTerminationPayload<ExtArgs>[];
|
|
1153
1292
|
};
|
|
1154
1293
|
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
1155
1294
|
id: string;
|
|
@@ -1443,6 +1582,7 @@ export interface Prisma__TenantClient<T, Null = never, ExtArgs extends runtime.T
|
|
|
1443
1582
|
prequalifications<T extends Prisma.Tenant$prequalificationsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Tenant$prequalificationsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PrequalificationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1444
1583
|
paymentMethodChangeRequests<T extends Prisma.Tenant$paymentMethodChangeRequestsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Tenant$paymentMethodChangeRequestsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1445
1584
|
documentRequirementRules<T extends Prisma.Tenant$documentRequirementRulesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Tenant$documentRequirementRulesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$DocumentRequirementRulePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1585
|
+
contractTerminations<T extends Prisma.Tenant$contractTerminationsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Tenant$contractTerminationsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ContractTerminationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1446
1586
|
/**
|
|
1447
1587
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
1448
1588
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -1985,6 +2125,29 @@ export type Tenant$documentRequirementRulesArgs<ExtArgs extends runtime.Types.Ex
|
|
|
1985
2125
|
skip?: number;
|
|
1986
2126
|
distinct?: Prisma.DocumentRequirementRuleScalarFieldEnum | Prisma.DocumentRequirementRuleScalarFieldEnum[];
|
|
1987
2127
|
};
|
|
2128
|
+
/**
|
|
2129
|
+
* Tenant.contractTerminations
|
|
2130
|
+
*/
|
|
2131
|
+
export type Tenant$contractTerminationsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
2132
|
+
/**
|
|
2133
|
+
* Select specific fields to fetch from the ContractTermination
|
|
2134
|
+
*/
|
|
2135
|
+
select?: Prisma.ContractTerminationSelect<ExtArgs> | null;
|
|
2136
|
+
/**
|
|
2137
|
+
* Omit specific fields from the ContractTermination
|
|
2138
|
+
*/
|
|
2139
|
+
omit?: Prisma.ContractTerminationOmit<ExtArgs> | null;
|
|
2140
|
+
/**
|
|
2141
|
+
* Choose, which related nodes to fetch as well
|
|
2142
|
+
*/
|
|
2143
|
+
include?: Prisma.ContractTerminationInclude<ExtArgs> | null;
|
|
2144
|
+
where?: Prisma.ContractTerminationWhereInput;
|
|
2145
|
+
orderBy?: Prisma.ContractTerminationOrderByWithRelationInput | Prisma.ContractTerminationOrderByWithRelationInput[];
|
|
2146
|
+
cursor?: Prisma.ContractTerminationWhereUniqueInput;
|
|
2147
|
+
take?: number;
|
|
2148
|
+
skip?: number;
|
|
2149
|
+
distinct?: Prisma.ContractTerminationScalarFieldEnum | Prisma.ContractTerminationScalarFieldEnum[];
|
|
2150
|
+
};
|
|
1988
2151
|
/**
|
|
1989
2152
|
* Tenant without action
|
|
1990
2153
|
*/
|