@valentine-efagene/qshelter-common 2.0.142 → 2.0.144
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 +32 -0
- package/dist/generated/client/client.d.ts +32 -0
- package/dist/generated/client/commonInputTypes.d.ts +354 -144
- package/dist/generated/client/enums.d.ts +45 -0
- package/dist/generated/client/enums.js +39 -0
- package/dist/generated/client/internal/class.d.ts +66 -0
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +633 -3
- package/dist/generated/client/internal/prismaNamespace.js +193 -1
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +204 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +193 -1
- package/dist/generated/client/models/Application.d.ts +669 -1
- package/dist/generated/client/models/ApplicationDocument.d.ts +577 -1
- package/dist/generated/client/models/ApplicationOrganization.d.ts +2385 -0
- package/dist/generated/client/models/ApplicationOrganization.js +1 -0
- package/dist/generated/client/models/BankDocumentRequirement.d.ts +1932 -0
- package/dist/generated/client/models/BankDocumentRequirement.js +1 -0
- package/dist/generated/client/models/DocumentExpiryWarning.d.ts +1141 -0
- package/dist/generated/client/models/DocumentExpiryWarning.js +1 -0
- package/dist/generated/client/models/Organization.d.ts +390 -0
- package/dist/generated/client/models/PropertyMedia.d.ts +0 -7
- package/dist/generated/client/models/PropertyPaymentMethod.d.ts +192 -3
- package/dist/generated/client/models/PropertyVariant.d.ts +0 -7
- package/dist/generated/client/models/ScheduledJob.d.ts +1317 -0
- package/dist/generated/client/models/ScheduledJob.js +1 -0
- package/dist/generated/client/models/StateTransitionDefinition.d.ts +1104 -0
- package/dist/generated/client/models/StateTransitionDefinition.js +1 -0
- package/dist/generated/client/models/StateTransitionLog.d.ts +1383 -0
- package/dist/generated/client/models/StateTransitionLog.js +1 -0
- package/dist/generated/client/models/Tenant.d.ts +2535 -798
- package/dist/generated/client/models/index.d.ts +6 -0
- package/dist/generated/client/models/index.js +6 -0
- package/dist/generated/client/models.d.ts +6 -0
- package/dist/src/prisma/tenant.js +4 -0
- package/package.json +1 -1
- package/prisma/migrations/20260120024650_add_questionnaire_phase_review/migration.sql +102 -0
- package/prisma/schema.prisma +423 -2
|
@@ -225,6 +225,7 @@ export type PropertyPaymentMethodWhereInput = {
|
|
|
225
225
|
documentRules?: Prisma.DocumentRequirementRuleListRelationFilter;
|
|
226
226
|
changeRulesFrom?: Prisma.DocumentRequirementRuleListRelationFilter;
|
|
227
227
|
changeRulesTo?: Prisma.DocumentRequirementRuleListRelationFilter;
|
|
228
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementListRelationFilter;
|
|
228
229
|
};
|
|
229
230
|
export type PropertyPaymentMethodOrderByWithRelationInput = {
|
|
230
231
|
id?: Prisma.SortOrder;
|
|
@@ -247,6 +248,7 @@ export type PropertyPaymentMethodOrderByWithRelationInput = {
|
|
|
247
248
|
documentRules?: Prisma.DocumentRequirementRuleOrderByRelationAggregateInput;
|
|
248
249
|
changeRulesFrom?: Prisma.DocumentRequirementRuleOrderByRelationAggregateInput;
|
|
249
250
|
changeRulesTo?: Prisma.DocumentRequirementRuleOrderByRelationAggregateInput;
|
|
251
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementOrderByRelationAggregateInput;
|
|
250
252
|
_relevance?: Prisma.PropertyPaymentMethodOrderByRelevanceInput;
|
|
251
253
|
};
|
|
252
254
|
export type PropertyPaymentMethodWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -274,6 +276,7 @@ export type PropertyPaymentMethodWhereUniqueInput = Prisma.AtLeast<{
|
|
|
274
276
|
documentRules?: Prisma.DocumentRequirementRuleListRelationFilter;
|
|
275
277
|
changeRulesFrom?: Prisma.DocumentRequirementRuleListRelationFilter;
|
|
276
278
|
changeRulesTo?: Prisma.DocumentRequirementRuleListRelationFilter;
|
|
279
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementListRelationFilter;
|
|
277
280
|
}, "id" | "tenantId_name">;
|
|
278
281
|
export type PropertyPaymentMethodOrderByWithAggregationInput = {
|
|
279
282
|
id?: Prisma.SortOrder;
|
|
@@ -329,6 +332,7 @@ export type PropertyPaymentMethodCreateInput = {
|
|
|
329
332
|
documentRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutPaymentMethodInput;
|
|
330
333
|
changeRulesFrom?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutFromPaymentMethodInput;
|
|
331
334
|
changeRulesTo?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutToPaymentMethodInput;
|
|
335
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutPaymentMethodInput;
|
|
332
336
|
};
|
|
333
337
|
export type PropertyPaymentMethodUncheckedCreateInput = {
|
|
334
338
|
id?: string;
|
|
@@ -350,6 +354,7 @@ export type PropertyPaymentMethodUncheckedCreateInput = {
|
|
|
350
354
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
351
355
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutFromPaymentMethodInput;
|
|
352
356
|
changeRulesTo?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutToPaymentMethodInput;
|
|
357
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
353
358
|
};
|
|
354
359
|
export type PropertyPaymentMethodUpdateInput = {
|
|
355
360
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -371,6 +376,7 @@ export type PropertyPaymentMethodUpdateInput = {
|
|
|
371
376
|
documentRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutPaymentMethodNestedInput;
|
|
372
377
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
373
378
|
changeRulesTo?: Prisma.DocumentRequirementRuleUpdateManyWithoutToPaymentMethodNestedInput;
|
|
379
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutPaymentMethodNestedInput;
|
|
374
380
|
};
|
|
375
381
|
export type PropertyPaymentMethodUncheckedUpdateInput = {
|
|
376
382
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -392,6 +398,7 @@ export type PropertyPaymentMethodUncheckedUpdateInput = {
|
|
|
392
398
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
393
399
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
394
400
|
changeRulesTo?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutToPaymentMethodNestedInput;
|
|
401
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
395
402
|
};
|
|
396
403
|
export type PropertyPaymentMethodCreateManyInput = {
|
|
397
404
|
id?: string;
|
|
@@ -431,6 +438,10 @@ export type PropertyPaymentMethodUncheckedUpdateManyInput = {
|
|
|
431
438
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
432
439
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
433
440
|
};
|
|
441
|
+
export type PropertyPaymentMethodNullableScalarRelationFilter = {
|
|
442
|
+
is?: Prisma.PropertyPaymentMethodWhereInput | null;
|
|
443
|
+
isNot?: Prisma.PropertyPaymentMethodWhereInput | null;
|
|
444
|
+
};
|
|
434
445
|
export type PropertyPaymentMethodListRelationFilter = {
|
|
435
446
|
every?: Prisma.PropertyPaymentMethodWhereInput;
|
|
436
447
|
some?: Prisma.PropertyPaymentMethodWhereInput;
|
|
@@ -497,9 +508,19 @@ export type PropertyPaymentMethodScalarRelationFilter = {
|
|
|
497
508
|
is?: Prisma.PropertyPaymentMethodWhereInput;
|
|
498
509
|
isNot?: Prisma.PropertyPaymentMethodWhereInput;
|
|
499
510
|
};
|
|
500
|
-
export type
|
|
501
|
-
|
|
502
|
-
|
|
511
|
+
export type PropertyPaymentMethodCreateNestedOneWithoutBankDocumentRequirementsInput = {
|
|
512
|
+
create?: Prisma.XOR<Prisma.PropertyPaymentMethodCreateWithoutBankDocumentRequirementsInput, Prisma.PropertyPaymentMethodUncheckedCreateWithoutBankDocumentRequirementsInput>;
|
|
513
|
+
connectOrCreate?: Prisma.PropertyPaymentMethodCreateOrConnectWithoutBankDocumentRequirementsInput;
|
|
514
|
+
connect?: Prisma.PropertyPaymentMethodWhereUniqueInput;
|
|
515
|
+
};
|
|
516
|
+
export type PropertyPaymentMethodUpdateOneWithoutBankDocumentRequirementsNestedInput = {
|
|
517
|
+
create?: Prisma.XOR<Prisma.PropertyPaymentMethodCreateWithoutBankDocumentRequirementsInput, Prisma.PropertyPaymentMethodUncheckedCreateWithoutBankDocumentRequirementsInput>;
|
|
518
|
+
connectOrCreate?: Prisma.PropertyPaymentMethodCreateOrConnectWithoutBankDocumentRequirementsInput;
|
|
519
|
+
upsert?: Prisma.PropertyPaymentMethodUpsertWithoutBankDocumentRequirementsInput;
|
|
520
|
+
disconnect?: Prisma.PropertyPaymentMethodWhereInput | boolean;
|
|
521
|
+
delete?: Prisma.PropertyPaymentMethodWhereInput | boolean;
|
|
522
|
+
connect?: Prisma.PropertyPaymentMethodWhereUniqueInput;
|
|
523
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.PropertyPaymentMethodUpdateToOneWithWhereWithoutBankDocumentRequirementsInput, Prisma.PropertyPaymentMethodUpdateWithoutBankDocumentRequirementsInput>, Prisma.PropertyPaymentMethodUncheckedUpdateWithoutBankDocumentRequirementsInput>;
|
|
503
524
|
};
|
|
504
525
|
export type PropertyPaymentMethodCreateNestedManyWithoutTenantInput = {
|
|
505
526
|
create?: Prisma.XOR<Prisma.PropertyPaymentMethodCreateWithoutTenantInput, Prisma.PropertyPaymentMethodUncheckedCreateWithoutTenantInput> | Prisma.PropertyPaymentMethodCreateWithoutTenantInput[] | Prisma.PropertyPaymentMethodUncheckedCreateWithoutTenantInput[];
|
|
@@ -643,6 +664,103 @@ export type PropertyPaymentMethodUpdateOneWithoutChangeRulesToNestedInput = {
|
|
|
643
664
|
connect?: Prisma.PropertyPaymentMethodWhereUniqueInput;
|
|
644
665
|
update?: Prisma.XOR<Prisma.XOR<Prisma.PropertyPaymentMethodUpdateToOneWithWhereWithoutChangeRulesToInput, Prisma.PropertyPaymentMethodUpdateWithoutChangeRulesToInput>, Prisma.PropertyPaymentMethodUncheckedUpdateWithoutChangeRulesToInput>;
|
|
645
666
|
};
|
|
667
|
+
export type PropertyPaymentMethodCreateWithoutBankDocumentRequirementsInput = {
|
|
668
|
+
id?: string;
|
|
669
|
+
name: string;
|
|
670
|
+
description?: string | null;
|
|
671
|
+
isActive?: boolean;
|
|
672
|
+
allowEarlyPayoff?: boolean;
|
|
673
|
+
earlyPayoffPenaltyRate?: number | null;
|
|
674
|
+
autoActivatePhases?: boolean;
|
|
675
|
+
requiresManualApproval?: boolean;
|
|
676
|
+
createdAt?: Date | string;
|
|
677
|
+
updatedAt?: Date | string;
|
|
678
|
+
tenant: Prisma.TenantCreateNestedOneWithoutPaymentMethodsInput;
|
|
679
|
+
properties?: Prisma.PropertyPaymentMethodLinkCreateNestedManyWithoutPaymentMethodInput;
|
|
680
|
+
phases?: Prisma.PropertyPaymentMethodPhaseCreateNestedManyWithoutPaymentMethodInput;
|
|
681
|
+
applications?: Prisma.ApplicationCreateNestedManyWithoutPaymentMethodInput;
|
|
682
|
+
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutFromPaymentMethodInput;
|
|
683
|
+
changeRequestsTo?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutToPaymentMethodInput;
|
|
684
|
+
documentRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutPaymentMethodInput;
|
|
685
|
+
changeRulesFrom?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutFromPaymentMethodInput;
|
|
686
|
+
changeRulesTo?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutToPaymentMethodInput;
|
|
687
|
+
};
|
|
688
|
+
export type PropertyPaymentMethodUncheckedCreateWithoutBankDocumentRequirementsInput = {
|
|
689
|
+
id?: string;
|
|
690
|
+
tenantId: string;
|
|
691
|
+
name: string;
|
|
692
|
+
description?: string | null;
|
|
693
|
+
isActive?: boolean;
|
|
694
|
+
allowEarlyPayoff?: boolean;
|
|
695
|
+
earlyPayoffPenaltyRate?: number | null;
|
|
696
|
+
autoActivatePhases?: boolean;
|
|
697
|
+
requiresManualApproval?: boolean;
|
|
698
|
+
createdAt?: Date | string;
|
|
699
|
+
updatedAt?: Date | string;
|
|
700
|
+
properties?: Prisma.PropertyPaymentMethodLinkUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
701
|
+
phases?: Prisma.PropertyPaymentMethodPhaseUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
702
|
+
applications?: Prisma.ApplicationUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
703
|
+
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutFromPaymentMethodInput;
|
|
704
|
+
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutToPaymentMethodInput;
|
|
705
|
+
documentRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
706
|
+
changeRulesFrom?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutFromPaymentMethodInput;
|
|
707
|
+
changeRulesTo?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutToPaymentMethodInput;
|
|
708
|
+
};
|
|
709
|
+
export type PropertyPaymentMethodCreateOrConnectWithoutBankDocumentRequirementsInput = {
|
|
710
|
+
where: Prisma.PropertyPaymentMethodWhereUniqueInput;
|
|
711
|
+
create: Prisma.XOR<Prisma.PropertyPaymentMethodCreateWithoutBankDocumentRequirementsInput, Prisma.PropertyPaymentMethodUncheckedCreateWithoutBankDocumentRequirementsInput>;
|
|
712
|
+
};
|
|
713
|
+
export type PropertyPaymentMethodUpsertWithoutBankDocumentRequirementsInput = {
|
|
714
|
+
update: Prisma.XOR<Prisma.PropertyPaymentMethodUpdateWithoutBankDocumentRequirementsInput, Prisma.PropertyPaymentMethodUncheckedUpdateWithoutBankDocumentRequirementsInput>;
|
|
715
|
+
create: Prisma.XOR<Prisma.PropertyPaymentMethodCreateWithoutBankDocumentRequirementsInput, Prisma.PropertyPaymentMethodUncheckedCreateWithoutBankDocumentRequirementsInput>;
|
|
716
|
+
where?: Prisma.PropertyPaymentMethodWhereInput;
|
|
717
|
+
};
|
|
718
|
+
export type PropertyPaymentMethodUpdateToOneWithWhereWithoutBankDocumentRequirementsInput = {
|
|
719
|
+
where?: Prisma.PropertyPaymentMethodWhereInput;
|
|
720
|
+
data: Prisma.XOR<Prisma.PropertyPaymentMethodUpdateWithoutBankDocumentRequirementsInput, Prisma.PropertyPaymentMethodUncheckedUpdateWithoutBankDocumentRequirementsInput>;
|
|
721
|
+
};
|
|
722
|
+
export type PropertyPaymentMethodUpdateWithoutBankDocumentRequirementsInput = {
|
|
723
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
724
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
725
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
726
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
727
|
+
allowEarlyPayoff?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
728
|
+
earlyPayoffPenaltyRate?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
729
|
+
autoActivatePhases?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
730
|
+
requiresManualApproval?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
731
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
732
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
733
|
+
tenant?: Prisma.TenantUpdateOneRequiredWithoutPaymentMethodsNestedInput;
|
|
734
|
+
properties?: Prisma.PropertyPaymentMethodLinkUpdateManyWithoutPaymentMethodNestedInput;
|
|
735
|
+
phases?: Prisma.PropertyPaymentMethodPhaseUpdateManyWithoutPaymentMethodNestedInput;
|
|
736
|
+
applications?: Prisma.ApplicationUpdateManyWithoutPaymentMethodNestedInput;
|
|
737
|
+
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
738
|
+
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutToPaymentMethodNestedInput;
|
|
739
|
+
documentRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutPaymentMethodNestedInput;
|
|
740
|
+
changeRulesFrom?: Prisma.DocumentRequirementRuleUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
741
|
+
changeRulesTo?: Prisma.DocumentRequirementRuleUpdateManyWithoutToPaymentMethodNestedInput;
|
|
742
|
+
};
|
|
743
|
+
export type PropertyPaymentMethodUncheckedUpdateWithoutBankDocumentRequirementsInput = {
|
|
744
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
745
|
+
tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
746
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
747
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
748
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
749
|
+
allowEarlyPayoff?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
750
|
+
earlyPayoffPenaltyRate?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
751
|
+
autoActivatePhases?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
752
|
+
requiresManualApproval?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
753
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
754
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
755
|
+
properties?: Prisma.PropertyPaymentMethodLinkUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
756
|
+
phases?: Prisma.PropertyPaymentMethodPhaseUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
757
|
+
applications?: Prisma.ApplicationUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
758
|
+
changeRequestsFrom?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
759
|
+
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutToPaymentMethodNestedInput;
|
|
760
|
+
documentRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
761
|
+
changeRulesFrom?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
762
|
+
changeRulesTo?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutToPaymentMethodNestedInput;
|
|
763
|
+
};
|
|
646
764
|
export type PropertyPaymentMethodCreateWithoutTenantInput = {
|
|
647
765
|
id?: string;
|
|
648
766
|
name: string;
|
|
@@ -662,6 +780,7 @@ export type PropertyPaymentMethodCreateWithoutTenantInput = {
|
|
|
662
780
|
documentRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutPaymentMethodInput;
|
|
663
781
|
changeRulesFrom?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutFromPaymentMethodInput;
|
|
664
782
|
changeRulesTo?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutToPaymentMethodInput;
|
|
783
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutPaymentMethodInput;
|
|
665
784
|
};
|
|
666
785
|
export type PropertyPaymentMethodUncheckedCreateWithoutTenantInput = {
|
|
667
786
|
id?: string;
|
|
@@ -682,6 +801,7 @@ export type PropertyPaymentMethodUncheckedCreateWithoutTenantInput = {
|
|
|
682
801
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
683
802
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutFromPaymentMethodInput;
|
|
684
803
|
changeRulesTo?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutToPaymentMethodInput;
|
|
804
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
685
805
|
};
|
|
686
806
|
export type PropertyPaymentMethodCreateOrConnectWithoutTenantInput = {
|
|
687
807
|
where: Prisma.PropertyPaymentMethodWhereUniqueInput;
|
|
@@ -739,6 +859,7 @@ export type PropertyPaymentMethodCreateWithoutPropertiesInput = {
|
|
|
739
859
|
documentRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutPaymentMethodInput;
|
|
740
860
|
changeRulesFrom?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutFromPaymentMethodInput;
|
|
741
861
|
changeRulesTo?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutToPaymentMethodInput;
|
|
862
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutPaymentMethodInput;
|
|
742
863
|
};
|
|
743
864
|
export type PropertyPaymentMethodUncheckedCreateWithoutPropertiesInput = {
|
|
744
865
|
id?: string;
|
|
@@ -759,6 +880,7 @@ export type PropertyPaymentMethodUncheckedCreateWithoutPropertiesInput = {
|
|
|
759
880
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
760
881
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutFromPaymentMethodInput;
|
|
761
882
|
changeRulesTo?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutToPaymentMethodInput;
|
|
883
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
762
884
|
};
|
|
763
885
|
export type PropertyPaymentMethodCreateOrConnectWithoutPropertiesInput = {
|
|
764
886
|
where: Prisma.PropertyPaymentMethodWhereUniqueInput;
|
|
@@ -792,6 +914,7 @@ export type PropertyPaymentMethodUpdateWithoutPropertiesInput = {
|
|
|
792
914
|
documentRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutPaymentMethodNestedInput;
|
|
793
915
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
794
916
|
changeRulesTo?: Prisma.DocumentRequirementRuleUpdateManyWithoutToPaymentMethodNestedInput;
|
|
917
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutPaymentMethodNestedInput;
|
|
795
918
|
};
|
|
796
919
|
export type PropertyPaymentMethodUncheckedUpdateWithoutPropertiesInput = {
|
|
797
920
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -812,6 +935,7 @@ export type PropertyPaymentMethodUncheckedUpdateWithoutPropertiesInput = {
|
|
|
812
935
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
813
936
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
814
937
|
changeRulesTo?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutToPaymentMethodNestedInput;
|
|
938
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
815
939
|
};
|
|
816
940
|
export type PropertyPaymentMethodCreateWithoutPhasesInput = {
|
|
817
941
|
id?: string;
|
|
@@ -832,6 +956,7 @@ export type PropertyPaymentMethodCreateWithoutPhasesInput = {
|
|
|
832
956
|
documentRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutPaymentMethodInput;
|
|
833
957
|
changeRulesFrom?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutFromPaymentMethodInput;
|
|
834
958
|
changeRulesTo?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutToPaymentMethodInput;
|
|
959
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutPaymentMethodInput;
|
|
835
960
|
};
|
|
836
961
|
export type PropertyPaymentMethodUncheckedCreateWithoutPhasesInput = {
|
|
837
962
|
id?: string;
|
|
@@ -852,6 +977,7 @@ export type PropertyPaymentMethodUncheckedCreateWithoutPhasesInput = {
|
|
|
852
977
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
853
978
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutFromPaymentMethodInput;
|
|
854
979
|
changeRulesTo?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutToPaymentMethodInput;
|
|
980
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
855
981
|
};
|
|
856
982
|
export type PropertyPaymentMethodCreateOrConnectWithoutPhasesInput = {
|
|
857
983
|
where: Prisma.PropertyPaymentMethodWhereUniqueInput;
|
|
@@ -885,6 +1011,7 @@ export type PropertyPaymentMethodUpdateWithoutPhasesInput = {
|
|
|
885
1011
|
documentRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutPaymentMethodNestedInput;
|
|
886
1012
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
887
1013
|
changeRulesTo?: Prisma.DocumentRequirementRuleUpdateManyWithoutToPaymentMethodNestedInput;
|
|
1014
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutPaymentMethodNestedInput;
|
|
888
1015
|
};
|
|
889
1016
|
export type PropertyPaymentMethodUncheckedUpdateWithoutPhasesInput = {
|
|
890
1017
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -905,6 +1032,7 @@ export type PropertyPaymentMethodUncheckedUpdateWithoutPhasesInput = {
|
|
|
905
1032
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
906
1033
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
907
1034
|
changeRulesTo?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutToPaymentMethodNestedInput;
|
|
1035
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
908
1036
|
};
|
|
909
1037
|
export type PropertyPaymentMethodCreateWithoutApplicationsInput = {
|
|
910
1038
|
id?: string;
|
|
@@ -925,6 +1053,7 @@ export type PropertyPaymentMethodCreateWithoutApplicationsInput = {
|
|
|
925
1053
|
documentRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutPaymentMethodInput;
|
|
926
1054
|
changeRulesFrom?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutFromPaymentMethodInput;
|
|
927
1055
|
changeRulesTo?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutToPaymentMethodInput;
|
|
1056
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutPaymentMethodInput;
|
|
928
1057
|
};
|
|
929
1058
|
export type PropertyPaymentMethodUncheckedCreateWithoutApplicationsInput = {
|
|
930
1059
|
id?: string;
|
|
@@ -945,6 +1074,7 @@ export type PropertyPaymentMethodUncheckedCreateWithoutApplicationsInput = {
|
|
|
945
1074
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
946
1075
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutFromPaymentMethodInput;
|
|
947
1076
|
changeRulesTo?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutToPaymentMethodInput;
|
|
1077
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
948
1078
|
};
|
|
949
1079
|
export type PropertyPaymentMethodCreateOrConnectWithoutApplicationsInput = {
|
|
950
1080
|
where: Prisma.PropertyPaymentMethodWhereUniqueInput;
|
|
@@ -978,6 +1108,7 @@ export type PropertyPaymentMethodUpdateWithoutApplicationsInput = {
|
|
|
978
1108
|
documentRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutPaymentMethodNestedInput;
|
|
979
1109
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
980
1110
|
changeRulesTo?: Prisma.DocumentRequirementRuleUpdateManyWithoutToPaymentMethodNestedInput;
|
|
1111
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutPaymentMethodNestedInput;
|
|
981
1112
|
};
|
|
982
1113
|
export type PropertyPaymentMethodUncheckedUpdateWithoutApplicationsInput = {
|
|
983
1114
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -998,6 +1129,7 @@ export type PropertyPaymentMethodUncheckedUpdateWithoutApplicationsInput = {
|
|
|
998
1129
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
999
1130
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
1000
1131
|
changeRulesTo?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutToPaymentMethodNestedInput;
|
|
1132
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1001
1133
|
};
|
|
1002
1134
|
export type PropertyPaymentMethodCreateWithoutChangeRequestsFromInput = {
|
|
1003
1135
|
id?: string;
|
|
@@ -1018,6 +1150,7 @@ export type PropertyPaymentMethodCreateWithoutChangeRequestsFromInput = {
|
|
|
1018
1150
|
documentRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutPaymentMethodInput;
|
|
1019
1151
|
changeRulesFrom?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutFromPaymentMethodInput;
|
|
1020
1152
|
changeRulesTo?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutToPaymentMethodInput;
|
|
1153
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutPaymentMethodInput;
|
|
1021
1154
|
};
|
|
1022
1155
|
export type PropertyPaymentMethodUncheckedCreateWithoutChangeRequestsFromInput = {
|
|
1023
1156
|
id?: string;
|
|
@@ -1038,6 +1171,7 @@ export type PropertyPaymentMethodUncheckedCreateWithoutChangeRequestsFromInput =
|
|
|
1038
1171
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
1039
1172
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutFromPaymentMethodInput;
|
|
1040
1173
|
changeRulesTo?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutToPaymentMethodInput;
|
|
1174
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
1041
1175
|
};
|
|
1042
1176
|
export type PropertyPaymentMethodCreateOrConnectWithoutChangeRequestsFromInput = {
|
|
1043
1177
|
where: Prisma.PropertyPaymentMethodWhereUniqueInput;
|
|
@@ -1062,6 +1196,7 @@ export type PropertyPaymentMethodCreateWithoutChangeRequestsToInput = {
|
|
|
1062
1196
|
documentRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutPaymentMethodInput;
|
|
1063
1197
|
changeRulesFrom?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutFromPaymentMethodInput;
|
|
1064
1198
|
changeRulesTo?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutToPaymentMethodInput;
|
|
1199
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutPaymentMethodInput;
|
|
1065
1200
|
};
|
|
1066
1201
|
export type PropertyPaymentMethodUncheckedCreateWithoutChangeRequestsToInput = {
|
|
1067
1202
|
id?: string;
|
|
@@ -1082,6 +1217,7 @@ export type PropertyPaymentMethodUncheckedCreateWithoutChangeRequestsToInput = {
|
|
|
1082
1217
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
1083
1218
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutFromPaymentMethodInput;
|
|
1084
1219
|
changeRulesTo?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutToPaymentMethodInput;
|
|
1220
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
1085
1221
|
};
|
|
1086
1222
|
export type PropertyPaymentMethodCreateOrConnectWithoutChangeRequestsToInput = {
|
|
1087
1223
|
where: Prisma.PropertyPaymentMethodWhereUniqueInput;
|
|
@@ -1115,6 +1251,7 @@ export type PropertyPaymentMethodUpdateWithoutChangeRequestsFromInput = {
|
|
|
1115
1251
|
documentRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutPaymentMethodNestedInput;
|
|
1116
1252
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
1117
1253
|
changeRulesTo?: Prisma.DocumentRequirementRuleUpdateManyWithoutToPaymentMethodNestedInput;
|
|
1254
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutPaymentMethodNestedInput;
|
|
1118
1255
|
};
|
|
1119
1256
|
export type PropertyPaymentMethodUncheckedUpdateWithoutChangeRequestsFromInput = {
|
|
1120
1257
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -1135,6 +1272,7 @@ export type PropertyPaymentMethodUncheckedUpdateWithoutChangeRequestsFromInput =
|
|
|
1135
1272
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1136
1273
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
1137
1274
|
changeRulesTo?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutToPaymentMethodNestedInput;
|
|
1275
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1138
1276
|
};
|
|
1139
1277
|
export type PropertyPaymentMethodUpsertWithoutChangeRequestsToInput = {
|
|
1140
1278
|
update: Prisma.XOR<Prisma.PropertyPaymentMethodUpdateWithoutChangeRequestsToInput, Prisma.PropertyPaymentMethodUncheckedUpdateWithoutChangeRequestsToInput>;
|
|
@@ -1164,6 +1302,7 @@ export type PropertyPaymentMethodUpdateWithoutChangeRequestsToInput = {
|
|
|
1164
1302
|
documentRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutPaymentMethodNestedInput;
|
|
1165
1303
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
1166
1304
|
changeRulesTo?: Prisma.DocumentRequirementRuleUpdateManyWithoutToPaymentMethodNestedInput;
|
|
1305
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutPaymentMethodNestedInput;
|
|
1167
1306
|
};
|
|
1168
1307
|
export type PropertyPaymentMethodUncheckedUpdateWithoutChangeRequestsToInput = {
|
|
1169
1308
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -1184,6 +1323,7 @@ export type PropertyPaymentMethodUncheckedUpdateWithoutChangeRequestsToInput = {
|
|
|
1184
1323
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1185
1324
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
1186
1325
|
changeRulesTo?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutToPaymentMethodNestedInput;
|
|
1326
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1187
1327
|
};
|
|
1188
1328
|
export type PropertyPaymentMethodCreateWithoutDocumentRulesInput = {
|
|
1189
1329
|
id?: string;
|
|
@@ -1204,6 +1344,7 @@ export type PropertyPaymentMethodCreateWithoutDocumentRulesInput = {
|
|
|
1204
1344
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutToPaymentMethodInput;
|
|
1205
1345
|
changeRulesFrom?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutFromPaymentMethodInput;
|
|
1206
1346
|
changeRulesTo?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutToPaymentMethodInput;
|
|
1347
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutPaymentMethodInput;
|
|
1207
1348
|
};
|
|
1208
1349
|
export type PropertyPaymentMethodUncheckedCreateWithoutDocumentRulesInput = {
|
|
1209
1350
|
id?: string;
|
|
@@ -1224,6 +1365,7 @@ export type PropertyPaymentMethodUncheckedCreateWithoutDocumentRulesInput = {
|
|
|
1224
1365
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutToPaymentMethodInput;
|
|
1225
1366
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutFromPaymentMethodInput;
|
|
1226
1367
|
changeRulesTo?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutToPaymentMethodInput;
|
|
1368
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
1227
1369
|
};
|
|
1228
1370
|
export type PropertyPaymentMethodCreateOrConnectWithoutDocumentRulesInput = {
|
|
1229
1371
|
where: Prisma.PropertyPaymentMethodWhereUniqueInput;
|
|
@@ -1248,6 +1390,7 @@ export type PropertyPaymentMethodCreateWithoutChangeRulesFromInput = {
|
|
|
1248
1390
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutToPaymentMethodInput;
|
|
1249
1391
|
documentRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutPaymentMethodInput;
|
|
1250
1392
|
changeRulesTo?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutToPaymentMethodInput;
|
|
1393
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutPaymentMethodInput;
|
|
1251
1394
|
};
|
|
1252
1395
|
export type PropertyPaymentMethodUncheckedCreateWithoutChangeRulesFromInput = {
|
|
1253
1396
|
id?: string;
|
|
@@ -1268,6 +1411,7 @@ export type PropertyPaymentMethodUncheckedCreateWithoutChangeRulesFromInput = {
|
|
|
1268
1411
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutToPaymentMethodInput;
|
|
1269
1412
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
1270
1413
|
changeRulesTo?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutToPaymentMethodInput;
|
|
1414
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
1271
1415
|
};
|
|
1272
1416
|
export type PropertyPaymentMethodCreateOrConnectWithoutChangeRulesFromInput = {
|
|
1273
1417
|
where: Prisma.PropertyPaymentMethodWhereUniqueInput;
|
|
@@ -1292,6 +1436,7 @@ export type PropertyPaymentMethodCreateWithoutChangeRulesToInput = {
|
|
|
1292
1436
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutToPaymentMethodInput;
|
|
1293
1437
|
documentRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutPaymentMethodInput;
|
|
1294
1438
|
changeRulesFrom?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutFromPaymentMethodInput;
|
|
1439
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementCreateNestedManyWithoutPaymentMethodInput;
|
|
1295
1440
|
};
|
|
1296
1441
|
export type PropertyPaymentMethodUncheckedCreateWithoutChangeRulesToInput = {
|
|
1297
1442
|
id?: string;
|
|
@@ -1312,6 +1457,7 @@ export type PropertyPaymentMethodUncheckedCreateWithoutChangeRulesToInput = {
|
|
|
1312
1457
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutToPaymentMethodInput;
|
|
1313
1458
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
1314
1459
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutFromPaymentMethodInput;
|
|
1460
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedCreateNestedManyWithoutPaymentMethodInput;
|
|
1315
1461
|
};
|
|
1316
1462
|
export type PropertyPaymentMethodCreateOrConnectWithoutChangeRulesToInput = {
|
|
1317
1463
|
where: Prisma.PropertyPaymentMethodWhereUniqueInput;
|
|
@@ -1345,6 +1491,7 @@ export type PropertyPaymentMethodUpdateWithoutDocumentRulesInput = {
|
|
|
1345
1491
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutToPaymentMethodNestedInput;
|
|
1346
1492
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
1347
1493
|
changeRulesTo?: Prisma.DocumentRequirementRuleUpdateManyWithoutToPaymentMethodNestedInput;
|
|
1494
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutPaymentMethodNestedInput;
|
|
1348
1495
|
};
|
|
1349
1496
|
export type PropertyPaymentMethodUncheckedUpdateWithoutDocumentRulesInput = {
|
|
1350
1497
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -1365,6 +1512,7 @@ export type PropertyPaymentMethodUncheckedUpdateWithoutDocumentRulesInput = {
|
|
|
1365
1512
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutToPaymentMethodNestedInput;
|
|
1366
1513
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
1367
1514
|
changeRulesTo?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutToPaymentMethodNestedInput;
|
|
1515
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1368
1516
|
};
|
|
1369
1517
|
export type PropertyPaymentMethodUpsertWithoutChangeRulesFromInput = {
|
|
1370
1518
|
update: Prisma.XOR<Prisma.PropertyPaymentMethodUpdateWithoutChangeRulesFromInput, Prisma.PropertyPaymentMethodUncheckedUpdateWithoutChangeRulesFromInput>;
|
|
@@ -1394,6 +1542,7 @@ export type PropertyPaymentMethodUpdateWithoutChangeRulesFromInput = {
|
|
|
1394
1542
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutToPaymentMethodNestedInput;
|
|
1395
1543
|
documentRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutPaymentMethodNestedInput;
|
|
1396
1544
|
changeRulesTo?: Prisma.DocumentRequirementRuleUpdateManyWithoutToPaymentMethodNestedInput;
|
|
1545
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutPaymentMethodNestedInput;
|
|
1397
1546
|
};
|
|
1398
1547
|
export type PropertyPaymentMethodUncheckedUpdateWithoutChangeRulesFromInput = {
|
|
1399
1548
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -1414,6 +1563,7 @@ export type PropertyPaymentMethodUncheckedUpdateWithoutChangeRulesFromInput = {
|
|
|
1414
1563
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutToPaymentMethodNestedInput;
|
|
1415
1564
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1416
1565
|
changeRulesTo?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutToPaymentMethodNestedInput;
|
|
1566
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1417
1567
|
};
|
|
1418
1568
|
export type PropertyPaymentMethodUpsertWithoutChangeRulesToInput = {
|
|
1419
1569
|
update: Prisma.XOR<Prisma.PropertyPaymentMethodUpdateWithoutChangeRulesToInput, Prisma.PropertyPaymentMethodUncheckedUpdateWithoutChangeRulesToInput>;
|
|
@@ -1443,6 +1593,7 @@ export type PropertyPaymentMethodUpdateWithoutChangeRulesToInput = {
|
|
|
1443
1593
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutToPaymentMethodNestedInput;
|
|
1444
1594
|
documentRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutPaymentMethodNestedInput;
|
|
1445
1595
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
1596
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutPaymentMethodNestedInput;
|
|
1446
1597
|
};
|
|
1447
1598
|
export type PropertyPaymentMethodUncheckedUpdateWithoutChangeRulesToInput = {
|
|
1448
1599
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -1463,6 +1614,7 @@ export type PropertyPaymentMethodUncheckedUpdateWithoutChangeRulesToInput = {
|
|
|
1463
1614
|
changeRequestsTo?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutToPaymentMethodNestedInput;
|
|
1464
1615
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1465
1616
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
1617
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1466
1618
|
};
|
|
1467
1619
|
export type PropertyPaymentMethodCreateManyTenantInput = {
|
|
1468
1620
|
id?: string;
|
|
@@ -1495,6 +1647,7 @@ export type PropertyPaymentMethodUpdateWithoutTenantInput = {
|
|
|
1495
1647
|
documentRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutPaymentMethodNestedInput;
|
|
1496
1648
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
1497
1649
|
changeRulesTo?: Prisma.DocumentRequirementRuleUpdateManyWithoutToPaymentMethodNestedInput;
|
|
1650
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUpdateManyWithoutPaymentMethodNestedInput;
|
|
1498
1651
|
};
|
|
1499
1652
|
export type PropertyPaymentMethodUncheckedUpdateWithoutTenantInput = {
|
|
1500
1653
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -1515,6 +1668,7 @@ export type PropertyPaymentMethodUncheckedUpdateWithoutTenantInput = {
|
|
|
1515
1668
|
documentRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1516
1669
|
changeRulesFrom?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutFromPaymentMethodNestedInput;
|
|
1517
1670
|
changeRulesTo?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutToPaymentMethodNestedInput;
|
|
1671
|
+
bankDocumentRequirements?: Prisma.BankDocumentRequirementUncheckedUpdateManyWithoutPaymentMethodNestedInput;
|
|
1518
1672
|
};
|
|
1519
1673
|
export type PropertyPaymentMethodUncheckedUpdateManyWithoutTenantInput = {
|
|
1520
1674
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -1540,6 +1694,7 @@ export type PropertyPaymentMethodCountOutputType = {
|
|
|
1540
1694
|
documentRules: number;
|
|
1541
1695
|
changeRulesFrom: number;
|
|
1542
1696
|
changeRulesTo: number;
|
|
1697
|
+
bankDocumentRequirements: number;
|
|
1543
1698
|
};
|
|
1544
1699
|
export type PropertyPaymentMethodCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1545
1700
|
properties?: boolean | PropertyPaymentMethodCountOutputTypeCountPropertiesArgs;
|
|
@@ -1550,6 +1705,7 @@ export type PropertyPaymentMethodCountOutputTypeSelect<ExtArgs extends runtime.T
|
|
|
1550
1705
|
documentRules?: boolean | PropertyPaymentMethodCountOutputTypeCountDocumentRulesArgs;
|
|
1551
1706
|
changeRulesFrom?: boolean | PropertyPaymentMethodCountOutputTypeCountChangeRulesFromArgs;
|
|
1552
1707
|
changeRulesTo?: boolean | PropertyPaymentMethodCountOutputTypeCountChangeRulesToArgs;
|
|
1708
|
+
bankDocumentRequirements?: boolean | PropertyPaymentMethodCountOutputTypeCountBankDocumentRequirementsArgs;
|
|
1553
1709
|
};
|
|
1554
1710
|
/**
|
|
1555
1711
|
* PropertyPaymentMethodCountOutputType without action
|
|
@@ -1608,6 +1764,12 @@ export type PropertyPaymentMethodCountOutputTypeCountChangeRulesFromArgs<ExtArgs
|
|
|
1608
1764
|
export type PropertyPaymentMethodCountOutputTypeCountChangeRulesToArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1609
1765
|
where?: Prisma.DocumentRequirementRuleWhereInput;
|
|
1610
1766
|
};
|
|
1767
|
+
/**
|
|
1768
|
+
* PropertyPaymentMethodCountOutputType without action
|
|
1769
|
+
*/
|
|
1770
|
+
export type PropertyPaymentMethodCountOutputTypeCountBankDocumentRequirementsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1771
|
+
where?: Prisma.BankDocumentRequirementWhereInput;
|
|
1772
|
+
};
|
|
1611
1773
|
export type PropertyPaymentMethodSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
1612
1774
|
id?: boolean;
|
|
1613
1775
|
tenantId?: boolean;
|
|
@@ -1629,6 +1791,7 @@ export type PropertyPaymentMethodSelect<ExtArgs extends runtime.Types.Extensions
|
|
|
1629
1791
|
documentRules?: boolean | Prisma.PropertyPaymentMethod$documentRulesArgs<ExtArgs>;
|
|
1630
1792
|
changeRulesFrom?: boolean | Prisma.PropertyPaymentMethod$changeRulesFromArgs<ExtArgs>;
|
|
1631
1793
|
changeRulesTo?: boolean | Prisma.PropertyPaymentMethod$changeRulesToArgs<ExtArgs>;
|
|
1794
|
+
bankDocumentRequirements?: boolean | Prisma.PropertyPaymentMethod$bankDocumentRequirementsArgs<ExtArgs>;
|
|
1632
1795
|
_count?: boolean | Prisma.PropertyPaymentMethodCountOutputTypeDefaultArgs<ExtArgs>;
|
|
1633
1796
|
}, ExtArgs["result"]["propertyPaymentMethod"]>;
|
|
1634
1797
|
export type PropertyPaymentMethodSelectScalar = {
|
|
@@ -1655,6 +1818,7 @@ export type PropertyPaymentMethodInclude<ExtArgs extends runtime.Types.Extension
|
|
|
1655
1818
|
documentRules?: boolean | Prisma.PropertyPaymentMethod$documentRulesArgs<ExtArgs>;
|
|
1656
1819
|
changeRulesFrom?: boolean | Prisma.PropertyPaymentMethod$changeRulesFromArgs<ExtArgs>;
|
|
1657
1820
|
changeRulesTo?: boolean | Prisma.PropertyPaymentMethod$changeRulesToArgs<ExtArgs>;
|
|
1821
|
+
bankDocumentRequirements?: boolean | Prisma.PropertyPaymentMethod$bankDocumentRequirementsArgs<ExtArgs>;
|
|
1658
1822
|
_count?: boolean | Prisma.PropertyPaymentMethodCountOutputTypeDefaultArgs<ExtArgs>;
|
|
1659
1823
|
};
|
|
1660
1824
|
export type $PropertyPaymentMethodPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
@@ -1669,6 +1833,7 @@ export type $PropertyPaymentMethodPayload<ExtArgs extends runtime.Types.Extensio
|
|
|
1669
1833
|
documentRules: Prisma.$DocumentRequirementRulePayload<ExtArgs>[];
|
|
1670
1834
|
changeRulesFrom: Prisma.$DocumentRequirementRulePayload<ExtArgs>[];
|
|
1671
1835
|
changeRulesTo: Prisma.$DocumentRequirementRulePayload<ExtArgs>[];
|
|
1836
|
+
bankDocumentRequirements: Prisma.$BankDocumentRequirementPayload<ExtArgs>[];
|
|
1672
1837
|
};
|
|
1673
1838
|
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
1674
1839
|
id: string;
|
|
@@ -1968,6 +2133,7 @@ export interface Prisma__PropertyPaymentMethodClient<T, Null = never, ExtArgs ex
|
|
|
1968
2133
|
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>;
|
|
1969
2134
|
changeRulesFrom<T extends Prisma.PropertyPaymentMethod$changeRulesFromArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.PropertyPaymentMethod$changeRulesFromArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$DocumentRequirementRulePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1970
2135
|
changeRulesTo<T extends Prisma.PropertyPaymentMethod$changeRulesToArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.PropertyPaymentMethod$changeRulesToArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$DocumentRequirementRulePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
2136
|
+
bankDocumentRequirements<T extends Prisma.PropertyPaymentMethod$bankDocumentRequirementsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.PropertyPaymentMethod$bankDocumentRequirementsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$BankDocumentRequirementPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1971
2137
|
/**
|
|
1972
2138
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
1973
2139
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -2515,6 +2681,29 @@ export type PropertyPaymentMethod$changeRulesToArgs<ExtArgs extends runtime.Type
|
|
|
2515
2681
|
skip?: number;
|
|
2516
2682
|
distinct?: Prisma.DocumentRequirementRuleScalarFieldEnum | Prisma.DocumentRequirementRuleScalarFieldEnum[];
|
|
2517
2683
|
};
|
|
2684
|
+
/**
|
|
2685
|
+
* PropertyPaymentMethod.bankDocumentRequirements
|
|
2686
|
+
*/
|
|
2687
|
+
export type PropertyPaymentMethod$bankDocumentRequirementsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
2688
|
+
/**
|
|
2689
|
+
* Select specific fields to fetch from the BankDocumentRequirement
|
|
2690
|
+
*/
|
|
2691
|
+
select?: Prisma.BankDocumentRequirementSelect<ExtArgs> | null;
|
|
2692
|
+
/**
|
|
2693
|
+
* Omit specific fields from the BankDocumentRequirement
|
|
2694
|
+
*/
|
|
2695
|
+
omit?: Prisma.BankDocumentRequirementOmit<ExtArgs> | null;
|
|
2696
|
+
/**
|
|
2697
|
+
* Choose, which related nodes to fetch as well
|
|
2698
|
+
*/
|
|
2699
|
+
include?: Prisma.BankDocumentRequirementInclude<ExtArgs> | null;
|
|
2700
|
+
where?: Prisma.BankDocumentRequirementWhereInput;
|
|
2701
|
+
orderBy?: Prisma.BankDocumentRequirementOrderByWithRelationInput | Prisma.BankDocumentRequirementOrderByWithRelationInput[];
|
|
2702
|
+
cursor?: Prisma.BankDocumentRequirementWhereUniqueInput;
|
|
2703
|
+
take?: number;
|
|
2704
|
+
skip?: number;
|
|
2705
|
+
distinct?: Prisma.BankDocumentRequirementScalarFieldEnum | Prisma.BankDocumentRequirementScalarFieldEnum[];
|
|
2706
|
+
};
|
|
2518
2707
|
/**
|
|
2519
2708
|
* PropertyPaymentMethod without action
|
|
2520
2709
|
*/
|
|
@@ -765,13 +765,6 @@ export type PropertyVariantUncheckedUpdateManyWithoutPropertyNestedInput = {
|
|
|
765
765
|
updateMany?: Prisma.PropertyVariantUpdateManyWithWhereWithoutPropertyInput | Prisma.PropertyVariantUpdateManyWithWhereWithoutPropertyInput[];
|
|
766
766
|
deleteMany?: Prisma.PropertyVariantScalarWhereInput | Prisma.PropertyVariantScalarWhereInput[];
|
|
767
767
|
};
|
|
768
|
-
export type NullableIntFieldUpdateOperationsInput = {
|
|
769
|
-
set?: number | null;
|
|
770
|
-
increment?: number;
|
|
771
|
-
decrement?: number;
|
|
772
|
-
multiply?: number;
|
|
773
|
-
divide?: number;
|
|
774
|
-
};
|
|
775
768
|
export type PropertyVariantCreateNestedOneWithoutAmenitiesInput = {
|
|
776
769
|
create?: Prisma.XOR<Prisma.PropertyVariantCreateWithoutAmenitiesInput, Prisma.PropertyVariantUncheckedCreateWithoutAmenitiesInput>;
|
|
777
770
|
connectOrCreate?: Prisma.PropertyVariantCreateOrConnectWithoutAmenitiesInput;
|