@valentine-efagene/qshelter-common 2.0.93 → 2.0.95
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 +16 -16
- package/dist/generated/client/client.d.ts +16 -16
- package/dist/generated/client/commonInputTypes.d.ts +72 -72
- package/dist/generated/client/enums.d.ts +13 -13
- package/dist/generated/client/enums.js +10 -10
- package/dist/generated/client/internal/class.d.ts +32 -32
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +328 -321
- package/dist/generated/client/internal/prismaNamespace.js +57 -50
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +73 -66
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +57 -50
- package/dist/generated/client/models/Application.d.ts +5439 -0
- package/dist/generated/client/models/Application.js +1 -0
- package/dist/generated/client/models/ApplicationDocument.d.ts +1409 -0
- package/dist/generated/client/models/ApplicationDocument.js +1 -0
- package/dist/generated/client/models/ApplicationEvent.d.ts +1254 -0
- package/dist/generated/client/models/ApplicationEvent.js +1 -0
- package/dist/generated/client/models/ApplicationPayment.d.ts +2030 -0
- package/dist/generated/client/models/ApplicationPayment.js +1 -0
- package/dist/generated/client/models/ApplicationPhase.d.ts +2243 -0
- package/dist/generated/client/models/ApplicationPhase.js +1 -0
- package/dist/generated/client/models/ApplicationRefund.d.ts +2560 -0
- package/dist/generated/client/models/ApplicationRefund.js +1 -0
- package/dist/generated/client/models/ApplicationTermination.d.ts +3446 -0
- package/dist/generated/client/models/ApplicationTermination.js +1 -0
- package/dist/generated/client/models/DocumentationPhase.d.ts +13 -13
- package/dist/generated/client/models/OfferLetter.d.ts +97 -97
- package/dist/generated/client/models/PaymentInstallment.d.ts +1660 -0
- package/dist/generated/client/models/PaymentInstallment.js +1 -0
- package/dist/generated/client/models/PaymentMethodChangeRequest.d.ts +103 -103
- package/dist/generated/client/models/PaymentPhase.d.ts +135 -41
- package/dist/generated/client/models/PaymentPlan.d.ts +259 -30
- package/dist/generated/client/models/PropertyPaymentMethod.d.ts +77 -77
- package/dist/generated/client/models/PropertyTransferRequest.d.ts +213 -213
- package/dist/generated/client/models/PropertyUnit.d.ts +53 -53
- package/dist/generated/client/models/QuestionnairePhase.d.ts +11 -11
- package/dist/generated/client/models/Tenant.d.ts +323 -323
- package/dist/generated/client/models/User.d.ts +1329 -1329
- package/dist/generated/client/models/index.d.ts +8 -8
- package/dist/generated/client/models/index.js +8 -8
- package/dist/generated/client/models.d.ts +8 -8
- package/package.json +1 -1
- package/prisma/migrations/20260112041159_add_flexible_term_configuration/migration.sql +11 -0
- package/prisma/migrations/20260112080730_rename_contract_to_application/migration.sql +529 -0
- package/prisma/schema.prisma +123 -108
- package/prisma/schema.prisma.backup +2601 -0
|
@@ -219,7 +219,7 @@ export type PropertyPaymentMethodWhereInput = {
|
|
|
219
219
|
tenant?: Prisma.XOR<Prisma.TenantScalarRelationFilter, Prisma.TenantWhereInput>;
|
|
220
220
|
properties?: Prisma.PropertyPaymentMethodLinkListRelationFilter;
|
|
221
221
|
phases?: Prisma.PropertyPaymentMethodPhaseListRelationFilter;
|
|
222
|
-
|
|
222
|
+
applications?: Prisma.ApplicationListRelationFilter;
|
|
223
223
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestListRelationFilter;
|
|
224
224
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestListRelationFilter;
|
|
225
225
|
documentRules?: Prisma.DocumentRequirementRuleListRelationFilter;
|
|
@@ -241,7 +241,7 @@ export type PropertyPaymentMethodOrderByWithRelationInput = {
|
|
|
241
241
|
tenant?: Prisma.TenantOrderByWithRelationInput;
|
|
242
242
|
properties?: Prisma.PropertyPaymentMethodLinkOrderByRelationAggregateInput;
|
|
243
243
|
phases?: Prisma.PropertyPaymentMethodPhaseOrderByRelationAggregateInput;
|
|
244
|
-
|
|
244
|
+
applications?: Prisma.ApplicationOrderByRelationAggregateInput;
|
|
245
245
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestOrderByRelationAggregateInput;
|
|
246
246
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestOrderByRelationAggregateInput;
|
|
247
247
|
documentRules?: Prisma.DocumentRequirementRuleOrderByRelationAggregateInput;
|
|
@@ -268,7 +268,7 @@ export type PropertyPaymentMethodWhereUniqueInput = Prisma.AtLeast<{
|
|
|
268
268
|
tenant?: Prisma.XOR<Prisma.TenantScalarRelationFilter, Prisma.TenantWhereInput>;
|
|
269
269
|
properties?: Prisma.PropertyPaymentMethodLinkListRelationFilter;
|
|
270
270
|
phases?: Prisma.PropertyPaymentMethodPhaseListRelationFilter;
|
|
271
|
-
|
|
271
|
+
applications?: Prisma.ApplicationListRelationFilter;
|
|
272
272
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestListRelationFilter;
|
|
273
273
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestListRelationFilter;
|
|
274
274
|
documentRules?: Prisma.DocumentRequirementRuleListRelationFilter;
|
|
@@ -323,7 +323,7 @@ export type PropertyPaymentMethodCreateInput = {
|
|
|
323
323
|
tenant: Prisma.TenantCreateNestedOneWithoutPaymentMethodsInput;
|
|
324
324
|
properties?: Prisma.PropertyPaymentMethodLinkCreateNestedManyWithoutPaymentMethodInput;
|
|
325
325
|
phases?: Prisma.PropertyPaymentMethodPhaseCreateNestedManyWithoutPaymentMethodInput;
|
|
326
|
-
|
|
326
|
+
applications?: Prisma.ApplicationCreateNestedManyWithoutPaymentMethodInput;
|
|
327
327
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutFromPaymentMethodInput;
|
|
328
328
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutToPaymentMethodInput;
|
|
329
329
|
documentRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutPaymentMethodInput;
|
|
@@ -344,7 +344,7 @@ export type PropertyPaymentMethodUncheckedCreateInput = {
|
|
|
344
344
|
updatedAt?: Date | string;
|
|
345
345
|
properties?: Prisma.PropertyPaymentMethodLinkUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
346
346
|
phases?: Prisma.PropertyPaymentMethodPhaseUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
347
|
-
|
|
347
|
+
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
348
348
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutFromPaymentMethodInput;
|
|
349
349
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutToPaymentMethodInput;
|
|
350
350
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
@@ -365,7 +365,7 @@ export type PropertyPaymentMethodUpdateInput = {
|
|
|
365
365
|
tenant?: Prisma.TenantUpdateOneRequiredWithoutPaymentMethodsNestedInput;
|
|
366
366
|
properties?: Prisma.PropertyPaymentMethodLinkUpdateManyWithoutPaymentMethodNestedInput;
|
|
367
367
|
phases?: Prisma.PropertyPaymentMethodPhaseUpdateManyWithoutPaymentMethodNestedInput;
|
|
368
|
-
|
|
368
|
+
applications?: Prisma.ApplicationUpdateManyWithoutPaymentMethodNestedInput;
|
|
369
369
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
370
370
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutToPaymentMethodNestedInput;
|
|
371
371
|
documentRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutPaymentMethodNestedInput;
|
|
@@ -386,7 +386,7 @@ export type PropertyPaymentMethodUncheckedUpdateInput = {
|
|
|
386
386
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
387
387
|
properties?: Prisma.PropertyPaymentMethodLinkUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
388
388
|
phases?: Prisma.PropertyPaymentMethodPhaseUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
389
|
-
|
|
389
|
+
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
390
390
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
391
391
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutToPaymentMethodNestedInput;
|
|
392
392
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
@@ -563,19 +563,19 @@ export type PropertyPaymentMethodUpdateOneRequiredWithoutPhasesNestedInput = {
|
|
|
563
563
|
connect?: Prisma.PropertyPaymentMethodWhereUniqueInput;
|
|
564
564
|
update?: Prisma.XOR<Prisma.XOR<Prisma.PropertyPaymentMethodUpdateToOneWithWhereWithoutPhasesInput, Prisma.PropertyPaymentMethodUpdateWithoutPhasesInput>, Prisma.PropertyPaymentMethodUncheckedUpdateWithoutPhasesInput>;
|
|
565
565
|
};
|
|
566
|
-
export type
|
|
567
|
-
create?: Prisma.XOR<Prisma.
|
|
568
|
-
connectOrCreate?: Prisma.
|
|
566
|
+
export type PropertyPaymentMethodCreateNestedOneWithoutApplicationsInput = {
|
|
567
|
+
create?: Prisma.XOR<Prisma.PropertyPaymentMethodCreateWithoutApplicationsInput, Prisma.PropertyPaymentMethodUncheckedCreateWithoutApplicationsInput>;
|
|
568
|
+
connectOrCreate?: Prisma.PropertyPaymentMethodCreateOrConnectWithoutApplicationsInput;
|
|
569
569
|
connect?: Prisma.PropertyPaymentMethodWhereUniqueInput;
|
|
570
570
|
};
|
|
571
|
-
export type
|
|
572
|
-
create?: Prisma.XOR<Prisma.
|
|
573
|
-
connectOrCreate?: Prisma.
|
|
574
|
-
upsert?: Prisma.
|
|
571
|
+
export type PropertyPaymentMethodUpdateOneWithoutApplicationsNestedInput = {
|
|
572
|
+
create?: Prisma.XOR<Prisma.PropertyPaymentMethodCreateWithoutApplicationsInput, Prisma.PropertyPaymentMethodUncheckedCreateWithoutApplicationsInput>;
|
|
573
|
+
connectOrCreate?: Prisma.PropertyPaymentMethodCreateOrConnectWithoutApplicationsInput;
|
|
574
|
+
upsert?: Prisma.PropertyPaymentMethodUpsertWithoutApplicationsInput;
|
|
575
575
|
disconnect?: Prisma.PropertyPaymentMethodWhereInput | boolean;
|
|
576
576
|
delete?: Prisma.PropertyPaymentMethodWhereInput | boolean;
|
|
577
577
|
connect?: Prisma.PropertyPaymentMethodWhereUniqueInput;
|
|
578
|
-
update?: Prisma.XOR<Prisma.XOR<Prisma.
|
|
578
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.PropertyPaymentMethodUpdateToOneWithWhereWithoutApplicationsInput, Prisma.PropertyPaymentMethodUpdateWithoutApplicationsInput>, Prisma.PropertyPaymentMethodUncheckedUpdateWithoutApplicationsInput>;
|
|
579
579
|
};
|
|
580
580
|
export type PropertyPaymentMethodCreateNestedOneWithoutChangeRequestsFromInput = {
|
|
581
581
|
create?: Prisma.XOR<Prisma.PropertyPaymentMethodCreateWithoutChangeRequestsFromInput, Prisma.PropertyPaymentMethodUncheckedCreateWithoutChangeRequestsFromInput>;
|
|
@@ -656,7 +656,7 @@ export type PropertyPaymentMethodCreateWithoutTenantInput = {
|
|
|
656
656
|
updatedAt?: Date | string;
|
|
657
657
|
properties?: Prisma.PropertyPaymentMethodLinkCreateNestedManyWithoutPaymentMethodInput;
|
|
658
658
|
phases?: Prisma.PropertyPaymentMethodPhaseCreateNestedManyWithoutPaymentMethodInput;
|
|
659
|
-
|
|
659
|
+
applications?: Prisma.ApplicationCreateNestedManyWithoutPaymentMethodInput;
|
|
660
660
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutFromPaymentMethodInput;
|
|
661
661
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutToPaymentMethodInput;
|
|
662
662
|
documentRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutPaymentMethodInput;
|
|
@@ -676,7 +676,7 @@ export type PropertyPaymentMethodUncheckedCreateWithoutTenantInput = {
|
|
|
676
676
|
updatedAt?: Date | string;
|
|
677
677
|
properties?: Prisma.PropertyPaymentMethodLinkUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
678
678
|
phases?: Prisma.PropertyPaymentMethodPhaseUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
679
|
-
|
|
679
|
+
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
680
680
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutFromPaymentMethodInput;
|
|
681
681
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutToPaymentMethodInput;
|
|
682
682
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
@@ -733,7 +733,7 @@ export type PropertyPaymentMethodCreateWithoutPropertiesInput = {
|
|
|
733
733
|
updatedAt?: Date | string;
|
|
734
734
|
tenant: Prisma.TenantCreateNestedOneWithoutPaymentMethodsInput;
|
|
735
735
|
phases?: Prisma.PropertyPaymentMethodPhaseCreateNestedManyWithoutPaymentMethodInput;
|
|
736
|
-
|
|
736
|
+
applications?: Prisma.ApplicationCreateNestedManyWithoutPaymentMethodInput;
|
|
737
737
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutFromPaymentMethodInput;
|
|
738
738
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutToPaymentMethodInput;
|
|
739
739
|
documentRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutPaymentMethodInput;
|
|
@@ -753,7 +753,7 @@ export type PropertyPaymentMethodUncheckedCreateWithoutPropertiesInput = {
|
|
|
753
753
|
createdAt?: Date | string;
|
|
754
754
|
updatedAt?: Date | string;
|
|
755
755
|
phases?: Prisma.PropertyPaymentMethodPhaseUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
756
|
-
|
|
756
|
+
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
757
757
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutFromPaymentMethodInput;
|
|
758
758
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutToPaymentMethodInput;
|
|
759
759
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
@@ -786,7 +786,7 @@ export type PropertyPaymentMethodUpdateWithoutPropertiesInput = {
|
|
|
786
786
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
787
787
|
tenant?: Prisma.TenantUpdateOneRequiredWithoutPaymentMethodsNestedInput;
|
|
788
788
|
phases?: Prisma.PropertyPaymentMethodPhaseUpdateManyWithoutPaymentMethodNestedInput;
|
|
789
|
-
|
|
789
|
+
applications?: Prisma.ApplicationUpdateManyWithoutPaymentMethodNestedInput;
|
|
790
790
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
791
791
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutToPaymentMethodNestedInput;
|
|
792
792
|
documentRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutPaymentMethodNestedInput;
|
|
@@ -806,7 +806,7 @@ export type PropertyPaymentMethodUncheckedUpdateWithoutPropertiesInput = {
|
|
|
806
806
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
807
807
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
808
808
|
phases?: Prisma.PropertyPaymentMethodPhaseUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
809
|
-
|
|
809
|
+
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
810
810
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
811
811
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutToPaymentMethodNestedInput;
|
|
812
812
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
@@ -826,7 +826,7 @@ export type PropertyPaymentMethodCreateWithoutPhasesInput = {
|
|
|
826
826
|
updatedAt?: Date | string;
|
|
827
827
|
tenant: Prisma.TenantCreateNestedOneWithoutPaymentMethodsInput;
|
|
828
828
|
properties?: Prisma.PropertyPaymentMethodLinkCreateNestedManyWithoutPaymentMethodInput;
|
|
829
|
-
|
|
829
|
+
applications?: Prisma.ApplicationCreateNestedManyWithoutPaymentMethodInput;
|
|
830
830
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutFromPaymentMethodInput;
|
|
831
831
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutToPaymentMethodInput;
|
|
832
832
|
documentRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutPaymentMethodInput;
|
|
@@ -846,7 +846,7 @@ export type PropertyPaymentMethodUncheckedCreateWithoutPhasesInput = {
|
|
|
846
846
|
createdAt?: Date | string;
|
|
847
847
|
updatedAt?: Date | string;
|
|
848
848
|
properties?: Prisma.PropertyPaymentMethodLinkUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
849
|
-
|
|
849
|
+
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
850
850
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutFromPaymentMethodInput;
|
|
851
851
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutToPaymentMethodInput;
|
|
852
852
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
@@ -879,7 +879,7 @@ export type PropertyPaymentMethodUpdateWithoutPhasesInput = {
|
|
|
879
879
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
880
880
|
tenant?: Prisma.TenantUpdateOneRequiredWithoutPaymentMethodsNestedInput;
|
|
881
881
|
properties?: Prisma.PropertyPaymentMethodLinkUpdateManyWithoutPaymentMethodNestedInput;
|
|
882
|
-
|
|
882
|
+
applications?: Prisma.ApplicationUpdateManyWithoutPaymentMethodNestedInput;
|
|
883
883
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
884
884
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutToPaymentMethodNestedInput;
|
|
885
885
|
documentRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutPaymentMethodNestedInput;
|
|
@@ -899,14 +899,14 @@ export type PropertyPaymentMethodUncheckedUpdateWithoutPhasesInput = {
|
|
|
899
899
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
900
900
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
901
901
|
properties?: Prisma.PropertyPaymentMethodLinkUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
902
|
-
|
|
902
|
+
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
903
903
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
904
904
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutToPaymentMethodNestedInput;
|
|
905
905
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
906
906
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
907
907
|
changeRulesTo?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutToPaymentMethodNestedInput;
|
|
908
908
|
};
|
|
909
|
-
export type
|
|
909
|
+
export type PropertyPaymentMethodCreateWithoutApplicationsInput = {
|
|
910
910
|
id?: string;
|
|
911
911
|
name: string;
|
|
912
912
|
description?: string | null;
|
|
@@ -926,7 +926,7 @@ export type PropertyPaymentMethodCreateWithoutContractsInput = {
|
|
|
926
926
|
changeRulesFrom?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutFromPaymentMethodInput;
|
|
927
927
|
changeRulesTo?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutToPaymentMethodInput;
|
|
928
928
|
};
|
|
929
|
-
export type
|
|
929
|
+
export type PropertyPaymentMethodUncheckedCreateWithoutApplicationsInput = {
|
|
930
930
|
id?: string;
|
|
931
931
|
tenantId: string;
|
|
932
932
|
name: string;
|
|
@@ -946,20 +946,20 @@ export type PropertyPaymentMethodUncheckedCreateWithoutContractsInput = {
|
|
|
946
946
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutFromPaymentMethodInput;
|
|
947
947
|
changeRulesTo?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutToPaymentMethodInput;
|
|
948
948
|
};
|
|
949
|
-
export type
|
|
949
|
+
export type PropertyPaymentMethodCreateOrConnectWithoutApplicationsInput = {
|
|
950
950
|
where: Prisma.PropertyPaymentMethodWhereUniqueInput;
|
|
951
|
-
create: Prisma.XOR<Prisma.
|
|
951
|
+
create: Prisma.XOR<Prisma.PropertyPaymentMethodCreateWithoutApplicationsInput, Prisma.PropertyPaymentMethodUncheckedCreateWithoutApplicationsInput>;
|
|
952
952
|
};
|
|
953
|
-
export type
|
|
954
|
-
update: Prisma.XOR<Prisma.
|
|
955
|
-
create: Prisma.XOR<Prisma.
|
|
953
|
+
export type PropertyPaymentMethodUpsertWithoutApplicationsInput = {
|
|
954
|
+
update: Prisma.XOR<Prisma.PropertyPaymentMethodUpdateWithoutApplicationsInput, Prisma.PropertyPaymentMethodUncheckedUpdateWithoutApplicationsInput>;
|
|
955
|
+
create: Prisma.XOR<Prisma.PropertyPaymentMethodCreateWithoutApplicationsInput, Prisma.PropertyPaymentMethodUncheckedCreateWithoutApplicationsInput>;
|
|
956
956
|
where?: Prisma.PropertyPaymentMethodWhereInput;
|
|
957
957
|
};
|
|
958
|
-
export type
|
|
958
|
+
export type PropertyPaymentMethodUpdateToOneWithWhereWithoutApplicationsInput = {
|
|
959
959
|
where?: Prisma.PropertyPaymentMethodWhereInput;
|
|
960
|
-
data: Prisma.XOR<Prisma.
|
|
960
|
+
data: Prisma.XOR<Prisma.PropertyPaymentMethodUpdateWithoutApplicationsInput, Prisma.PropertyPaymentMethodUncheckedUpdateWithoutApplicationsInput>;
|
|
961
961
|
};
|
|
962
|
-
export type
|
|
962
|
+
export type PropertyPaymentMethodUpdateWithoutApplicationsInput = {
|
|
963
963
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
964
964
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
965
965
|
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -979,7 +979,7 @@ export type PropertyPaymentMethodUpdateWithoutContractsInput = {
|
|
|
979
979
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
980
980
|
changeRulesTo?: Prisma.DocumentRequirementRuleUpdateManyWithoutToPaymentMethodNestedInput;
|
|
981
981
|
};
|
|
982
|
-
export type
|
|
982
|
+
export type PropertyPaymentMethodUncheckedUpdateWithoutApplicationsInput = {
|
|
983
983
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
984
984
|
tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
985
985
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -1013,7 +1013,7 @@ export type PropertyPaymentMethodCreateWithoutChangeRequestsFromInput = {
|
|
|
1013
1013
|
tenant: Prisma.TenantCreateNestedOneWithoutPaymentMethodsInput;
|
|
1014
1014
|
properties?: Prisma.PropertyPaymentMethodLinkCreateNestedManyWithoutPaymentMethodInput;
|
|
1015
1015
|
phases?: Prisma.PropertyPaymentMethodPhaseCreateNestedManyWithoutPaymentMethodInput;
|
|
1016
|
-
|
|
1016
|
+
applications?: Prisma.ApplicationCreateNestedManyWithoutPaymentMethodInput;
|
|
1017
1017
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutToPaymentMethodInput;
|
|
1018
1018
|
documentRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutPaymentMethodInput;
|
|
1019
1019
|
changeRulesFrom?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutFromPaymentMethodInput;
|
|
@@ -1033,7 +1033,7 @@ export type PropertyPaymentMethodUncheckedCreateWithoutChangeRequestsFromInput =
|
|
|
1033
1033
|
updatedAt?: Date | string;
|
|
1034
1034
|
properties?: Prisma.PropertyPaymentMethodLinkUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
1035
1035
|
phases?: Prisma.PropertyPaymentMethodPhaseUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
1036
|
-
|
|
1036
|
+
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
1037
1037
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutToPaymentMethodInput;
|
|
1038
1038
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
1039
1039
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutFromPaymentMethodInput;
|
|
@@ -1057,7 +1057,7 @@ export type PropertyPaymentMethodCreateWithoutChangeRequestsToInput = {
|
|
|
1057
1057
|
tenant: Prisma.TenantCreateNestedOneWithoutPaymentMethodsInput;
|
|
1058
1058
|
properties?: Prisma.PropertyPaymentMethodLinkCreateNestedManyWithoutPaymentMethodInput;
|
|
1059
1059
|
phases?: Prisma.PropertyPaymentMethodPhaseCreateNestedManyWithoutPaymentMethodInput;
|
|
1060
|
-
|
|
1060
|
+
applications?: Prisma.ApplicationCreateNestedManyWithoutPaymentMethodInput;
|
|
1061
1061
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutFromPaymentMethodInput;
|
|
1062
1062
|
documentRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutPaymentMethodInput;
|
|
1063
1063
|
changeRulesFrom?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutFromPaymentMethodInput;
|
|
@@ -1077,7 +1077,7 @@ export type PropertyPaymentMethodUncheckedCreateWithoutChangeRequestsToInput = {
|
|
|
1077
1077
|
updatedAt?: Date | string;
|
|
1078
1078
|
properties?: Prisma.PropertyPaymentMethodLinkUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
1079
1079
|
phases?: Prisma.PropertyPaymentMethodPhaseUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
1080
|
-
|
|
1080
|
+
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
1081
1081
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutFromPaymentMethodInput;
|
|
1082
1082
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
1083
1083
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutFromPaymentMethodInput;
|
|
@@ -1110,7 +1110,7 @@ export type PropertyPaymentMethodUpdateWithoutChangeRequestsFromInput = {
|
|
|
1110
1110
|
tenant?: Prisma.TenantUpdateOneRequiredWithoutPaymentMethodsNestedInput;
|
|
1111
1111
|
properties?: Prisma.PropertyPaymentMethodLinkUpdateManyWithoutPaymentMethodNestedInput;
|
|
1112
1112
|
phases?: Prisma.PropertyPaymentMethodPhaseUpdateManyWithoutPaymentMethodNestedInput;
|
|
1113
|
-
|
|
1113
|
+
applications?: Prisma.ApplicationUpdateManyWithoutPaymentMethodNestedInput;
|
|
1114
1114
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutToPaymentMethodNestedInput;
|
|
1115
1115
|
documentRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutPaymentMethodNestedInput;
|
|
1116
1116
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
@@ -1130,7 +1130,7 @@ export type PropertyPaymentMethodUncheckedUpdateWithoutChangeRequestsFromInput =
|
|
|
1130
1130
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1131
1131
|
properties?: Prisma.PropertyPaymentMethodLinkUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1132
1132
|
phases?: Prisma.PropertyPaymentMethodPhaseUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1133
|
-
|
|
1133
|
+
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1134
1134
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutToPaymentMethodNestedInput;
|
|
1135
1135
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1136
1136
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
@@ -1159,7 +1159,7 @@ export type PropertyPaymentMethodUpdateWithoutChangeRequestsToInput = {
|
|
|
1159
1159
|
tenant?: Prisma.TenantUpdateOneRequiredWithoutPaymentMethodsNestedInput;
|
|
1160
1160
|
properties?: Prisma.PropertyPaymentMethodLinkUpdateManyWithoutPaymentMethodNestedInput;
|
|
1161
1161
|
phases?: Prisma.PropertyPaymentMethodPhaseUpdateManyWithoutPaymentMethodNestedInput;
|
|
1162
|
-
|
|
1162
|
+
applications?: Prisma.ApplicationUpdateManyWithoutPaymentMethodNestedInput;
|
|
1163
1163
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
1164
1164
|
documentRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutPaymentMethodNestedInput;
|
|
1165
1165
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
@@ -1179,7 +1179,7 @@ export type PropertyPaymentMethodUncheckedUpdateWithoutChangeRequestsToInput = {
|
|
|
1179
1179
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1180
1180
|
properties?: Prisma.PropertyPaymentMethodLinkUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1181
1181
|
phases?: Prisma.PropertyPaymentMethodPhaseUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1182
|
-
|
|
1182
|
+
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1183
1183
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
1184
1184
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1185
1185
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
@@ -1199,7 +1199,7 @@ export type PropertyPaymentMethodCreateWithoutDocumentRulesInput = {
|
|
|
1199
1199
|
tenant: Prisma.TenantCreateNestedOneWithoutPaymentMethodsInput;
|
|
1200
1200
|
properties?: Prisma.PropertyPaymentMethodLinkCreateNestedManyWithoutPaymentMethodInput;
|
|
1201
1201
|
phases?: Prisma.PropertyPaymentMethodPhaseCreateNestedManyWithoutPaymentMethodInput;
|
|
1202
|
-
|
|
1202
|
+
applications?: Prisma.ApplicationCreateNestedManyWithoutPaymentMethodInput;
|
|
1203
1203
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutFromPaymentMethodInput;
|
|
1204
1204
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutToPaymentMethodInput;
|
|
1205
1205
|
changeRulesFrom?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutFromPaymentMethodInput;
|
|
@@ -1219,7 +1219,7 @@ export type PropertyPaymentMethodUncheckedCreateWithoutDocumentRulesInput = {
|
|
|
1219
1219
|
updatedAt?: Date | string;
|
|
1220
1220
|
properties?: Prisma.PropertyPaymentMethodLinkUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
1221
1221
|
phases?: Prisma.PropertyPaymentMethodPhaseUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
1222
|
-
|
|
1222
|
+
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
1223
1223
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutFromPaymentMethodInput;
|
|
1224
1224
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutToPaymentMethodInput;
|
|
1225
1225
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutFromPaymentMethodInput;
|
|
@@ -1243,7 +1243,7 @@ export type PropertyPaymentMethodCreateWithoutChangeRulesFromInput = {
|
|
|
1243
1243
|
tenant: Prisma.TenantCreateNestedOneWithoutPaymentMethodsInput;
|
|
1244
1244
|
properties?: Prisma.PropertyPaymentMethodLinkCreateNestedManyWithoutPaymentMethodInput;
|
|
1245
1245
|
phases?: Prisma.PropertyPaymentMethodPhaseCreateNestedManyWithoutPaymentMethodInput;
|
|
1246
|
-
|
|
1246
|
+
applications?: Prisma.ApplicationCreateNestedManyWithoutPaymentMethodInput;
|
|
1247
1247
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutFromPaymentMethodInput;
|
|
1248
1248
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutToPaymentMethodInput;
|
|
1249
1249
|
documentRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutPaymentMethodInput;
|
|
@@ -1263,7 +1263,7 @@ export type PropertyPaymentMethodUncheckedCreateWithoutChangeRulesFromInput = {
|
|
|
1263
1263
|
updatedAt?: Date | string;
|
|
1264
1264
|
properties?: Prisma.PropertyPaymentMethodLinkUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
1265
1265
|
phases?: Prisma.PropertyPaymentMethodPhaseUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
1266
|
-
|
|
1266
|
+
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
1267
1267
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutFromPaymentMethodInput;
|
|
1268
1268
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutToPaymentMethodInput;
|
|
1269
1269
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
@@ -1287,7 +1287,7 @@ export type PropertyPaymentMethodCreateWithoutChangeRulesToInput = {
|
|
|
1287
1287
|
tenant: Prisma.TenantCreateNestedOneWithoutPaymentMethodsInput;
|
|
1288
1288
|
properties?: Prisma.PropertyPaymentMethodLinkCreateNestedManyWithoutPaymentMethodInput;
|
|
1289
1289
|
phases?: Prisma.PropertyPaymentMethodPhaseCreateNestedManyWithoutPaymentMethodInput;
|
|
1290
|
-
|
|
1290
|
+
applications?: Prisma.ApplicationCreateNestedManyWithoutPaymentMethodInput;
|
|
1291
1291
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutFromPaymentMethodInput;
|
|
1292
1292
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutToPaymentMethodInput;
|
|
1293
1293
|
documentRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutPaymentMethodInput;
|
|
@@ -1307,7 +1307,7 @@ export type PropertyPaymentMethodUncheckedCreateWithoutChangeRulesToInput = {
|
|
|
1307
1307
|
updatedAt?: Date | string;
|
|
1308
1308
|
properties?: Prisma.PropertyPaymentMethodLinkUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
1309
1309
|
phases?: Prisma.PropertyPaymentMethodPhaseUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
1310
|
-
|
|
1310
|
+
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
1311
1311
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutFromPaymentMethodInput;
|
|
1312
1312
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutToPaymentMethodInput;
|
|
1313
1313
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
@@ -1340,7 +1340,7 @@ export type PropertyPaymentMethodUpdateWithoutDocumentRulesInput = {
|
|
|
1340
1340
|
tenant?: Prisma.TenantUpdateOneRequiredWithoutPaymentMethodsNestedInput;
|
|
1341
1341
|
properties?: Prisma.PropertyPaymentMethodLinkUpdateManyWithoutPaymentMethodNestedInput;
|
|
1342
1342
|
phases?: Prisma.PropertyPaymentMethodPhaseUpdateManyWithoutPaymentMethodNestedInput;
|
|
1343
|
-
|
|
1343
|
+
applications?: Prisma.ApplicationUpdateManyWithoutPaymentMethodNestedInput;
|
|
1344
1344
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
1345
1345
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutToPaymentMethodNestedInput;
|
|
1346
1346
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
@@ -1360,7 +1360,7 @@ export type PropertyPaymentMethodUncheckedUpdateWithoutDocumentRulesInput = {
|
|
|
1360
1360
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1361
1361
|
properties?: Prisma.PropertyPaymentMethodLinkUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1362
1362
|
phases?: Prisma.PropertyPaymentMethodPhaseUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1363
|
-
|
|
1363
|
+
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1364
1364
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
1365
1365
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutToPaymentMethodNestedInput;
|
|
1366
1366
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
@@ -1389,7 +1389,7 @@ export type PropertyPaymentMethodUpdateWithoutChangeRulesFromInput = {
|
|
|
1389
1389
|
tenant?: Prisma.TenantUpdateOneRequiredWithoutPaymentMethodsNestedInput;
|
|
1390
1390
|
properties?: Prisma.PropertyPaymentMethodLinkUpdateManyWithoutPaymentMethodNestedInput;
|
|
1391
1391
|
phases?: Prisma.PropertyPaymentMethodPhaseUpdateManyWithoutPaymentMethodNestedInput;
|
|
1392
|
-
|
|
1392
|
+
applications?: Prisma.ApplicationUpdateManyWithoutPaymentMethodNestedInput;
|
|
1393
1393
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
1394
1394
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutToPaymentMethodNestedInput;
|
|
1395
1395
|
documentRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutPaymentMethodNestedInput;
|
|
@@ -1409,7 +1409,7 @@ export type PropertyPaymentMethodUncheckedUpdateWithoutChangeRulesFromInput = {
|
|
|
1409
1409
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1410
1410
|
properties?: Prisma.PropertyPaymentMethodLinkUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1411
1411
|
phases?: Prisma.PropertyPaymentMethodPhaseUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1412
|
-
|
|
1412
|
+
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1413
1413
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
1414
1414
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutToPaymentMethodNestedInput;
|
|
1415
1415
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
@@ -1438,7 +1438,7 @@ export type PropertyPaymentMethodUpdateWithoutChangeRulesToInput = {
|
|
|
1438
1438
|
tenant?: Prisma.TenantUpdateOneRequiredWithoutPaymentMethodsNestedInput;
|
|
1439
1439
|
properties?: Prisma.PropertyPaymentMethodLinkUpdateManyWithoutPaymentMethodNestedInput;
|
|
1440
1440
|
phases?: Prisma.PropertyPaymentMethodPhaseUpdateManyWithoutPaymentMethodNestedInput;
|
|
1441
|
-
|
|
1441
|
+
applications?: Prisma.ApplicationUpdateManyWithoutPaymentMethodNestedInput;
|
|
1442
1442
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
1443
1443
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutToPaymentMethodNestedInput;
|
|
1444
1444
|
documentRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutPaymentMethodNestedInput;
|
|
@@ -1458,7 +1458,7 @@ export type PropertyPaymentMethodUncheckedUpdateWithoutChangeRulesToInput = {
|
|
|
1458
1458
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1459
1459
|
properties?: Prisma.PropertyPaymentMethodLinkUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1460
1460
|
phases?: Prisma.PropertyPaymentMethodPhaseUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1461
|
-
|
|
1461
|
+
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1462
1462
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
1463
1463
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutToPaymentMethodNestedInput;
|
|
1464
1464
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
@@ -1489,7 +1489,7 @@ export type PropertyPaymentMethodUpdateWithoutTenantInput = {
|
|
|
1489
1489
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1490
1490
|
properties?: Prisma.PropertyPaymentMethodLinkUpdateManyWithoutPaymentMethodNestedInput;
|
|
1491
1491
|
phases?: Prisma.PropertyPaymentMethodPhaseUpdateManyWithoutPaymentMethodNestedInput;
|
|
1492
|
-
|
|
1492
|
+
applications?: Prisma.ApplicationUpdateManyWithoutPaymentMethodNestedInput;
|
|
1493
1493
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
1494
1494
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutToPaymentMethodNestedInput;
|
|
1495
1495
|
documentRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutPaymentMethodNestedInput;
|
|
@@ -1509,7 +1509,7 @@ export type PropertyPaymentMethodUncheckedUpdateWithoutTenantInput = {
|
|
|
1509
1509
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1510
1510
|
properties?: Prisma.PropertyPaymentMethodLinkUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1511
1511
|
phases?: Prisma.PropertyPaymentMethodPhaseUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1512
|
-
|
|
1512
|
+
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1513
1513
|
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
1514
1514
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutToPaymentMethodNestedInput;
|
|
1515
1515
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
@@ -1534,7 +1534,7 @@ export type PropertyPaymentMethodUncheckedUpdateManyWithoutTenantInput = {
|
|
|
1534
1534
|
export type PropertyPaymentMethodCountOutputType = {
|
|
1535
1535
|
properties: number;
|
|
1536
1536
|
phases: number;
|
|
1537
|
-
|
|
1537
|
+
applications: number;
|
|
1538
1538
|
changeRequestsFrom: number;
|
|
1539
1539
|
changeRequestsTo: number;
|
|
1540
1540
|
documentRules: number;
|
|
@@ -1544,7 +1544,7 @@ export type PropertyPaymentMethodCountOutputType = {
|
|
|
1544
1544
|
export type PropertyPaymentMethodCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1545
1545
|
properties?: boolean | PropertyPaymentMethodCountOutputTypeCountPropertiesArgs;
|
|
1546
1546
|
phases?: boolean | PropertyPaymentMethodCountOutputTypeCountPhasesArgs;
|
|
1547
|
-
|
|
1547
|
+
applications?: boolean | PropertyPaymentMethodCountOutputTypeCountApplicationsArgs;
|
|
1548
1548
|
changeRequestsFrom?: boolean | PropertyPaymentMethodCountOutputTypeCountChangeRequestsFromArgs;
|
|
1549
1549
|
changeRequestsTo?: boolean | PropertyPaymentMethodCountOutputTypeCountChangeRequestsToArgs;
|
|
1550
1550
|
documentRules?: boolean | PropertyPaymentMethodCountOutputTypeCountDocumentRulesArgs;
|
|
@@ -1575,8 +1575,8 @@ export type PropertyPaymentMethodCountOutputTypeCountPhasesArgs<ExtArgs extends
|
|
|
1575
1575
|
/**
|
|
1576
1576
|
* PropertyPaymentMethodCountOutputType without action
|
|
1577
1577
|
*/
|
|
1578
|
-
export type
|
|
1579
|
-
where?: Prisma.
|
|
1578
|
+
export type PropertyPaymentMethodCountOutputTypeCountApplicationsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1579
|
+
where?: Prisma.ApplicationWhereInput;
|
|
1580
1580
|
};
|
|
1581
1581
|
/**
|
|
1582
1582
|
* PropertyPaymentMethodCountOutputType without action
|
|
@@ -1623,7 +1623,7 @@ export type PropertyPaymentMethodSelect<ExtArgs extends runtime.Types.Extensions
|
|
|
1623
1623
|
tenant?: boolean | Prisma.TenantDefaultArgs<ExtArgs>;
|
|
1624
1624
|
properties?: boolean | Prisma.PropertyPaymentMethod$propertiesArgs<ExtArgs>;
|
|
1625
1625
|
phases?: boolean | Prisma.PropertyPaymentMethod$phasesArgs<ExtArgs>;
|
|
1626
|
-
|
|
1626
|
+
applications?: boolean | Prisma.PropertyPaymentMethod$applicationsArgs<ExtArgs>;
|
|
1627
1627
|
changeRequestsFrom?: boolean | Prisma.PropertyPaymentMethod$changeRequestsFromArgs<ExtArgs>;
|
|
1628
1628
|
changeRequestsTo?: boolean | Prisma.PropertyPaymentMethod$changeRequestsToArgs<ExtArgs>;
|
|
1629
1629
|
documentRules?: boolean | Prisma.PropertyPaymentMethod$documentRulesArgs<ExtArgs>;
|
|
@@ -1649,7 +1649,7 @@ export type PropertyPaymentMethodInclude<ExtArgs extends runtime.Types.Extension
|
|
|
1649
1649
|
tenant?: boolean | Prisma.TenantDefaultArgs<ExtArgs>;
|
|
1650
1650
|
properties?: boolean | Prisma.PropertyPaymentMethod$propertiesArgs<ExtArgs>;
|
|
1651
1651
|
phases?: boolean | Prisma.PropertyPaymentMethod$phasesArgs<ExtArgs>;
|
|
1652
|
-
|
|
1652
|
+
applications?: boolean | Prisma.PropertyPaymentMethod$applicationsArgs<ExtArgs>;
|
|
1653
1653
|
changeRequestsFrom?: boolean | Prisma.PropertyPaymentMethod$changeRequestsFromArgs<ExtArgs>;
|
|
1654
1654
|
changeRequestsTo?: boolean | Prisma.PropertyPaymentMethod$changeRequestsToArgs<ExtArgs>;
|
|
1655
1655
|
documentRules?: boolean | Prisma.PropertyPaymentMethod$documentRulesArgs<ExtArgs>;
|
|
@@ -1663,7 +1663,7 @@ export type $PropertyPaymentMethodPayload<ExtArgs extends runtime.Types.Extensio
|
|
|
1663
1663
|
tenant: Prisma.$TenantPayload<ExtArgs>;
|
|
1664
1664
|
properties: Prisma.$PropertyPaymentMethodLinkPayload<ExtArgs>[];
|
|
1665
1665
|
phases: Prisma.$PropertyPaymentMethodPhasePayload<ExtArgs>[];
|
|
1666
|
-
|
|
1666
|
+
applications: Prisma.$ApplicationPayload<ExtArgs>[];
|
|
1667
1667
|
changeRequestsFrom: Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>[];
|
|
1668
1668
|
changeRequestsTo: Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>[];
|
|
1669
1669
|
documentRules: Prisma.$DocumentRequirementRulePayload<ExtArgs>[];
|
|
@@ -1962,7 +1962,7 @@ export interface Prisma__PropertyPaymentMethodClient<T, Null = never, ExtArgs ex
|
|
|
1962
1962
|
tenant<T extends Prisma.TenantDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.TenantDefaultArgs<ExtArgs>>): Prisma.Prisma__TenantClient<runtime.Types.Result.GetResult<Prisma.$TenantPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>;
|
|
1963
1963
|
properties<T extends Prisma.PropertyPaymentMethod$propertiesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.PropertyPaymentMethod$propertiesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PropertyPaymentMethodLinkPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1964
1964
|
phases<T extends Prisma.PropertyPaymentMethod$phasesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.PropertyPaymentMethod$phasesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PropertyPaymentMethodPhasePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1965
|
-
|
|
1965
|
+
applications<T extends Prisma.PropertyPaymentMethod$applicationsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.PropertyPaymentMethod$applicationsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ApplicationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1966
1966
|
changeRequestsFrom<T extends Prisma.PropertyPaymentMethod$changeRequestsFromArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.PropertyPaymentMethod$changeRequestsFromArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1967
1967
|
changeRequestsTo<T extends Prisma.PropertyPaymentMethod$changeRequestsToArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.PropertyPaymentMethod$changeRequestsToArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PaymentMethodChangeRequestPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1968
1968
|
documentRules<T extends Prisma.PropertyPaymentMethod$documentRulesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.PropertyPaymentMethod$documentRulesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$DocumentRequirementRulePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
@@ -2378,27 +2378,27 @@ export type PropertyPaymentMethod$phasesArgs<ExtArgs extends runtime.Types.Exten
|
|
|
2378
2378
|
distinct?: Prisma.PropertyPaymentMethodPhaseScalarFieldEnum | Prisma.PropertyPaymentMethodPhaseScalarFieldEnum[];
|
|
2379
2379
|
};
|
|
2380
2380
|
/**
|
|
2381
|
-
* PropertyPaymentMethod.
|
|
2381
|
+
* PropertyPaymentMethod.applications
|
|
2382
2382
|
*/
|
|
2383
|
-
export type PropertyPaymentMethod$
|
|
2383
|
+
export type PropertyPaymentMethod$applicationsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
2384
2384
|
/**
|
|
2385
|
-
* Select specific fields to fetch from the
|
|
2385
|
+
* Select specific fields to fetch from the Application
|
|
2386
2386
|
*/
|
|
2387
|
-
select?: Prisma.
|
|
2387
|
+
select?: Prisma.ApplicationSelect<ExtArgs> | null;
|
|
2388
2388
|
/**
|
|
2389
|
-
* Omit specific fields from the
|
|
2389
|
+
* Omit specific fields from the Application
|
|
2390
2390
|
*/
|
|
2391
|
-
omit?: Prisma.
|
|
2391
|
+
omit?: Prisma.ApplicationOmit<ExtArgs> | null;
|
|
2392
2392
|
/**
|
|
2393
2393
|
* Choose, which related nodes to fetch as well
|
|
2394
2394
|
*/
|
|
2395
|
-
include?: Prisma.
|
|
2396
|
-
where?: Prisma.
|
|
2397
|
-
orderBy?: Prisma.
|
|
2398
|
-
cursor?: Prisma.
|
|
2395
|
+
include?: Prisma.ApplicationInclude<ExtArgs> | null;
|
|
2396
|
+
where?: Prisma.ApplicationWhereInput;
|
|
2397
|
+
orderBy?: Prisma.ApplicationOrderByWithRelationInput | Prisma.ApplicationOrderByWithRelationInput[];
|
|
2398
|
+
cursor?: Prisma.ApplicationWhereUniqueInput;
|
|
2399
2399
|
take?: number;
|
|
2400
2400
|
skip?: number;
|
|
2401
|
-
distinct?: Prisma.
|
|
2401
|
+
distinct?: Prisma.ApplicationScalarFieldEnum | Prisma.ApplicationScalarFieldEnum[];
|
|
2402
2402
|
};
|
|
2403
2403
|
/**
|
|
2404
2404
|
* PropertyPaymentMethod.changeRequestsFrom
|