@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
|
@@ -62,23 +62,23 @@ export declare const ModelName: {
|
|
|
62
62
|
readonly StepEventAttachment: "StepEventAttachment";
|
|
63
63
|
readonly PaymentMethodPhaseDocument: "PaymentMethodPhaseDocument";
|
|
64
64
|
readonly PaymentMethodPhaseField: "PaymentMethodPhaseField";
|
|
65
|
-
readonly
|
|
66
|
-
readonly
|
|
67
|
-
readonly
|
|
65
|
+
readonly Application: "Application";
|
|
66
|
+
readonly ApplicationRefund: "ApplicationRefund";
|
|
67
|
+
readonly ApplicationPhase: "ApplicationPhase";
|
|
68
68
|
readonly QuestionnairePhase: "QuestionnairePhase";
|
|
69
69
|
readonly DocumentationPhase: "DocumentationPhase";
|
|
70
70
|
readonly PaymentPhase: "PaymentPhase";
|
|
71
71
|
readonly QuestionnaireField: "QuestionnaireField";
|
|
72
|
-
readonly
|
|
72
|
+
readonly ApplicationEvent: "ApplicationEvent";
|
|
73
73
|
readonly DocumentationStep: "DocumentationStep";
|
|
74
74
|
readonly DocumentationStepDocument: "DocumentationStepDocument";
|
|
75
75
|
readonly DocumentationStepApproval: "DocumentationStepApproval";
|
|
76
|
-
readonly
|
|
77
|
-
readonly
|
|
78
|
-
readonly
|
|
76
|
+
readonly PaymentInstallment: "PaymentInstallment";
|
|
77
|
+
readonly ApplicationPayment: "ApplicationPayment";
|
|
78
|
+
readonly ApplicationDocument: "ApplicationDocument";
|
|
79
79
|
readonly DocumentTemplate: "DocumentTemplate";
|
|
80
80
|
readonly OfferLetter: "OfferLetter";
|
|
81
|
-
readonly
|
|
81
|
+
readonly ApplicationTermination: "ApplicationTermination";
|
|
82
82
|
readonly PaymentMethodChangeRequest: "PaymentMethodChangeRequest";
|
|
83
83
|
readonly DocumentRequirementRule: "DocumentRequirementRule";
|
|
84
84
|
readonly EventChannel: "EventChannel";
|
|
@@ -412,6 +412,11 @@ export declare const PaymentPlanScalarFieldEnum: {
|
|
|
412
412
|
readonly numberOfInstallments: "numberOfInstallments";
|
|
413
413
|
readonly calculateInterestDaily: "calculateInterestDaily";
|
|
414
414
|
readonly gracePeriodDays: "gracePeriodDays";
|
|
415
|
+
readonly allowFlexibleTerm: "allowFlexibleTerm";
|
|
416
|
+
readonly minTermMonths: "minTermMonths";
|
|
417
|
+
readonly maxTermMonths: "maxTermMonths";
|
|
418
|
+
readonly termStepMonths: "termStepMonths";
|
|
419
|
+
readonly maxAgeAtMaturity: "maxAgeAtMaturity";
|
|
415
420
|
readonly collectFunds: "collectFunds";
|
|
416
421
|
readonly createdAt: "createdAt";
|
|
417
422
|
readonly updatedAt: "updatedAt";
|
|
@@ -522,17 +527,17 @@ export declare const PaymentMethodPhaseFieldScalarFieldEnum: {
|
|
|
522
527
|
readonly updatedAt: "updatedAt";
|
|
523
528
|
};
|
|
524
529
|
export type PaymentMethodPhaseFieldScalarFieldEnum = (typeof PaymentMethodPhaseFieldScalarFieldEnum)[keyof typeof PaymentMethodPhaseFieldScalarFieldEnum];
|
|
525
|
-
export declare const
|
|
530
|
+
export declare const ApplicationScalarFieldEnum: {
|
|
526
531
|
readonly id: "id";
|
|
527
532
|
readonly tenantId: "tenantId";
|
|
528
533
|
readonly propertyUnitId: "propertyUnitId";
|
|
529
534
|
readonly buyerId: "buyerId";
|
|
530
535
|
readonly sellerId: "sellerId";
|
|
531
536
|
readonly paymentMethodId: "paymentMethodId";
|
|
532
|
-
readonly
|
|
537
|
+
readonly applicationNumber: "applicationNumber";
|
|
533
538
|
readonly title: "title";
|
|
534
539
|
readonly description: "description";
|
|
535
|
-
readonly
|
|
540
|
+
readonly applicationType: "applicationType";
|
|
536
541
|
readonly totalAmount: "totalAmount";
|
|
537
542
|
readonly status: "status";
|
|
538
543
|
readonly currentPhaseId: "currentPhaseId";
|
|
@@ -546,11 +551,11 @@ export declare const ContractScalarFieldEnum: {
|
|
|
546
551
|
readonly updatedAt: "updatedAt";
|
|
547
552
|
readonly transferredFromId: "transferredFromId";
|
|
548
553
|
};
|
|
549
|
-
export type
|
|
550
|
-
export declare const
|
|
554
|
+
export type ApplicationScalarFieldEnum = (typeof ApplicationScalarFieldEnum)[keyof typeof ApplicationScalarFieldEnum];
|
|
555
|
+
export declare const ApplicationRefundScalarFieldEnum: {
|
|
551
556
|
readonly id: "id";
|
|
552
557
|
readonly tenantId: "tenantId";
|
|
553
|
-
readonly
|
|
558
|
+
readonly applicationId: "applicationId";
|
|
554
559
|
readonly amount: "amount";
|
|
555
560
|
readonly reason: "reason";
|
|
556
561
|
readonly status: "status";
|
|
@@ -572,10 +577,10 @@ export declare const ContractRefundScalarFieldEnum: {
|
|
|
572
577
|
readonly createdAt: "createdAt";
|
|
573
578
|
readonly updatedAt: "updatedAt";
|
|
574
579
|
};
|
|
575
|
-
export type
|
|
576
|
-
export declare const
|
|
580
|
+
export type ApplicationRefundScalarFieldEnum = (typeof ApplicationRefundScalarFieldEnum)[keyof typeof ApplicationRefundScalarFieldEnum];
|
|
581
|
+
export declare const ApplicationPhaseScalarFieldEnum: {
|
|
577
582
|
readonly id: "id";
|
|
578
|
-
readonly
|
|
583
|
+
readonly applicationId: "applicationId";
|
|
579
584
|
readonly name: "name";
|
|
580
585
|
readonly description: "description";
|
|
581
586
|
readonly phaseCategory: "phaseCategory";
|
|
@@ -591,7 +596,7 @@ export declare const ContractPhaseScalarFieldEnum: {
|
|
|
591
596
|
readonly createdAt: "createdAt";
|
|
592
597
|
readonly updatedAt: "updatedAt";
|
|
593
598
|
};
|
|
594
|
-
export type
|
|
599
|
+
export type ApplicationPhaseScalarFieldEnum = (typeof ApplicationPhaseScalarFieldEnum)[keyof typeof ApplicationPhaseScalarFieldEnum];
|
|
595
600
|
export declare const QuestionnairePhaseScalarFieldEnum: {
|
|
596
601
|
readonly id: "id";
|
|
597
602
|
readonly phaseId: "phaseId";
|
|
@@ -629,6 +634,8 @@ export declare const PaymentPhaseScalarFieldEnum: {
|
|
|
629
634
|
readonly totalAmount: "totalAmount";
|
|
630
635
|
readonly paidAmount: "paidAmount";
|
|
631
636
|
readonly interestRate: "interestRate";
|
|
637
|
+
readonly selectedTermMonths: "selectedTermMonths";
|
|
638
|
+
readonly numberOfInstallments: "numberOfInstallments";
|
|
632
639
|
readonly collectFunds: "collectFunds";
|
|
633
640
|
readonly minimumCompletionPercentage: "minimumCompletionPercentage";
|
|
634
641
|
readonly paymentPlanSnapshot: "paymentPlanSnapshot";
|
|
@@ -657,9 +664,9 @@ export declare const QuestionnaireFieldScalarFieldEnum: {
|
|
|
657
664
|
readonly updatedAt: "updatedAt";
|
|
658
665
|
};
|
|
659
666
|
export type QuestionnaireFieldScalarFieldEnum = (typeof QuestionnaireFieldScalarFieldEnum)[keyof typeof QuestionnaireFieldScalarFieldEnum];
|
|
660
|
-
export declare const
|
|
667
|
+
export declare const ApplicationEventScalarFieldEnum: {
|
|
661
668
|
readonly id: "id";
|
|
662
|
-
readonly
|
|
669
|
+
readonly applicationId: "applicationId";
|
|
663
670
|
readonly eventType: "eventType";
|
|
664
671
|
readonly eventGroup: "eventGroup";
|
|
665
672
|
readonly fromState: "fromState";
|
|
@@ -670,7 +677,7 @@ export declare const ContractEventScalarFieldEnum: {
|
|
|
670
677
|
readonly actorType: "actorType";
|
|
671
678
|
readonly occurredAt: "occurredAt";
|
|
672
679
|
};
|
|
673
|
-
export type
|
|
680
|
+
export type ApplicationEventScalarFieldEnum = (typeof ApplicationEventScalarFieldEnum)[keyof typeof ApplicationEventScalarFieldEnum];
|
|
674
681
|
export declare const DocumentationStepScalarFieldEnum: {
|
|
675
682
|
readonly id: "id";
|
|
676
683
|
readonly documentationPhaseId: "documentationPhaseId";
|
|
@@ -708,7 +715,7 @@ export declare const DocumentationStepApprovalScalarFieldEnum: {
|
|
|
708
715
|
readonly createdAt: "createdAt";
|
|
709
716
|
};
|
|
710
717
|
export type DocumentationStepApprovalScalarFieldEnum = (typeof DocumentationStepApprovalScalarFieldEnum)[keyof typeof DocumentationStepApprovalScalarFieldEnum];
|
|
711
|
-
export declare const
|
|
718
|
+
export declare const PaymentInstallmentScalarFieldEnum: {
|
|
712
719
|
readonly id: "id";
|
|
713
720
|
readonly paymentPhaseId: "paymentPhaseId";
|
|
714
721
|
readonly installmentNumber: "installmentNumber";
|
|
@@ -726,10 +733,10 @@ export declare const ContractInstallmentScalarFieldEnum: {
|
|
|
726
733
|
readonly createdAt: "createdAt";
|
|
727
734
|
readonly updatedAt: "updatedAt";
|
|
728
735
|
};
|
|
729
|
-
export type
|
|
730
|
-
export declare const
|
|
736
|
+
export type PaymentInstallmentScalarFieldEnum = (typeof PaymentInstallmentScalarFieldEnum)[keyof typeof PaymentInstallmentScalarFieldEnum];
|
|
737
|
+
export declare const ApplicationPaymentScalarFieldEnum: {
|
|
731
738
|
readonly id: "id";
|
|
732
|
-
readonly
|
|
739
|
+
readonly applicationId: "applicationId";
|
|
733
740
|
readonly phaseId: "phaseId";
|
|
734
741
|
readonly installmentId: "installmentId";
|
|
735
742
|
readonly payerId: "payerId";
|
|
@@ -745,10 +752,10 @@ export declare const ContractPaymentScalarFieldEnum: {
|
|
|
745
752
|
readonly createdAt: "createdAt";
|
|
746
753
|
readonly updatedAt: "updatedAt";
|
|
747
754
|
};
|
|
748
|
-
export type
|
|
749
|
-
export declare const
|
|
755
|
+
export type ApplicationPaymentScalarFieldEnum = (typeof ApplicationPaymentScalarFieldEnum)[keyof typeof ApplicationPaymentScalarFieldEnum];
|
|
756
|
+
export declare const ApplicationDocumentScalarFieldEnum: {
|
|
750
757
|
readonly id: "id";
|
|
751
|
-
readonly
|
|
758
|
+
readonly applicationId: "applicationId";
|
|
752
759
|
readonly phaseId: "phaseId";
|
|
753
760
|
readonly stepId: "stepId";
|
|
754
761
|
readonly name: "name";
|
|
@@ -759,7 +766,7 @@ export declare const ContractDocumentScalarFieldEnum: {
|
|
|
759
766
|
readonly createdAt: "createdAt";
|
|
760
767
|
readonly updatedAt: "updatedAt";
|
|
761
768
|
};
|
|
762
|
-
export type
|
|
769
|
+
export type ApplicationDocumentScalarFieldEnum = (typeof ApplicationDocumentScalarFieldEnum)[keyof typeof ApplicationDocumentScalarFieldEnum];
|
|
763
770
|
export declare const DocumentTemplateScalarFieldEnum: {
|
|
764
771
|
readonly id: "id";
|
|
765
772
|
readonly tenantId: "tenantId";
|
|
@@ -779,7 +786,7 @@ export type DocumentTemplateScalarFieldEnum = (typeof DocumentTemplateScalarFiel
|
|
|
779
786
|
export declare const OfferLetterScalarFieldEnum: {
|
|
780
787
|
readonly id: "id";
|
|
781
788
|
readonly tenantId: "tenantId";
|
|
782
|
-
readonly
|
|
789
|
+
readonly applicationId: "applicationId";
|
|
783
790
|
readonly templateId: "templateId";
|
|
784
791
|
readonly letterNumber: "letterNumber";
|
|
785
792
|
readonly type: "type";
|
|
@@ -803,9 +810,9 @@ export declare const OfferLetterScalarFieldEnum: {
|
|
|
803
810
|
readonly updatedAt: "updatedAt";
|
|
804
811
|
};
|
|
805
812
|
export type OfferLetterScalarFieldEnum = (typeof OfferLetterScalarFieldEnum)[keyof typeof OfferLetterScalarFieldEnum];
|
|
806
|
-
export declare const
|
|
813
|
+
export declare const ApplicationTerminationScalarFieldEnum: {
|
|
807
814
|
readonly id: "id";
|
|
808
|
-
readonly
|
|
815
|
+
readonly applicationId: "applicationId";
|
|
809
816
|
readonly tenantId: "tenantId";
|
|
810
817
|
readonly requestNumber: "requestNumber";
|
|
811
818
|
readonly initiatedBy: "initiatedBy";
|
|
@@ -820,8 +827,8 @@ export declare const ContractTerminationScalarFieldEnum: {
|
|
|
820
827
|
readonly reviewedAt: "reviewedAt";
|
|
821
828
|
readonly reviewNotes: "reviewNotes";
|
|
822
829
|
readonly rejectionReason: "rejectionReason";
|
|
823
|
-
readonly
|
|
824
|
-
readonly
|
|
830
|
+
readonly applicationSnapshot: "applicationSnapshot";
|
|
831
|
+
readonly totalApplicationAmount: "totalApplicationAmount";
|
|
825
832
|
readonly totalPaidToDate: "totalPaidToDate";
|
|
826
833
|
readonly outstandingBalance: "outstandingBalance";
|
|
827
834
|
readonly refundableAmount: "refundableAmount";
|
|
@@ -849,11 +856,11 @@ export declare const ContractTerminationScalarFieldEnum: {
|
|
|
849
856
|
readonly createdAt: "createdAt";
|
|
850
857
|
readonly updatedAt: "updatedAt";
|
|
851
858
|
};
|
|
852
|
-
export type
|
|
859
|
+
export type ApplicationTerminationScalarFieldEnum = (typeof ApplicationTerminationScalarFieldEnum)[keyof typeof ApplicationTerminationScalarFieldEnum];
|
|
853
860
|
export declare const PaymentMethodChangeRequestScalarFieldEnum: {
|
|
854
861
|
readonly id: "id";
|
|
855
862
|
readonly tenantId: "tenantId";
|
|
856
|
-
readonly
|
|
863
|
+
readonly applicationId: "applicationId";
|
|
857
864
|
readonly fromPaymentMethodId: "fromPaymentMethodId";
|
|
858
865
|
readonly toPaymentMethodId: "toPaymentMethodId";
|
|
859
866
|
readonly requestorId: "requestorId";
|
|
@@ -993,7 +1000,7 @@ export type DomainEventScalarFieldEnum = (typeof DomainEventScalarFieldEnum)[key
|
|
|
993
1000
|
export declare const PropertyTransferRequestScalarFieldEnum: {
|
|
994
1001
|
readonly id: "id";
|
|
995
1002
|
readonly tenantId: "tenantId";
|
|
996
|
-
readonly
|
|
1003
|
+
readonly sourceApplicationId: "sourceApplicationId";
|
|
997
1004
|
readonly targetPropertyUnitId: "targetPropertyUnitId";
|
|
998
1005
|
readonly requestedById: "requestedById";
|
|
999
1006
|
readonly reviewedById: "reviewedById";
|
|
@@ -1007,7 +1014,7 @@ export declare const PropertyTransferRequestScalarFieldEnum: {
|
|
|
1007
1014
|
readonly refundedAmount: "refundedAmount";
|
|
1008
1015
|
readonly refundTransactionId: "refundTransactionId";
|
|
1009
1016
|
readonly refundedAt: "refundedAt";
|
|
1010
|
-
readonly
|
|
1017
|
+
readonly targetApplicationId: "targetApplicationId";
|
|
1011
1018
|
readonly createdAt: "createdAt";
|
|
1012
1019
|
readonly reviewedAt: "reviewedAt";
|
|
1013
1020
|
readonly completedAt: "completedAt";
|
|
@@ -1335,25 +1342,25 @@ export declare const PaymentMethodPhaseFieldOrderByRelevanceFieldEnum: {
|
|
|
1335
1342
|
readonly placeholder: "placeholder";
|
|
1336
1343
|
};
|
|
1337
1344
|
export type PaymentMethodPhaseFieldOrderByRelevanceFieldEnum = (typeof PaymentMethodPhaseFieldOrderByRelevanceFieldEnum)[keyof typeof PaymentMethodPhaseFieldOrderByRelevanceFieldEnum];
|
|
1338
|
-
export declare const
|
|
1345
|
+
export declare const ApplicationOrderByRelevanceFieldEnum: {
|
|
1339
1346
|
readonly id: "id";
|
|
1340
1347
|
readonly tenantId: "tenantId";
|
|
1341
1348
|
readonly propertyUnitId: "propertyUnitId";
|
|
1342
1349
|
readonly buyerId: "buyerId";
|
|
1343
1350
|
readonly sellerId: "sellerId";
|
|
1344
1351
|
readonly paymentMethodId: "paymentMethodId";
|
|
1345
|
-
readonly
|
|
1352
|
+
readonly applicationNumber: "applicationNumber";
|
|
1346
1353
|
readonly title: "title";
|
|
1347
1354
|
readonly description: "description";
|
|
1348
|
-
readonly
|
|
1355
|
+
readonly applicationType: "applicationType";
|
|
1349
1356
|
readonly currentPhaseId: "currentPhaseId";
|
|
1350
1357
|
readonly transferredFromId: "transferredFromId";
|
|
1351
1358
|
};
|
|
1352
|
-
export type
|
|
1353
|
-
export declare const
|
|
1359
|
+
export type ApplicationOrderByRelevanceFieldEnum = (typeof ApplicationOrderByRelevanceFieldEnum)[keyof typeof ApplicationOrderByRelevanceFieldEnum];
|
|
1360
|
+
export declare const ApplicationRefundOrderByRelevanceFieldEnum: {
|
|
1354
1361
|
readonly id: "id";
|
|
1355
1362
|
readonly tenantId: "tenantId";
|
|
1356
|
-
readonly
|
|
1363
|
+
readonly applicationId: "applicationId";
|
|
1357
1364
|
readonly reason: "reason";
|
|
1358
1365
|
readonly requestedById: "requestedById";
|
|
1359
1366
|
readonly approvedById: "approvedById";
|
|
@@ -1367,14 +1374,14 @@ export declare const ContractRefundOrderByRelevanceFieldEnum: {
|
|
|
1367
1374
|
readonly rejectionNotes: "rejectionNotes";
|
|
1368
1375
|
readonly processingNotes: "processingNotes";
|
|
1369
1376
|
};
|
|
1370
|
-
export type
|
|
1371
|
-
export declare const
|
|
1377
|
+
export type ApplicationRefundOrderByRelevanceFieldEnum = (typeof ApplicationRefundOrderByRelevanceFieldEnum)[keyof typeof ApplicationRefundOrderByRelevanceFieldEnum];
|
|
1378
|
+
export declare const ApplicationPhaseOrderByRelevanceFieldEnum: {
|
|
1372
1379
|
readonly id: "id";
|
|
1373
|
-
readonly
|
|
1380
|
+
readonly applicationId: "applicationId";
|
|
1374
1381
|
readonly name: "name";
|
|
1375
1382
|
readonly description: "description";
|
|
1376
1383
|
};
|
|
1377
|
-
export type
|
|
1384
|
+
export type ApplicationPhaseOrderByRelevanceFieldEnum = (typeof ApplicationPhaseOrderByRelevanceFieldEnum)[keyof typeof ApplicationPhaseOrderByRelevanceFieldEnum];
|
|
1378
1385
|
export declare const QuestionnairePhaseOrderByRelevanceFieldEnum: {
|
|
1379
1386
|
readonly id: "id";
|
|
1380
1387
|
readonly phaseId: "phaseId";
|
|
@@ -1403,15 +1410,15 @@ export declare const QuestionnaireFieldOrderByRelevanceFieldEnum: {
|
|
|
1403
1410
|
readonly placeholder: "placeholder";
|
|
1404
1411
|
};
|
|
1405
1412
|
export type QuestionnaireFieldOrderByRelevanceFieldEnum = (typeof QuestionnaireFieldOrderByRelevanceFieldEnum)[keyof typeof QuestionnaireFieldOrderByRelevanceFieldEnum];
|
|
1406
|
-
export declare const
|
|
1413
|
+
export declare const ApplicationEventOrderByRelevanceFieldEnum: {
|
|
1407
1414
|
readonly id: "id";
|
|
1408
|
-
readonly
|
|
1415
|
+
readonly applicationId: "applicationId";
|
|
1409
1416
|
readonly fromState: "fromState";
|
|
1410
1417
|
readonly toState: "toState";
|
|
1411
1418
|
readonly trigger: "trigger";
|
|
1412
1419
|
readonly actorId: "actorId";
|
|
1413
1420
|
};
|
|
1414
|
-
export type
|
|
1421
|
+
export type ApplicationEventOrderByRelevanceFieldEnum = (typeof ApplicationEventOrderByRelevanceFieldEnum)[keyof typeof ApplicationEventOrderByRelevanceFieldEnum];
|
|
1415
1422
|
export declare const DocumentationStepOrderByRelevanceFieldEnum: {
|
|
1416
1423
|
readonly id: "id";
|
|
1417
1424
|
readonly documentationPhaseId: "documentationPhaseId";
|
|
@@ -1434,14 +1441,14 @@ export declare const DocumentationStepApprovalOrderByRelevanceFieldEnum: {
|
|
|
1434
1441
|
readonly comment: "comment";
|
|
1435
1442
|
};
|
|
1436
1443
|
export type DocumentationStepApprovalOrderByRelevanceFieldEnum = (typeof DocumentationStepApprovalOrderByRelevanceFieldEnum)[keyof typeof DocumentationStepApprovalOrderByRelevanceFieldEnum];
|
|
1437
|
-
export declare const
|
|
1444
|
+
export declare const PaymentInstallmentOrderByRelevanceFieldEnum: {
|
|
1438
1445
|
readonly id: "id";
|
|
1439
1446
|
readonly paymentPhaseId: "paymentPhaseId";
|
|
1440
1447
|
};
|
|
1441
|
-
export type
|
|
1442
|
-
export declare const
|
|
1448
|
+
export type PaymentInstallmentOrderByRelevanceFieldEnum = (typeof PaymentInstallmentOrderByRelevanceFieldEnum)[keyof typeof PaymentInstallmentOrderByRelevanceFieldEnum];
|
|
1449
|
+
export declare const ApplicationPaymentOrderByRelevanceFieldEnum: {
|
|
1443
1450
|
readonly id: "id";
|
|
1444
|
-
readonly
|
|
1451
|
+
readonly applicationId: "applicationId";
|
|
1445
1452
|
readonly phaseId: "phaseId";
|
|
1446
1453
|
readonly installmentId: "installmentId";
|
|
1447
1454
|
readonly payerId: "payerId";
|
|
@@ -1449,10 +1456,10 @@ export declare const ContractPaymentOrderByRelevanceFieldEnum: {
|
|
|
1449
1456
|
readonly reference: "reference";
|
|
1450
1457
|
readonly gatewayResponse: "gatewayResponse";
|
|
1451
1458
|
};
|
|
1452
|
-
export type
|
|
1453
|
-
export declare const
|
|
1459
|
+
export type ApplicationPaymentOrderByRelevanceFieldEnum = (typeof ApplicationPaymentOrderByRelevanceFieldEnum)[keyof typeof ApplicationPaymentOrderByRelevanceFieldEnum];
|
|
1460
|
+
export declare const ApplicationDocumentOrderByRelevanceFieldEnum: {
|
|
1454
1461
|
readonly id: "id";
|
|
1455
|
-
readonly
|
|
1462
|
+
readonly applicationId: "applicationId";
|
|
1456
1463
|
readonly phaseId: "phaseId";
|
|
1457
1464
|
readonly stepId: "stepId";
|
|
1458
1465
|
readonly name: "name";
|
|
@@ -1460,7 +1467,7 @@ export declare const ContractDocumentOrderByRelevanceFieldEnum: {
|
|
|
1460
1467
|
readonly type: "type";
|
|
1461
1468
|
readonly uploadedById: "uploadedById";
|
|
1462
1469
|
};
|
|
1463
|
-
export type
|
|
1470
|
+
export type ApplicationDocumentOrderByRelevanceFieldEnum = (typeof ApplicationDocumentOrderByRelevanceFieldEnum)[keyof typeof ApplicationDocumentOrderByRelevanceFieldEnum];
|
|
1464
1471
|
export declare const DocumentTemplateOrderByRelevanceFieldEnum: {
|
|
1465
1472
|
readonly id: "id";
|
|
1466
1473
|
readonly tenantId: "tenantId";
|
|
@@ -1474,7 +1481,7 @@ export type DocumentTemplateOrderByRelevanceFieldEnum = (typeof DocumentTemplate
|
|
|
1474
1481
|
export declare const OfferLetterOrderByRelevanceFieldEnum: {
|
|
1475
1482
|
readonly id: "id";
|
|
1476
1483
|
readonly tenantId: "tenantId";
|
|
1477
|
-
readonly
|
|
1484
|
+
readonly applicationId: "applicationId";
|
|
1478
1485
|
readonly templateId: "templateId";
|
|
1479
1486
|
readonly letterNumber: "letterNumber";
|
|
1480
1487
|
readonly htmlContent: "htmlContent";
|
|
@@ -1486,9 +1493,9 @@ export declare const OfferLetterOrderByRelevanceFieldEnum: {
|
|
|
1486
1493
|
readonly sentById: "sentById";
|
|
1487
1494
|
};
|
|
1488
1495
|
export type OfferLetterOrderByRelevanceFieldEnum = (typeof OfferLetterOrderByRelevanceFieldEnum)[keyof typeof OfferLetterOrderByRelevanceFieldEnum];
|
|
1489
|
-
export declare const
|
|
1496
|
+
export declare const ApplicationTerminationOrderByRelevanceFieldEnum: {
|
|
1490
1497
|
readonly id: "id";
|
|
1491
|
-
readonly
|
|
1498
|
+
readonly applicationId: "applicationId";
|
|
1492
1499
|
readonly tenantId: "tenantId";
|
|
1493
1500
|
readonly requestNumber: "requestNumber";
|
|
1494
1501
|
readonly initiatorId: "initiatorId";
|
|
@@ -1503,11 +1510,11 @@ export declare const ContractTerminationOrderByRelevanceFieldEnum: {
|
|
|
1503
1510
|
readonly unitReservedForId: "unitReservedForId";
|
|
1504
1511
|
readonly idempotencyKey: "idempotencyKey";
|
|
1505
1512
|
};
|
|
1506
|
-
export type
|
|
1513
|
+
export type ApplicationTerminationOrderByRelevanceFieldEnum = (typeof ApplicationTerminationOrderByRelevanceFieldEnum)[keyof typeof ApplicationTerminationOrderByRelevanceFieldEnum];
|
|
1507
1514
|
export declare const PaymentMethodChangeRequestOrderByRelevanceFieldEnum: {
|
|
1508
1515
|
readonly id: "id";
|
|
1509
1516
|
readonly tenantId: "tenantId";
|
|
1510
|
-
readonly
|
|
1517
|
+
readonly applicationId: "applicationId";
|
|
1511
1518
|
readonly fromPaymentMethodId: "fromPaymentMethodId";
|
|
1512
1519
|
readonly toPaymentMethodId: "toPaymentMethodId";
|
|
1513
1520
|
readonly requestorId: "requestorId";
|
|
@@ -1591,7 +1598,7 @@ export type DomainEventOrderByRelevanceFieldEnum = (typeof DomainEventOrderByRel
|
|
|
1591
1598
|
export declare const PropertyTransferRequestOrderByRelevanceFieldEnum: {
|
|
1592
1599
|
readonly id: "id";
|
|
1593
1600
|
readonly tenantId: "tenantId";
|
|
1594
|
-
readonly
|
|
1601
|
+
readonly sourceApplicationId: "sourceApplicationId";
|
|
1595
1602
|
readonly targetPropertyUnitId: "targetPropertyUnitId";
|
|
1596
1603
|
readonly requestedById: "requestedById";
|
|
1597
1604
|
readonly reviewedById: "reviewedById";
|
|
@@ -1599,7 +1606,7 @@ export declare const PropertyTransferRequestOrderByRelevanceFieldEnum: {
|
|
|
1599
1606
|
readonly reviewNotes: "reviewNotes";
|
|
1600
1607
|
readonly priceAdjustmentHandling: "priceAdjustmentHandling";
|
|
1601
1608
|
readonly refundTransactionId: "refundTransactionId";
|
|
1602
|
-
readonly
|
|
1609
|
+
readonly targetApplicationId: "targetApplicationId";
|
|
1603
1610
|
};
|
|
1604
1611
|
export type PropertyTransferRequestOrderByRelevanceFieldEnum = (typeof PropertyTransferRequestOrderByRelevanceFieldEnum)[keyof typeof PropertyTransferRequestOrderByRelevanceFieldEnum];
|
|
1605
1612
|
export declare const ApprovalRequestOrderByRelevanceFieldEnum: {
|