@valentine-efagene/qshelter-common 2.0.94 → 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 +321 -321
- package/dist/generated/client/internal/prismaNamespace.js +50 -50
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +66 -66
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +50 -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 +40 -40
- 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/20260112080730_rename_contract_to_application/migration.sql +529 -0
- package/prisma/schema.prisma +107 -107
- 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";
|
|
@@ -527,17 +527,17 @@ export declare const PaymentMethodPhaseFieldScalarFieldEnum: {
|
|
|
527
527
|
readonly updatedAt: "updatedAt";
|
|
528
528
|
};
|
|
529
529
|
export type PaymentMethodPhaseFieldScalarFieldEnum = (typeof PaymentMethodPhaseFieldScalarFieldEnum)[keyof typeof PaymentMethodPhaseFieldScalarFieldEnum];
|
|
530
|
-
export declare const
|
|
530
|
+
export declare const ApplicationScalarFieldEnum: {
|
|
531
531
|
readonly id: "id";
|
|
532
532
|
readonly tenantId: "tenantId";
|
|
533
533
|
readonly propertyUnitId: "propertyUnitId";
|
|
534
534
|
readonly buyerId: "buyerId";
|
|
535
535
|
readonly sellerId: "sellerId";
|
|
536
536
|
readonly paymentMethodId: "paymentMethodId";
|
|
537
|
-
readonly
|
|
537
|
+
readonly applicationNumber: "applicationNumber";
|
|
538
538
|
readonly title: "title";
|
|
539
539
|
readonly description: "description";
|
|
540
|
-
readonly
|
|
540
|
+
readonly applicationType: "applicationType";
|
|
541
541
|
readonly totalAmount: "totalAmount";
|
|
542
542
|
readonly status: "status";
|
|
543
543
|
readonly currentPhaseId: "currentPhaseId";
|
|
@@ -551,11 +551,11 @@ export declare const ContractScalarFieldEnum: {
|
|
|
551
551
|
readonly updatedAt: "updatedAt";
|
|
552
552
|
readonly transferredFromId: "transferredFromId";
|
|
553
553
|
};
|
|
554
|
-
export type
|
|
555
|
-
export declare const
|
|
554
|
+
export type ApplicationScalarFieldEnum = (typeof ApplicationScalarFieldEnum)[keyof typeof ApplicationScalarFieldEnum];
|
|
555
|
+
export declare const ApplicationRefundScalarFieldEnum: {
|
|
556
556
|
readonly id: "id";
|
|
557
557
|
readonly tenantId: "tenantId";
|
|
558
|
-
readonly
|
|
558
|
+
readonly applicationId: "applicationId";
|
|
559
559
|
readonly amount: "amount";
|
|
560
560
|
readonly reason: "reason";
|
|
561
561
|
readonly status: "status";
|
|
@@ -577,10 +577,10 @@ export declare const ContractRefundScalarFieldEnum: {
|
|
|
577
577
|
readonly createdAt: "createdAt";
|
|
578
578
|
readonly updatedAt: "updatedAt";
|
|
579
579
|
};
|
|
580
|
-
export type
|
|
581
|
-
export declare const
|
|
580
|
+
export type ApplicationRefundScalarFieldEnum = (typeof ApplicationRefundScalarFieldEnum)[keyof typeof ApplicationRefundScalarFieldEnum];
|
|
581
|
+
export declare const ApplicationPhaseScalarFieldEnum: {
|
|
582
582
|
readonly id: "id";
|
|
583
|
-
readonly
|
|
583
|
+
readonly applicationId: "applicationId";
|
|
584
584
|
readonly name: "name";
|
|
585
585
|
readonly description: "description";
|
|
586
586
|
readonly phaseCategory: "phaseCategory";
|
|
@@ -596,7 +596,7 @@ export declare const ContractPhaseScalarFieldEnum: {
|
|
|
596
596
|
readonly createdAt: "createdAt";
|
|
597
597
|
readonly updatedAt: "updatedAt";
|
|
598
598
|
};
|
|
599
|
-
export type
|
|
599
|
+
export type ApplicationPhaseScalarFieldEnum = (typeof ApplicationPhaseScalarFieldEnum)[keyof typeof ApplicationPhaseScalarFieldEnum];
|
|
600
600
|
export declare const QuestionnairePhaseScalarFieldEnum: {
|
|
601
601
|
readonly id: "id";
|
|
602
602
|
readonly phaseId: "phaseId";
|
|
@@ -664,9 +664,9 @@ export declare const QuestionnaireFieldScalarFieldEnum: {
|
|
|
664
664
|
readonly updatedAt: "updatedAt";
|
|
665
665
|
};
|
|
666
666
|
export type QuestionnaireFieldScalarFieldEnum = (typeof QuestionnaireFieldScalarFieldEnum)[keyof typeof QuestionnaireFieldScalarFieldEnum];
|
|
667
|
-
export declare const
|
|
667
|
+
export declare const ApplicationEventScalarFieldEnum: {
|
|
668
668
|
readonly id: "id";
|
|
669
|
-
readonly
|
|
669
|
+
readonly applicationId: "applicationId";
|
|
670
670
|
readonly eventType: "eventType";
|
|
671
671
|
readonly eventGroup: "eventGroup";
|
|
672
672
|
readonly fromState: "fromState";
|
|
@@ -677,7 +677,7 @@ export declare const ContractEventScalarFieldEnum: {
|
|
|
677
677
|
readonly actorType: "actorType";
|
|
678
678
|
readonly occurredAt: "occurredAt";
|
|
679
679
|
};
|
|
680
|
-
export type
|
|
680
|
+
export type ApplicationEventScalarFieldEnum = (typeof ApplicationEventScalarFieldEnum)[keyof typeof ApplicationEventScalarFieldEnum];
|
|
681
681
|
export declare const DocumentationStepScalarFieldEnum: {
|
|
682
682
|
readonly id: "id";
|
|
683
683
|
readonly documentationPhaseId: "documentationPhaseId";
|
|
@@ -715,7 +715,7 @@ export declare const DocumentationStepApprovalScalarFieldEnum: {
|
|
|
715
715
|
readonly createdAt: "createdAt";
|
|
716
716
|
};
|
|
717
717
|
export type DocumentationStepApprovalScalarFieldEnum = (typeof DocumentationStepApprovalScalarFieldEnum)[keyof typeof DocumentationStepApprovalScalarFieldEnum];
|
|
718
|
-
export declare const
|
|
718
|
+
export declare const PaymentInstallmentScalarFieldEnum: {
|
|
719
719
|
readonly id: "id";
|
|
720
720
|
readonly paymentPhaseId: "paymentPhaseId";
|
|
721
721
|
readonly installmentNumber: "installmentNumber";
|
|
@@ -733,10 +733,10 @@ export declare const ContractInstallmentScalarFieldEnum: {
|
|
|
733
733
|
readonly createdAt: "createdAt";
|
|
734
734
|
readonly updatedAt: "updatedAt";
|
|
735
735
|
};
|
|
736
|
-
export type
|
|
737
|
-
export declare const
|
|
736
|
+
export type PaymentInstallmentScalarFieldEnum = (typeof PaymentInstallmentScalarFieldEnum)[keyof typeof PaymentInstallmentScalarFieldEnum];
|
|
737
|
+
export declare const ApplicationPaymentScalarFieldEnum: {
|
|
738
738
|
readonly id: "id";
|
|
739
|
-
readonly
|
|
739
|
+
readonly applicationId: "applicationId";
|
|
740
740
|
readonly phaseId: "phaseId";
|
|
741
741
|
readonly installmentId: "installmentId";
|
|
742
742
|
readonly payerId: "payerId";
|
|
@@ -752,10 +752,10 @@ export declare const ContractPaymentScalarFieldEnum: {
|
|
|
752
752
|
readonly createdAt: "createdAt";
|
|
753
753
|
readonly updatedAt: "updatedAt";
|
|
754
754
|
};
|
|
755
|
-
export type
|
|
756
|
-
export declare const
|
|
755
|
+
export type ApplicationPaymentScalarFieldEnum = (typeof ApplicationPaymentScalarFieldEnum)[keyof typeof ApplicationPaymentScalarFieldEnum];
|
|
756
|
+
export declare const ApplicationDocumentScalarFieldEnum: {
|
|
757
757
|
readonly id: "id";
|
|
758
|
-
readonly
|
|
758
|
+
readonly applicationId: "applicationId";
|
|
759
759
|
readonly phaseId: "phaseId";
|
|
760
760
|
readonly stepId: "stepId";
|
|
761
761
|
readonly name: "name";
|
|
@@ -766,7 +766,7 @@ export declare const ContractDocumentScalarFieldEnum: {
|
|
|
766
766
|
readonly createdAt: "createdAt";
|
|
767
767
|
readonly updatedAt: "updatedAt";
|
|
768
768
|
};
|
|
769
|
-
export type
|
|
769
|
+
export type ApplicationDocumentScalarFieldEnum = (typeof ApplicationDocumentScalarFieldEnum)[keyof typeof ApplicationDocumentScalarFieldEnum];
|
|
770
770
|
export declare const DocumentTemplateScalarFieldEnum: {
|
|
771
771
|
readonly id: "id";
|
|
772
772
|
readonly tenantId: "tenantId";
|
|
@@ -786,7 +786,7 @@ export type DocumentTemplateScalarFieldEnum = (typeof DocumentTemplateScalarFiel
|
|
|
786
786
|
export declare const OfferLetterScalarFieldEnum: {
|
|
787
787
|
readonly id: "id";
|
|
788
788
|
readonly tenantId: "tenantId";
|
|
789
|
-
readonly
|
|
789
|
+
readonly applicationId: "applicationId";
|
|
790
790
|
readonly templateId: "templateId";
|
|
791
791
|
readonly letterNumber: "letterNumber";
|
|
792
792
|
readonly type: "type";
|
|
@@ -810,9 +810,9 @@ export declare const OfferLetterScalarFieldEnum: {
|
|
|
810
810
|
readonly updatedAt: "updatedAt";
|
|
811
811
|
};
|
|
812
812
|
export type OfferLetterScalarFieldEnum = (typeof OfferLetterScalarFieldEnum)[keyof typeof OfferLetterScalarFieldEnum];
|
|
813
|
-
export declare const
|
|
813
|
+
export declare const ApplicationTerminationScalarFieldEnum: {
|
|
814
814
|
readonly id: "id";
|
|
815
|
-
readonly
|
|
815
|
+
readonly applicationId: "applicationId";
|
|
816
816
|
readonly tenantId: "tenantId";
|
|
817
817
|
readonly requestNumber: "requestNumber";
|
|
818
818
|
readonly initiatedBy: "initiatedBy";
|
|
@@ -827,8 +827,8 @@ export declare const ContractTerminationScalarFieldEnum: {
|
|
|
827
827
|
readonly reviewedAt: "reviewedAt";
|
|
828
828
|
readonly reviewNotes: "reviewNotes";
|
|
829
829
|
readonly rejectionReason: "rejectionReason";
|
|
830
|
-
readonly
|
|
831
|
-
readonly
|
|
830
|
+
readonly applicationSnapshot: "applicationSnapshot";
|
|
831
|
+
readonly totalApplicationAmount: "totalApplicationAmount";
|
|
832
832
|
readonly totalPaidToDate: "totalPaidToDate";
|
|
833
833
|
readonly outstandingBalance: "outstandingBalance";
|
|
834
834
|
readonly refundableAmount: "refundableAmount";
|
|
@@ -856,11 +856,11 @@ export declare const ContractTerminationScalarFieldEnum: {
|
|
|
856
856
|
readonly createdAt: "createdAt";
|
|
857
857
|
readonly updatedAt: "updatedAt";
|
|
858
858
|
};
|
|
859
|
-
export type
|
|
859
|
+
export type ApplicationTerminationScalarFieldEnum = (typeof ApplicationTerminationScalarFieldEnum)[keyof typeof ApplicationTerminationScalarFieldEnum];
|
|
860
860
|
export declare const PaymentMethodChangeRequestScalarFieldEnum: {
|
|
861
861
|
readonly id: "id";
|
|
862
862
|
readonly tenantId: "tenantId";
|
|
863
|
-
readonly
|
|
863
|
+
readonly applicationId: "applicationId";
|
|
864
864
|
readonly fromPaymentMethodId: "fromPaymentMethodId";
|
|
865
865
|
readonly toPaymentMethodId: "toPaymentMethodId";
|
|
866
866
|
readonly requestorId: "requestorId";
|
|
@@ -1000,7 +1000,7 @@ export type DomainEventScalarFieldEnum = (typeof DomainEventScalarFieldEnum)[key
|
|
|
1000
1000
|
export declare const PropertyTransferRequestScalarFieldEnum: {
|
|
1001
1001
|
readonly id: "id";
|
|
1002
1002
|
readonly tenantId: "tenantId";
|
|
1003
|
-
readonly
|
|
1003
|
+
readonly sourceApplicationId: "sourceApplicationId";
|
|
1004
1004
|
readonly targetPropertyUnitId: "targetPropertyUnitId";
|
|
1005
1005
|
readonly requestedById: "requestedById";
|
|
1006
1006
|
readonly reviewedById: "reviewedById";
|
|
@@ -1014,7 +1014,7 @@ export declare const PropertyTransferRequestScalarFieldEnum: {
|
|
|
1014
1014
|
readonly refundedAmount: "refundedAmount";
|
|
1015
1015
|
readonly refundTransactionId: "refundTransactionId";
|
|
1016
1016
|
readonly refundedAt: "refundedAt";
|
|
1017
|
-
readonly
|
|
1017
|
+
readonly targetApplicationId: "targetApplicationId";
|
|
1018
1018
|
readonly createdAt: "createdAt";
|
|
1019
1019
|
readonly reviewedAt: "reviewedAt";
|
|
1020
1020
|
readonly completedAt: "completedAt";
|
|
@@ -1342,25 +1342,25 @@ export declare const PaymentMethodPhaseFieldOrderByRelevanceFieldEnum: {
|
|
|
1342
1342
|
readonly placeholder: "placeholder";
|
|
1343
1343
|
};
|
|
1344
1344
|
export type PaymentMethodPhaseFieldOrderByRelevanceFieldEnum = (typeof PaymentMethodPhaseFieldOrderByRelevanceFieldEnum)[keyof typeof PaymentMethodPhaseFieldOrderByRelevanceFieldEnum];
|
|
1345
|
-
export declare const
|
|
1345
|
+
export declare const ApplicationOrderByRelevanceFieldEnum: {
|
|
1346
1346
|
readonly id: "id";
|
|
1347
1347
|
readonly tenantId: "tenantId";
|
|
1348
1348
|
readonly propertyUnitId: "propertyUnitId";
|
|
1349
1349
|
readonly buyerId: "buyerId";
|
|
1350
1350
|
readonly sellerId: "sellerId";
|
|
1351
1351
|
readonly paymentMethodId: "paymentMethodId";
|
|
1352
|
-
readonly
|
|
1352
|
+
readonly applicationNumber: "applicationNumber";
|
|
1353
1353
|
readonly title: "title";
|
|
1354
1354
|
readonly description: "description";
|
|
1355
|
-
readonly
|
|
1355
|
+
readonly applicationType: "applicationType";
|
|
1356
1356
|
readonly currentPhaseId: "currentPhaseId";
|
|
1357
1357
|
readonly transferredFromId: "transferredFromId";
|
|
1358
1358
|
};
|
|
1359
|
-
export type
|
|
1360
|
-
export declare const
|
|
1359
|
+
export type ApplicationOrderByRelevanceFieldEnum = (typeof ApplicationOrderByRelevanceFieldEnum)[keyof typeof ApplicationOrderByRelevanceFieldEnum];
|
|
1360
|
+
export declare const ApplicationRefundOrderByRelevanceFieldEnum: {
|
|
1361
1361
|
readonly id: "id";
|
|
1362
1362
|
readonly tenantId: "tenantId";
|
|
1363
|
-
readonly
|
|
1363
|
+
readonly applicationId: "applicationId";
|
|
1364
1364
|
readonly reason: "reason";
|
|
1365
1365
|
readonly requestedById: "requestedById";
|
|
1366
1366
|
readonly approvedById: "approvedById";
|
|
@@ -1374,14 +1374,14 @@ export declare const ContractRefundOrderByRelevanceFieldEnum: {
|
|
|
1374
1374
|
readonly rejectionNotes: "rejectionNotes";
|
|
1375
1375
|
readonly processingNotes: "processingNotes";
|
|
1376
1376
|
};
|
|
1377
|
-
export type
|
|
1378
|
-
export declare const
|
|
1377
|
+
export type ApplicationRefundOrderByRelevanceFieldEnum = (typeof ApplicationRefundOrderByRelevanceFieldEnum)[keyof typeof ApplicationRefundOrderByRelevanceFieldEnum];
|
|
1378
|
+
export declare const ApplicationPhaseOrderByRelevanceFieldEnum: {
|
|
1379
1379
|
readonly id: "id";
|
|
1380
|
-
readonly
|
|
1380
|
+
readonly applicationId: "applicationId";
|
|
1381
1381
|
readonly name: "name";
|
|
1382
1382
|
readonly description: "description";
|
|
1383
1383
|
};
|
|
1384
|
-
export type
|
|
1384
|
+
export type ApplicationPhaseOrderByRelevanceFieldEnum = (typeof ApplicationPhaseOrderByRelevanceFieldEnum)[keyof typeof ApplicationPhaseOrderByRelevanceFieldEnum];
|
|
1385
1385
|
export declare const QuestionnairePhaseOrderByRelevanceFieldEnum: {
|
|
1386
1386
|
readonly id: "id";
|
|
1387
1387
|
readonly phaseId: "phaseId";
|
|
@@ -1410,15 +1410,15 @@ export declare const QuestionnaireFieldOrderByRelevanceFieldEnum: {
|
|
|
1410
1410
|
readonly placeholder: "placeholder";
|
|
1411
1411
|
};
|
|
1412
1412
|
export type QuestionnaireFieldOrderByRelevanceFieldEnum = (typeof QuestionnaireFieldOrderByRelevanceFieldEnum)[keyof typeof QuestionnaireFieldOrderByRelevanceFieldEnum];
|
|
1413
|
-
export declare const
|
|
1413
|
+
export declare const ApplicationEventOrderByRelevanceFieldEnum: {
|
|
1414
1414
|
readonly id: "id";
|
|
1415
|
-
readonly
|
|
1415
|
+
readonly applicationId: "applicationId";
|
|
1416
1416
|
readonly fromState: "fromState";
|
|
1417
1417
|
readonly toState: "toState";
|
|
1418
1418
|
readonly trigger: "trigger";
|
|
1419
1419
|
readonly actorId: "actorId";
|
|
1420
1420
|
};
|
|
1421
|
-
export type
|
|
1421
|
+
export type ApplicationEventOrderByRelevanceFieldEnum = (typeof ApplicationEventOrderByRelevanceFieldEnum)[keyof typeof ApplicationEventOrderByRelevanceFieldEnum];
|
|
1422
1422
|
export declare const DocumentationStepOrderByRelevanceFieldEnum: {
|
|
1423
1423
|
readonly id: "id";
|
|
1424
1424
|
readonly documentationPhaseId: "documentationPhaseId";
|
|
@@ -1441,14 +1441,14 @@ export declare const DocumentationStepApprovalOrderByRelevanceFieldEnum: {
|
|
|
1441
1441
|
readonly comment: "comment";
|
|
1442
1442
|
};
|
|
1443
1443
|
export type DocumentationStepApprovalOrderByRelevanceFieldEnum = (typeof DocumentationStepApprovalOrderByRelevanceFieldEnum)[keyof typeof DocumentationStepApprovalOrderByRelevanceFieldEnum];
|
|
1444
|
-
export declare const
|
|
1444
|
+
export declare const PaymentInstallmentOrderByRelevanceFieldEnum: {
|
|
1445
1445
|
readonly id: "id";
|
|
1446
1446
|
readonly paymentPhaseId: "paymentPhaseId";
|
|
1447
1447
|
};
|
|
1448
|
-
export type
|
|
1449
|
-
export declare const
|
|
1448
|
+
export type PaymentInstallmentOrderByRelevanceFieldEnum = (typeof PaymentInstallmentOrderByRelevanceFieldEnum)[keyof typeof PaymentInstallmentOrderByRelevanceFieldEnum];
|
|
1449
|
+
export declare const ApplicationPaymentOrderByRelevanceFieldEnum: {
|
|
1450
1450
|
readonly id: "id";
|
|
1451
|
-
readonly
|
|
1451
|
+
readonly applicationId: "applicationId";
|
|
1452
1452
|
readonly phaseId: "phaseId";
|
|
1453
1453
|
readonly installmentId: "installmentId";
|
|
1454
1454
|
readonly payerId: "payerId";
|
|
@@ -1456,10 +1456,10 @@ export declare const ContractPaymentOrderByRelevanceFieldEnum: {
|
|
|
1456
1456
|
readonly reference: "reference";
|
|
1457
1457
|
readonly gatewayResponse: "gatewayResponse";
|
|
1458
1458
|
};
|
|
1459
|
-
export type
|
|
1460
|
-
export declare const
|
|
1459
|
+
export type ApplicationPaymentOrderByRelevanceFieldEnum = (typeof ApplicationPaymentOrderByRelevanceFieldEnum)[keyof typeof ApplicationPaymentOrderByRelevanceFieldEnum];
|
|
1460
|
+
export declare const ApplicationDocumentOrderByRelevanceFieldEnum: {
|
|
1461
1461
|
readonly id: "id";
|
|
1462
|
-
readonly
|
|
1462
|
+
readonly applicationId: "applicationId";
|
|
1463
1463
|
readonly phaseId: "phaseId";
|
|
1464
1464
|
readonly stepId: "stepId";
|
|
1465
1465
|
readonly name: "name";
|
|
@@ -1467,7 +1467,7 @@ export declare const ContractDocumentOrderByRelevanceFieldEnum: {
|
|
|
1467
1467
|
readonly type: "type";
|
|
1468
1468
|
readonly uploadedById: "uploadedById";
|
|
1469
1469
|
};
|
|
1470
|
-
export type
|
|
1470
|
+
export type ApplicationDocumentOrderByRelevanceFieldEnum = (typeof ApplicationDocumentOrderByRelevanceFieldEnum)[keyof typeof ApplicationDocumentOrderByRelevanceFieldEnum];
|
|
1471
1471
|
export declare const DocumentTemplateOrderByRelevanceFieldEnum: {
|
|
1472
1472
|
readonly id: "id";
|
|
1473
1473
|
readonly tenantId: "tenantId";
|
|
@@ -1481,7 +1481,7 @@ export type DocumentTemplateOrderByRelevanceFieldEnum = (typeof DocumentTemplate
|
|
|
1481
1481
|
export declare const OfferLetterOrderByRelevanceFieldEnum: {
|
|
1482
1482
|
readonly id: "id";
|
|
1483
1483
|
readonly tenantId: "tenantId";
|
|
1484
|
-
readonly
|
|
1484
|
+
readonly applicationId: "applicationId";
|
|
1485
1485
|
readonly templateId: "templateId";
|
|
1486
1486
|
readonly letterNumber: "letterNumber";
|
|
1487
1487
|
readonly htmlContent: "htmlContent";
|
|
@@ -1493,9 +1493,9 @@ export declare const OfferLetterOrderByRelevanceFieldEnum: {
|
|
|
1493
1493
|
readonly sentById: "sentById";
|
|
1494
1494
|
};
|
|
1495
1495
|
export type OfferLetterOrderByRelevanceFieldEnum = (typeof OfferLetterOrderByRelevanceFieldEnum)[keyof typeof OfferLetterOrderByRelevanceFieldEnum];
|
|
1496
|
-
export declare const
|
|
1496
|
+
export declare const ApplicationTerminationOrderByRelevanceFieldEnum: {
|
|
1497
1497
|
readonly id: "id";
|
|
1498
|
-
readonly
|
|
1498
|
+
readonly applicationId: "applicationId";
|
|
1499
1499
|
readonly tenantId: "tenantId";
|
|
1500
1500
|
readonly requestNumber: "requestNumber";
|
|
1501
1501
|
readonly initiatorId: "initiatorId";
|
|
@@ -1510,11 +1510,11 @@ export declare const ContractTerminationOrderByRelevanceFieldEnum: {
|
|
|
1510
1510
|
readonly unitReservedForId: "unitReservedForId";
|
|
1511
1511
|
readonly idempotencyKey: "idempotencyKey";
|
|
1512
1512
|
};
|
|
1513
|
-
export type
|
|
1513
|
+
export type ApplicationTerminationOrderByRelevanceFieldEnum = (typeof ApplicationTerminationOrderByRelevanceFieldEnum)[keyof typeof ApplicationTerminationOrderByRelevanceFieldEnum];
|
|
1514
1514
|
export declare const PaymentMethodChangeRequestOrderByRelevanceFieldEnum: {
|
|
1515
1515
|
readonly id: "id";
|
|
1516
1516
|
readonly tenantId: "tenantId";
|
|
1517
|
-
readonly
|
|
1517
|
+
readonly applicationId: "applicationId";
|
|
1518
1518
|
readonly fromPaymentMethodId: "fromPaymentMethodId";
|
|
1519
1519
|
readonly toPaymentMethodId: "toPaymentMethodId";
|
|
1520
1520
|
readonly requestorId: "requestorId";
|
|
@@ -1598,7 +1598,7 @@ export type DomainEventOrderByRelevanceFieldEnum = (typeof DomainEventOrderByRel
|
|
|
1598
1598
|
export declare const PropertyTransferRequestOrderByRelevanceFieldEnum: {
|
|
1599
1599
|
readonly id: "id";
|
|
1600
1600
|
readonly tenantId: "tenantId";
|
|
1601
|
-
readonly
|
|
1601
|
+
readonly sourceApplicationId: "sourceApplicationId";
|
|
1602
1602
|
readonly targetPropertyUnitId: "targetPropertyUnitId";
|
|
1603
1603
|
readonly requestedById: "requestedById";
|
|
1604
1604
|
readonly reviewedById: "reviewedById";
|
|
@@ -1606,7 +1606,7 @@ export declare const PropertyTransferRequestOrderByRelevanceFieldEnum: {
|
|
|
1606
1606
|
readonly reviewNotes: "reviewNotes";
|
|
1607
1607
|
readonly priceAdjustmentHandling: "priceAdjustmentHandling";
|
|
1608
1608
|
readonly refundTransactionId: "refundTransactionId";
|
|
1609
|
-
readonly
|
|
1609
|
+
readonly targetApplicationId: "targetApplicationId";
|
|
1610
1610
|
};
|
|
1611
1611
|
export type PropertyTransferRequestOrderByRelevanceFieldEnum = (typeof PropertyTransferRequestOrderByRelevanceFieldEnum)[keyof typeof PropertyTransferRequestOrderByRelevanceFieldEnum];
|
|
1612
1612
|
export declare const ApprovalRequestOrderByRelevanceFieldEnum: {
|