@valentine-efagene/qshelter-common 2.0.28 → 2.0.30
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 +15 -0
- package/dist/generated/client/client.d.ts +15 -0
- package/dist/generated/client/commonInputTypes.d.ts +408 -48
- package/dist/generated/client/enums.d.ts +92 -0
- package/dist/generated/client/enums.js +80 -0
- package/dist/generated/client/internal/class.d.ts +33 -0
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +330 -36
- package/dist/generated/client/internal/prismaNamespace.js +76 -37
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +80 -35
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +76 -37
- package/dist/generated/client/models/Contract.d.ts +152 -148
- package/dist/generated/client/models/ContractDocument.d.ts +32 -28
- package/dist/generated/client/models/ContractInstallment.d.ts +30 -26
- package/dist/generated/client/models/ContractPayment.d.ts +44 -40
- package/dist/generated/client/models/ContractPhase.d.ts +539 -121
- package/dist/generated/client/models/ContractPhaseStep.d.ts +208 -108
- package/dist/generated/client/models/ContractPhaseStepApproval.d.ts +32 -28
- package/dist/generated/client/models/ContractPhaseStepDocument.d.ts +1052 -0
- package/dist/generated/client/models/ContractPhaseStepDocument.js +1 -0
- package/dist/generated/client/models/PaymentMethodPhaseDocument.d.ts +1216 -0
- package/dist/generated/client/models/PaymentMethodPhaseDocument.js +1 -0
- package/dist/generated/client/models/PaymentMethodPhaseStep.d.ts +1187 -0
- package/dist/generated/client/models/PaymentMethodPhaseStep.js +1 -0
- package/dist/generated/client/models/PaymentPlan.d.ts +34 -30
- package/dist/generated/client/models/PropertyPaymentMethodPhase.d.ts +504 -135
- package/dist/generated/client/models/index.d.ts +3 -0
- package/dist/generated/client/models/index.js +3 -0
- package/dist/generated/client/models.d.ts +3 -0
- package/dist/src/middleware/error-handler.js +3 -0
- package/package.json +1 -1
- package/prisma/schema.prisma +195 -30
|
@@ -96,9 +96,12 @@ export const ModelName = {
|
|
|
96
96
|
PropertyPaymentMethod: 'PropertyPaymentMethod',
|
|
97
97
|
PropertyPaymentMethodLink: 'PropertyPaymentMethodLink',
|
|
98
98
|
PropertyPaymentMethodPhase: 'PropertyPaymentMethodPhase',
|
|
99
|
+
PaymentMethodPhaseStep: 'PaymentMethodPhaseStep',
|
|
100
|
+
PaymentMethodPhaseDocument: 'PaymentMethodPhaseDocument',
|
|
99
101
|
Contract: 'Contract',
|
|
100
102
|
ContractPhase: 'ContractPhase',
|
|
101
103
|
ContractPhaseStep: 'ContractPhaseStep',
|
|
104
|
+
ContractPhaseStepDocument: 'ContractPhaseStepDocument',
|
|
102
105
|
ContractPhaseStepApproval: 'ContractPhaseStepApproval',
|
|
103
106
|
ContractInstallment: 'ContractInstallment',
|
|
104
107
|
ContractPayment: 'ContractPayment',
|
|
@@ -409,11 +412,33 @@ export const PropertyPaymentMethodPhaseScalarFieldEnum = {
|
|
|
409
412
|
percentOfPrice: 'percentOfPrice',
|
|
410
413
|
requiresPreviousPhaseCompletion: 'requiresPreviousPhaseCompletion',
|
|
411
414
|
minimumCompletionPercentage: 'minimumCompletionPercentage',
|
|
412
|
-
|
|
413
|
-
|
|
415
|
+
completionCriterion: 'completionCriterion',
|
|
416
|
+
stepDefinitionsSnapshot: 'stepDefinitionsSnapshot',
|
|
417
|
+
requiredDocumentSnapshot: 'requiredDocumentSnapshot',
|
|
414
418
|
createdAt: 'createdAt',
|
|
415
419
|
updatedAt: 'updatedAt'
|
|
416
420
|
};
|
|
421
|
+
export const PaymentMethodPhaseStepScalarFieldEnum = {
|
|
422
|
+
id: 'id',
|
|
423
|
+
phaseId: 'phaseId',
|
|
424
|
+
name: 'name',
|
|
425
|
+
stepType: 'stepType',
|
|
426
|
+
order: 'order',
|
|
427
|
+
metadata: 'metadata',
|
|
428
|
+
createdAt: 'createdAt',
|
|
429
|
+
updatedAt: 'updatedAt'
|
|
430
|
+
};
|
|
431
|
+
export const PaymentMethodPhaseDocumentScalarFieldEnum = {
|
|
432
|
+
id: 'id',
|
|
433
|
+
phaseId: 'phaseId',
|
|
434
|
+
documentType: 'documentType',
|
|
435
|
+
isRequired: 'isRequired',
|
|
436
|
+
description: 'description',
|
|
437
|
+
allowedMimeTypes: 'allowedMimeTypes',
|
|
438
|
+
maxSizeBytes: 'maxSizeBytes',
|
|
439
|
+
metadata: 'metadata',
|
|
440
|
+
createdAt: 'createdAt'
|
|
441
|
+
};
|
|
417
442
|
export const ContractScalarFieldEnum = {
|
|
418
443
|
id: 'id',
|
|
419
444
|
tenantId: 'tenantId',
|
|
@@ -460,6 +485,10 @@ export const ContractPhaseScalarFieldEnum = {
|
|
|
460
485
|
paidAmount: 'paidAmount',
|
|
461
486
|
remainingAmount: 'remainingAmount',
|
|
462
487
|
interestRate: 'interestRate',
|
|
488
|
+
approvedDocumentsCount: 'approvedDocumentsCount',
|
|
489
|
+
requiredDocumentsCount: 'requiredDocumentsCount',
|
|
490
|
+
completedStepsCount: 'completedStepsCount',
|
|
491
|
+
totalStepsCount: 'totalStepsCount',
|
|
463
492
|
dueDate: 'dueDate',
|
|
464
493
|
startDate: 'startDate',
|
|
465
494
|
endDate: 'endDate',
|
|
@@ -467,6 +496,10 @@ export const ContractPhaseScalarFieldEnum = {
|
|
|
467
496
|
completedAt: 'completedAt',
|
|
468
497
|
requiresPreviousPhaseCompletion: 'requiresPreviousPhaseCompletion',
|
|
469
498
|
minimumCompletionPercentage: 'minimumCompletionPercentage',
|
|
499
|
+
completionCriterion: 'completionCriterion',
|
|
500
|
+
paymentPlanSnapshot: 'paymentPlanSnapshot',
|
|
501
|
+
stepDefinitionsSnapshot: 'stepDefinitionsSnapshot',
|
|
502
|
+
requiredDocumentSnapshot: 'requiredDocumentSnapshot',
|
|
470
503
|
createdAt: 'createdAt',
|
|
471
504
|
updatedAt: 'updatedAt'
|
|
472
505
|
};
|
|
@@ -479,12 +512,18 @@ export const ContractPhaseStepScalarFieldEnum = {
|
|
|
479
512
|
order: 'order',
|
|
480
513
|
status: 'status',
|
|
481
514
|
assigneeId: 'assigneeId',
|
|
482
|
-
requiredDocumentTypes: 'requiredDocumentTypes',
|
|
483
515
|
dueDate: 'dueDate',
|
|
484
516
|
completedAt: 'completedAt',
|
|
485
517
|
createdAt: 'createdAt',
|
|
486
518
|
updatedAt: 'updatedAt'
|
|
487
519
|
};
|
|
520
|
+
export const ContractPhaseStepDocumentScalarFieldEnum = {
|
|
521
|
+
id: 'id',
|
|
522
|
+
stepId: 'stepId',
|
|
523
|
+
documentType: 'documentType',
|
|
524
|
+
isRequired: 'isRequired',
|
|
525
|
+
createdAt: 'createdAt'
|
|
526
|
+
};
|
|
488
527
|
export const ContractPhaseStepApprovalScalarFieldEnum = {
|
|
489
528
|
id: 'id',
|
|
490
529
|
stepId: 'stepId',
|
|
@@ -649,13 +688,13 @@ export const SortOrder = {
|
|
|
649
688
|
asc: 'asc',
|
|
650
689
|
desc: 'desc'
|
|
651
690
|
};
|
|
652
|
-
export const JsonNullValueInput = {
|
|
653
|
-
JsonNull: JsonNull
|
|
654
|
-
};
|
|
655
691
|
export const NullableJsonNullValueInput = {
|
|
656
692
|
DbNull: DbNull,
|
|
657
693
|
JsonNull: JsonNull
|
|
658
694
|
};
|
|
695
|
+
export const JsonNullValueInput = {
|
|
696
|
+
JsonNull: JsonNull
|
|
697
|
+
};
|
|
659
698
|
export const NullsOrder = {
|
|
660
699
|
first: 'first',
|
|
661
700
|
last: 'last'
|
|
@@ -825,8 +864,7 @@ export const PaymentPlanOrderByRelevanceFieldEnum = {
|
|
|
825
864
|
id: 'id',
|
|
826
865
|
tenantId: 'tenantId',
|
|
827
866
|
name: 'name',
|
|
828
|
-
description: 'description'
|
|
829
|
-
paymentFrequency: 'paymentFrequency'
|
|
867
|
+
description: 'description'
|
|
830
868
|
};
|
|
831
869
|
export const PropertyPaymentMethodOrderByRelevanceFieldEnum = {
|
|
832
870
|
id: 'id',
|
|
@@ -838,16 +876,33 @@ export const PropertyPaymentMethodLinkOrderByRelevanceFieldEnum = {
|
|
|
838
876
|
propertyId: 'propertyId',
|
|
839
877
|
paymentMethodId: 'paymentMethodId'
|
|
840
878
|
};
|
|
879
|
+
export const JsonNullValueFilter = {
|
|
880
|
+
DbNull: DbNull,
|
|
881
|
+
JsonNull: JsonNull,
|
|
882
|
+
AnyNull: AnyNull
|
|
883
|
+
};
|
|
884
|
+
export const QueryMode = {
|
|
885
|
+
default: 'default',
|
|
886
|
+
insensitive: 'insensitive'
|
|
887
|
+
};
|
|
841
888
|
export const PropertyPaymentMethodPhaseOrderByRelevanceFieldEnum = {
|
|
842
889
|
id: 'id',
|
|
843
890
|
paymentMethodId: 'paymentMethodId',
|
|
844
891
|
paymentPlanId: 'paymentPlanId',
|
|
845
892
|
name: 'name',
|
|
893
|
+
description: 'description'
|
|
894
|
+
};
|
|
895
|
+
export const PaymentMethodPhaseStepOrderByRelevanceFieldEnum = {
|
|
896
|
+
id: 'id',
|
|
897
|
+
phaseId: 'phaseId',
|
|
898
|
+
name: 'name'
|
|
899
|
+
};
|
|
900
|
+
export const PaymentMethodPhaseDocumentOrderByRelevanceFieldEnum = {
|
|
901
|
+
id: 'id',
|
|
902
|
+
phaseId: 'phaseId',
|
|
903
|
+
documentType: 'documentType',
|
|
846
904
|
description: 'description',
|
|
847
|
-
|
|
848
|
-
phaseType: 'phaseType',
|
|
849
|
-
requiredDocumentTypes: 'requiredDocumentTypes',
|
|
850
|
-
stepDefinitions: 'stepDefinitions'
|
|
905
|
+
allowedMimeTypes: 'allowedMimeTypes'
|
|
851
906
|
};
|
|
852
907
|
export const ContractOrderByRelevanceFieldEnum = {
|
|
853
908
|
id: 'id',
|
|
@@ -860,8 +915,6 @@ export const ContractOrderByRelevanceFieldEnum = {
|
|
|
860
915
|
title: 'title',
|
|
861
916
|
description: 'description',
|
|
862
917
|
contractType: 'contractType',
|
|
863
|
-
status: 'status',
|
|
864
|
-
state: 'state',
|
|
865
918
|
currentPhaseId: 'currentPhaseId'
|
|
866
919
|
};
|
|
867
920
|
export const ContractPhaseOrderByRelevanceFieldEnum = {
|
|
@@ -869,32 +922,29 @@ export const ContractPhaseOrderByRelevanceFieldEnum = {
|
|
|
869
922
|
contractId: 'contractId',
|
|
870
923
|
paymentPlanId: 'paymentPlanId',
|
|
871
924
|
name: 'name',
|
|
872
|
-
description: 'description'
|
|
873
|
-
phaseCategory: 'phaseCategory',
|
|
874
|
-
phaseType: 'phaseType',
|
|
875
|
-
status: 'status'
|
|
925
|
+
description: 'description'
|
|
876
926
|
};
|
|
877
927
|
export const ContractPhaseStepOrderByRelevanceFieldEnum = {
|
|
878
928
|
id: 'id',
|
|
879
929
|
phaseId: 'phaseId',
|
|
880
930
|
name: 'name',
|
|
881
931
|
description: 'description',
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
932
|
+
assigneeId: 'assigneeId'
|
|
933
|
+
};
|
|
934
|
+
export const ContractPhaseStepDocumentOrderByRelevanceFieldEnum = {
|
|
935
|
+
id: 'id',
|
|
936
|
+
stepId: 'stepId',
|
|
937
|
+
documentType: 'documentType'
|
|
886
938
|
};
|
|
887
939
|
export const ContractPhaseStepApprovalOrderByRelevanceFieldEnum = {
|
|
888
940
|
id: 'id',
|
|
889
941
|
stepId: 'stepId',
|
|
890
942
|
approverId: 'approverId',
|
|
891
|
-
decision: 'decision',
|
|
892
943
|
comment: 'comment'
|
|
893
944
|
};
|
|
894
945
|
export const ContractInstallmentOrderByRelevanceFieldEnum = {
|
|
895
946
|
id: 'id',
|
|
896
|
-
phaseId: 'phaseId'
|
|
897
|
-
status: 'status'
|
|
947
|
+
phaseId: 'phaseId'
|
|
898
948
|
};
|
|
899
949
|
export const ContractPaymentOrderByRelevanceFieldEnum = {
|
|
900
950
|
id: 'id',
|
|
@@ -903,7 +953,6 @@ export const ContractPaymentOrderByRelevanceFieldEnum = {
|
|
|
903
953
|
installmentId: 'installmentId',
|
|
904
954
|
payerId: 'payerId',
|
|
905
955
|
paymentMethod: 'paymentMethod',
|
|
906
|
-
status: 'status',
|
|
907
956
|
reference: 'reference',
|
|
908
957
|
gatewayResponse: 'gatewayResponse'
|
|
909
958
|
};
|
|
@@ -915,8 +964,7 @@ export const ContractDocumentOrderByRelevanceFieldEnum = {
|
|
|
915
964
|
name: 'name',
|
|
916
965
|
url: 'url',
|
|
917
966
|
type: 'type',
|
|
918
|
-
uploadedById: 'uploadedById'
|
|
919
|
-
status: 'status'
|
|
967
|
+
uploadedById: 'uploadedById'
|
|
920
968
|
};
|
|
921
969
|
export const ContractTransitionOrderByRelevanceFieldEnum = {
|
|
922
970
|
id: 'id',
|
|
@@ -932,15 +980,6 @@ export const ContractEventOrderByRelevanceFieldEnum = {
|
|
|
932
980
|
event: 'event',
|
|
933
981
|
data: 'data'
|
|
934
982
|
};
|
|
935
|
-
export const JsonNullValueFilter = {
|
|
936
|
-
DbNull: DbNull,
|
|
937
|
-
JsonNull: JsonNull,
|
|
938
|
-
AnyNull: AnyNull
|
|
939
|
-
};
|
|
940
|
-
export const QueryMode = {
|
|
941
|
-
default: 'default',
|
|
942
|
-
insensitive: 'insensitive'
|
|
943
|
-
};
|
|
944
983
|
export const PrequalificationOrderByRelevanceFieldEnum = {
|
|
945
984
|
id: 'id',
|
|
946
985
|
tenantId: 'tenantId',
|
|
@@ -55,9 +55,12 @@ export declare const ModelName: {
|
|
|
55
55
|
readonly PropertyPaymentMethod: "PropertyPaymentMethod";
|
|
56
56
|
readonly PropertyPaymentMethodLink: "PropertyPaymentMethodLink";
|
|
57
57
|
readonly PropertyPaymentMethodPhase: "PropertyPaymentMethodPhase";
|
|
58
|
+
readonly PaymentMethodPhaseStep: "PaymentMethodPhaseStep";
|
|
59
|
+
readonly PaymentMethodPhaseDocument: "PaymentMethodPhaseDocument";
|
|
58
60
|
readonly Contract: "Contract";
|
|
59
61
|
readonly ContractPhase: "ContractPhase";
|
|
60
62
|
readonly ContractPhaseStep: "ContractPhaseStep";
|
|
63
|
+
readonly ContractPhaseStepDocument: "ContractPhaseStepDocument";
|
|
61
64
|
readonly ContractPhaseStepApproval: "ContractPhaseStepApproval";
|
|
62
65
|
readonly ContractInstallment: "ContractInstallment";
|
|
63
66
|
readonly ContractPayment: "ContractPayment";
|
|
@@ -395,12 +398,36 @@ export declare const PropertyPaymentMethodPhaseScalarFieldEnum: {
|
|
|
395
398
|
readonly percentOfPrice: "percentOfPrice";
|
|
396
399
|
readonly requiresPreviousPhaseCompletion: "requiresPreviousPhaseCompletion";
|
|
397
400
|
readonly minimumCompletionPercentage: "minimumCompletionPercentage";
|
|
398
|
-
readonly
|
|
399
|
-
readonly
|
|
401
|
+
readonly completionCriterion: "completionCriterion";
|
|
402
|
+
readonly stepDefinitionsSnapshot: "stepDefinitionsSnapshot";
|
|
403
|
+
readonly requiredDocumentSnapshot: "requiredDocumentSnapshot";
|
|
400
404
|
readonly createdAt: "createdAt";
|
|
401
405
|
readonly updatedAt: "updatedAt";
|
|
402
406
|
};
|
|
403
407
|
export type PropertyPaymentMethodPhaseScalarFieldEnum = (typeof PropertyPaymentMethodPhaseScalarFieldEnum)[keyof typeof PropertyPaymentMethodPhaseScalarFieldEnum];
|
|
408
|
+
export declare const PaymentMethodPhaseStepScalarFieldEnum: {
|
|
409
|
+
readonly id: "id";
|
|
410
|
+
readonly phaseId: "phaseId";
|
|
411
|
+
readonly name: "name";
|
|
412
|
+
readonly stepType: "stepType";
|
|
413
|
+
readonly order: "order";
|
|
414
|
+
readonly metadata: "metadata";
|
|
415
|
+
readonly createdAt: "createdAt";
|
|
416
|
+
readonly updatedAt: "updatedAt";
|
|
417
|
+
};
|
|
418
|
+
export type PaymentMethodPhaseStepScalarFieldEnum = (typeof PaymentMethodPhaseStepScalarFieldEnum)[keyof typeof PaymentMethodPhaseStepScalarFieldEnum];
|
|
419
|
+
export declare const PaymentMethodPhaseDocumentScalarFieldEnum: {
|
|
420
|
+
readonly id: "id";
|
|
421
|
+
readonly phaseId: "phaseId";
|
|
422
|
+
readonly documentType: "documentType";
|
|
423
|
+
readonly isRequired: "isRequired";
|
|
424
|
+
readonly description: "description";
|
|
425
|
+
readonly allowedMimeTypes: "allowedMimeTypes";
|
|
426
|
+
readonly maxSizeBytes: "maxSizeBytes";
|
|
427
|
+
readonly metadata: "metadata";
|
|
428
|
+
readonly createdAt: "createdAt";
|
|
429
|
+
};
|
|
430
|
+
export type PaymentMethodPhaseDocumentScalarFieldEnum = (typeof PaymentMethodPhaseDocumentScalarFieldEnum)[keyof typeof PaymentMethodPhaseDocumentScalarFieldEnum];
|
|
404
431
|
export declare const ContractScalarFieldEnum: {
|
|
405
432
|
readonly id: "id";
|
|
406
433
|
readonly tenantId: "tenantId";
|
|
@@ -448,6 +475,10 @@ export declare const ContractPhaseScalarFieldEnum: {
|
|
|
448
475
|
readonly paidAmount: "paidAmount";
|
|
449
476
|
readonly remainingAmount: "remainingAmount";
|
|
450
477
|
readonly interestRate: "interestRate";
|
|
478
|
+
readonly approvedDocumentsCount: "approvedDocumentsCount";
|
|
479
|
+
readonly requiredDocumentsCount: "requiredDocumentsCount";
|
|
480
|
+
readonly completedStepsCount: "completedStepsCount";
|
|
481
|
+
readonly totalStepsCount: "totalStepsCount";
|
|
451
482
|
readonly dueDate: "dueDate";
|
|
452
483
|
readonly startDate: "startDate";
|
|
453
484
|
readonly endDate: "endDate";
|
|
@@ -455,6 +486,10 @@ export declare const ContractPhaseScalarFieldEnum: {
|
|
|
455
486
|
readonly completedAt: "completedAt";
|
|
456
487
|
readonly requiresPreviousPhaseCompletion: "requiresPreviousPhaseCompletion";
|
|
457
488
|
readonly minimumCompletionPercentage: "minimumCompletionPercentage";
|
|
489
|
+
readonly completionCriterion: "completionCriterion";
|
|
490
|
+
readonly paymentPlanSnapshot: "paymentPlanSnapshot";
|
|
491
|
+
readonly stepDefinitionsSnapshot: "stepDefinitionsSnapshot";
|
|
492
|
+
readonly requiredDocumentSnapshot: "requiredDocumentSnapshot";
|
|
458
493
|
readonly createdAt: "createdAt";
|
|
459
494
|
readonly updatedAt: "updatedAt";
|
|
460
495
|
};
|
|
@@ -468,13 +503,20 @@ export declare const ContractPhaseStepScalarFieldEnum: {
|
|
|
468
503
|
readonly order: "order";
|
|
469
504
|
readonly status: "status";
|
|
470
505
|
readonly assigneeId: "assigneeId";
|
|
471
|
-
readonly requiredDocumentTypes: "requiredDocumentTypes";
|
|
472
506
|
readonly dueDate: "dueDate";
|
|
473
507
|
readonly completedAt: "completedAt";
|
|
474
508
|
readonly createdAt: "createdAt";
|
|
475
509
|
readonly updatedAt: "updatedAt";
|
|
476
510
|
};
|
|
477
511
|
export type ContractPhaseStepScalarFieldEnum = (typeof ContractPhaseStepScalarFieldEnum)[keyof typeof ContractPhaseStepScalarFieldEnum];
|
|
512
|
+
export declare const ContractPhaseStepDocumentScalarFieldEnum: {
|
|
513
|
+
readonly id: "id";
|
|
514
|
+
readonly stepId: "stepId";
|
|
515
|
+
readonly documentType: "documentType";
|
|
516
|
+
readonly isRequired: "isRequired";
|
|
517
|
+
readonly createdAt: "createdAt";
|
|
518
|
+
};
|
|
519
|
+
export type ContractPhaseStepDocumentScalarFieldEnum = (typeof ContractPhaseStepDocumentScalarFieldEnum)[keyof typeof ContractPhaseStepDocumentScalarFieldEnum];
|
|
478
520
|
export declare const ContractPhaseStepApprovalScalarFieldEnum: {
|
|
479
521
|
readonly id: "id";
|
|
480
522
|
readonly stepId: "stepId";
|
|
@@ -650,15 +692,15 @@ export declare const SortOrder: {
|
|
|
650
692
|
readonly desc: "desc";
|
|
651
693
|
};
|
|
652
694
|
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
653
|
-
export declare const JsonNullValueInput: {
|
|
654
|
-
readonly JsonNull: "JsonNull";
|
|
655
|
-
};
|
|
656
|
-
export type JsonNullValueInput = (typeof JsonNullValueInput)[keyof typeof JsonNullValueInput];
|
|
657
695
|
export declare const NullableJsonNullValueInput: {
|
|
658
696
|
readonly DbNull: "DbNull";
|
|
659
697
|
readonly JsonNull: "JsonNull";
|
|
660
698
|
};
|
|
661
699
|
export type NullableJsonNullValueInput = (typeof NullableJsonNullValueInput)[keyof typeof NullableJsonNullValueInput];
|
|
700
|
+
export declare const JsonNullValueInput: {
|
|
701
|
+
readonly JsonNull: "JsonNull";
|
|
702
|
+
};
|
|
703
|
+
export type JsonNullValueInput = (typeof JsonNullValueInput)[keyof typeof JsonNullValueInput];
|
|
662
704
|
export declare const NullsOrder: {
|
|
663
705
|
readonly first: "first";
|
|
664
706
|
readonly last: "last";
|
|
@@ -855,7 +897,6 @@ export declare const PaymentPlanOrderByRelevanceFieldEnum: {
|
|
|
855
897
|
readonly tenantId: "tenantId";
|
|
856
898
|
readonly name: "name";
|
|
857
899
|
readonly description: "description";
|
|
858
|
-
readonly paymentFrequency: "paymentFrequency";
|
|
859
900
|
};
|
|
860
901
|
export type PaymentPlanOrderByRelevanceFieldEnum = (typeof PaymentPlanOrderByRelevanceFieldEnum)[keyof typeof PaymentPlanOrderByRelevanceFieldEnum];
|
|
861
902
|
export declare const PropertyPaymentMethodOrderByRelevanceFieldEnum: {
|
|
@@ -870,18 +911,39 @@ export declare const PropertyPaymentMethodLinkOrderByRelevanceFieldEnum: {
|
|
|
870
911
|
readonly paymentMethodId: "paymentMethodId";
|
|
871
912
|
};
|
|
872
913
|
export type PropertyPaymentMethodLinkOrderByRelevanceFieldEnum = (typeof PropertyPaymentMethodLinkOrderByRelevanceFieldEnum)[keyof typeof PropertyPaymentMethodLinkOrderByRelevanceFieldEnum];
|
|
914
|
+
export declare const JsonNullValueFilter: {
|
|
915
|
+
readonly DbNull: "DbNull";
|
|
916
|
+
readonly JsonNull: "JsonNull";
|
|
917
|
+
readonly AnyNull: "AnyNull";
|
|
918
|
+
};
|
|
919
|
+
export type JsonNullValueFilter = (typeof JsonNullValueFilter)[keyof typeof JsonNullValueFilter];
|
|
920
|
+
export declare const QueryMode: {
|
|
921
|
+
readonly default: "default";
|
|
922
|
+
readonly insensitive: "insensitive";
|
|
923
|
+
};
|
|
924
|
+
export type QueryMode = (typeof QueryMode)[keyof typeof QueryMode];
|
|
873
925
|
export declare const PropertyPaymentMethodPhaseOrderByRelevanceFieldEnum: {
|
|
874
926
|
readonly id: "id";
|
|
875
927
|
readonly paymentMethodId: "paymentMethodId";
|
|
876
928
|
readonly paymentPlanId: "paymentPlanId";
|
|
877
929
|
readonly name: "name";
|
|
878
930
|
readonly description: "description";
|
|
879
|
-
readonly phaseCategory: "phaseCategory";
|
|
880
|
-
readonly phaseType: "phaseType";
|
|
881
|
-
readonly requiredDocumentTypes: "requiredDocumentTypes";
|
|
882
|
-
readonly stepDefinitions: "stepDefinitions";
|
|
883
931
|
};
|
|
884
932
|
export type PropertyPaymentMethodPhaseOrderByRelevanceFieldEnum = (typeof PropertyPaymentMethodPhaseOrderByRelevanceFieldEnum)[keyof typeof PropertyPaymentMethodPhaseOrderByRelevanceFieldEnum];
|
|
933
|
+
export declare const PaymentMethodPhaseStepOrderByRelevanceFieldEnum: {
|
|
934
|
+
readonly id: "id";
|
|
935
|
+
readonly phaseId: "phaseId";
|
|
936
|
+
readonly name: "name";
|
|
937
|
+
};
|
|
938
|
+
export type PaymentMethodPhaseStepOrderByRelevanceFieldEnum = (typeof PaymentMethodPhaseStepOrderByRelevanceFieldEnum)[keyof typeof PaymentMethodPhaseStepOrderByRelevanceFieldEnum];
|
|
939
|
+
export declare const PaymentMethodPhaseDocumentOrderByRelevanceFieldEnum: {
|
|
940
|
+
readonly id: "id";
|
|
941
|
+
readonly phaseId: "phaseId";
|
|
942
|
+
readonly documentType: "documentType";
|
|
943
|
+
readonly description: "description";
|
|
944
|
+
readonly allowedMimeTypes: "allowedMimeTypes";
|
|
945
|
+
};
|
|
946
|
+
export type PaymentMethodPhaseDocumentOrderByRelevanceFieldEnum = (typeof PaymentMethodPhaseDocumentOrderByRelevanceFieldEnum)[keyof typeof PaymentMethodPhaseDocumentOrderByRelevanceFieldEnum];
|
|
885
947
|
export declare const ContractOrderByRelevanceFieldEnum: {
|
|
886
948
|
readonly id: "id";
|
|
887
949
|
readonly tenantId: "tenantId";
|
|
@@ -893,8 +955,6 @@ export declare const ContractOrderByRelevanceFieldEnum: {
|
|
|
893
955
|
readonly title: "title";
|
|
894
956
|
readonly description: "description";
|
|
895
957
|
readonly contractType: "contractType";
|
|
896
|
-
readonly status: "status";
|
|
897
|
-
readonly state: "state";
|
|
898
958
|
readonly currentPhaseId: "currentPhaseId";
|
|
899
959
|
};
|
|
900
960
|
export type ContractOrderByRelevanceFieldEnum = (typeof ContractOrderByRelevanceFieldEnum)[keyof typeof ContractOrderByRelevanceFieldEnum];
|
|
@@ -904,9 +964,6 @@ export declare const ContractPhaseOrderByRelevanceFieldEnum: {
|
|
|
904
964
|
readonly paymentPlanId: "paymentPlanId";
|
|
905
965
|
readonly name: "name";
|
|
906
966
|
readonly description: "description";
|
|
907
|
-
readonly phaseCategory: "phaseCategory";
|
|
908
|
-
readonly phaseType: "phaseType";
|
|
909
|
-
readonly status: "status";
|
|
910
967
|
};
|
|
911
968
|
export type ContractPhaseOrderByRelevanceFieldEnum = (typeof ContractPhaseOrderByRelevanceFieldEnum)[keyof typeof ContractPhaseOrderByRelevanceFieldEnum];
|
|
912
969
|
export declare const ContractPhaseStepOrderByRelevanceFieldEnum: {
|
|
@@ -914,24 +971,25 @@ export declare const ContractPhaseStepOrderByRelevanceFieldEnum: {
|
|
|
914
971
|
readonly phaseId: "phaseId";
|
|
915
972
|
readonly name: "name";
|
|
916
973
|
readonly description: "description";
|
|
917
|
-
readonly stepType: "stepType";
|
|
918
|
-
readonly status: "status";
|
|
919
974
|
readonly assigneeId: "assigneeId";
|
|
920
|
-
readonly requiredDocumentTypes: "requiredDocumentTypes";
|
|
921
975
|
};
|
|
922
976
|
export type ContractPhaseStepOrderByRelevanceFieldEnum = (typeof ContractPhaseStepOrderByRelevanceFieldEnum)[keyof typeof ContractPhaseStepOrderByRelevanceFieldEnum];
|
|
977
|
+
export declare const ContractPhaseStepDocumentOrderByRelevanceFieldEnum: {
|
|
978
|
+
readonly id: "id";
|
|
979
|
+
readonly stepId: "stepId";
|
|
980
|
+
readonly documentType: "documentType";
|
|
981
|
+
};
|
|
982
|
+
export type ContractPhaseStepDocumentOrderByRelevanceFieldEnum = (typeof ContractPhaseStepDocumentOrderByRelevanceFieldEnum)[keyof typeof ContractPhaseStepDocumentOrderByRelevanceFieldEnum];
|
|
923
983
|
export declare const ContractPhaseStepApprovalOrderByRelevanceFieldEnum: {
|
|
924
984
|
readonly id: "id";
|
|
925
985
|
readonly stepId: "stepId";
|
|
926
986
|
readonly approverId: "approverId";
|
|
927
|
-
readonly decision: "decision";
|
|
928
987
|
readonly comment: "comment";
|
|
929
988
|
};
|
|
930
989
|
export type ContractPhaseStepApprovalOrderByRelevanceFieldEnum = (typeof ContractPhaseStepApprovalOrderByRelevanceFieldEnum)[keyof typeof ContractPhaseStepApprovalOrderByRelevanceFieldEnum];
|
|
931
990
|
export declare const ContractInstallmentOrderByRelevanceFieldEnum: {
|
|
932
991
|
readonly id: "id";
|
|
933
992
|
readonly phaseId: "phaseId";
|
|
934
|
-
readonly status: "status";
|
|
935
993
|
};
|
|
936
994
|
export type ContractInstallmentOrderByRelevanceFieldEnum = (typeof ContractInstallmentOrderByRelevanceFieldEnum)[keyof typeof ContractInstallmentOrderByRelevanceFieldEnum];
|
|
937
995
|
export declare const ContractPaymentOrderByRelevanceFieldEnum: {
|
|
@@ -941,7 +999,6 @@ export declare const ContractPaymentOrderByRelevanceFieldEnum: {
|
|
|
941
999
|
readonly installmentId: "installmentId";
|
|
942
1000
|
readonly payerId: "payerId";
|
|
943
1001
|
readonly paymentMethod: "paymentMethod";
|
|
944
|
-
readonly status: "status";
|
|
945
1002
|
readonly reference: "reference";
|
|
946
1003
|
readonly gatewayResponse: "gatewayResponse";
|
|
947
1004
|
};
|
|
@@ -955,7 +1012,6 @@ export declare const ContractDocumentOrderByRelevanceFieldEnum: {
|
|
|
955
1012
|
readonly url: "url";
|
|
956
1013
|
readonly type: "type";
|
|
957
1014
|
readonly uploadedById: "uploadedById";
|
|
958
|
-
readonly status: "status";
|
|
959
1015
|
};
|
|
960
1016
|
export type ContractDocumentOrderByRelevanceFieldEnum = (typeof ContractDocumentOrderByRelevanceFieldEnum)[keyof typeof ContractDocumentOrderByRelevanceFieldEnum];
|
|
961
1017
|
export declare const ContractTransitionOrderByRelevanceFieldEnum: {
|
|
@@ -974,17 +1030,6 @@ export declare const ContractEventOrderByRelevanceFieldEnum: {
|
|
|
974
1030
|
readonly data: "data";
|
|
975
1031
|
};
|
|
976
1032
|
export type ContractEventOrderByRelevanceFieldEnum = (typeof ContractEventOrderByRelevanceFieldEnum)[keyof typeof ContractEventOrderByRelevanceFieldEnum];
|
|
977
|
-
export declare const JsonNullValueFilter: {
|
|
978
|
-
readonly DbNull: "DbNull";
|
|
979
|
-
readonly JsonNull: "JsonNull";
|
|
980
|
-
readonly AnyNull: "AnyNull";
|
|
981
|
-
};
|
|
982
|
-
export type JsonNullValueFilter = (typeof JsonNullValueFilter)[keyof typeof JsonNullValueFilter];
|
|
983
|
-
export declare const QueryMode: {
|
|
984
|
-
readonly default: "default";
|
|
985
|
-
readonly insensitive: "insensitive";
|
|
986
|
-
};
|
|
987
|
-
export type QueryMode = (typeof QueryMode)[keyof typeof QueryMode];
|
|
988
1033
|
export declare const PrequalificationOrderByRelevanceFieldEnum: {
|
|
989
1034
|
readonly id: "id";
|
|
990
1035
|
readonly tenantId: "tenantId";
|