@valentine-efagene/qshelter-common 2.0.56 → 2.0.58
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/enums.d.ts +3 -0
- package/dist/generated/client/enums.js +4 -1
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +6 -0
- package/dist/generated/client/internal/prismaNamespace.js +7 -1
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +6 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +7 -1
- package/dist/generated/client/models/ContractPhase.d.ts +345 -1
- package/dist/generated/client/models/DocumentationStep.d.ts +337 -1
- package/package.json +1 -1
- package/prisma/migrations/20260105081842_unify_contract_events/migration.sql +37 -0
- package/prisma/migrations/20260105085337_simplify_los_remove_prequalification/migration.sql +1 -0
- package/prisma/migrations/20260105094604_workflow_tracking_current_step/migration.sql +14 -0
- package/prisma/schema.prisma +28 -1
|
@@ -3761,6 +3761,7 @@ export declare const ContractPhaseScalarFieldEnum: {
|
|
|
3761
3761
|
readonly phaseType: "phaseType";
|
|
3762
3762
|
readonly order: "order";
|
|
3763
3763
|
readonly status: "status";
|
|
3764
|
+
readonly currentStepId: "currentStepId";
|
|
3764
3765
|
readonly totalAmount: "totalAmount";
|
|
3765
3766
|
readonly paidAmount: "paidAmount";
|
|
3766
3767
|
readonly remainingAmount: "remainingAmount";
|
|
@@ -3793,6 +3794,9 @@ export declare const DocumentationStepScalarFieldEnum: {
|
|
|
3793
3794
|
readonly stepType: "stepType";
|
|
3794
3795
|
readonly order: "order";
|
|
3795
3796
|
readonly status: "status";
|
|
3797
|
+
readonly actionReason: "actionReason";
|
|
3798
|
+
readonly submissionCount: "submissionCount";
|
|
3799
|
+
readonly lastSubmittedAt: "lastSubmittedAt";
|
|
3796
3800
|
readonly metadata: "metadata";
|
|
3797
3801
|
readonly preApprovalAnswers: "preApprovalAnswers";
|
|
3798
3802
|
readonly underwritingScore: "underwritingScore";
|
|
@@ -4324,6 +4328,7 @@ export declare const ContractPhaseOrderByRelevanceFieldEnum: {
|
|
|
4324
4328
|
readonly paymentPlanId: "paymentPlanId";
|
|
4325
4329
|
readonly name: "name";
|
|
4326
4330
|
readonly description: "description";
|
|
4331
|
+
readonly currentStepId: "currentStepId";
|
|
4327
4332
|
};
|
|
4328
4333
|
export type ContractPhaseOrderByRelevanceFieldEnum = (typeof ContractPhaseOrderByRelevanceFieldEnum)[keyof typeof ContractPhaseOrderByRelevanceFieldEnum];
|
|
4329
4334
|
export declare const DocumentationStepOrderByRelevanceFieldEnum: {
|
|
@@ -4331,6 +4336,7 @@ export declare const DocumentationStepOrderByRelevanceFieldEnum: {
|
|
|
4331
4336
|
readonly phaseId: "phaseId";
|
|
4332
4337
|
readonly name: "name";
|
|
4333
4338
|
readonly description: "description";
|
|
4339
|
+
readonly actionReason: "actionReason";
|
|
4334
4340
|
readonly underwritingDecision: "underwritingDecision";
|
|
4335
4341
|
readonly underwritingNotes: "underwritingNotes";
|
|
4336
4342
|
readonly assigneeId: "assigneeId";
|
|
@@ -489,6 +489,7 @@ export const ContractPhaseScalarFieldEnum = {
|
|
|
489
489
|
phaseType: 'phaseType',
|
|
490
490
|
order: 'order',
|
|
491
491
|
status: 'status',
|
|
492
|
+
currentStepId: 'currentStepId',
|
|
492
493
|
totalAmount: 'totalAmount',
|
|
493
494
|
paidAmount: 'paidAmount',
|
|
494
495
|
remainingAmount: 'remainingAmount',
|
|
@@ -520,6 +521,9 @@ export const DocumentationStepScalarFieldEnum = {
|
|
|
520
521
|
stepType: 'stepType',
|
|
521
522
|
order: 'order',
|
|
522
523
|
status: 'status',
|
|
524
|
+
actionReason: 'actionReason',
|
|
525
|
+
submissionCount: 'submissionCount',
|
|
526
|
+
lastSubmittedAt: 'lastSubmittedAt',
|
|
523
527
|
metadata: 'metadata',
|
|
524
528
|
preApprovalAnswers: 'preApprovalAnswers',
|
|
525
529
|
underwritingScore: 'underwritingScore',
|
|
@@ -999,13 +1003,15 @@ export const ContractPhaseOrderByRelevanceFieldEnum = {
|
|
|
999
1003
|
contractId: 'contractId',
|
|
1000
1004
|
paymentPlanId: 'paymentPlanId',
|
|
1001
1005
|
name: 'name',
|
|
1002
|
-
description: 'description'
|
|
1006
|
+
description: 'description',
|
|
1007
|
+
currentStepId: 'currentStepId'
|
|
1003
1008
|
};
|
|
1004
1009
|
export const DocumentationStepOrderByRelevanceFieldEnum = {
|
|
1005
1010
|
id: 'id',
|
|
1006
1011
|
phaseId: 'phaseId',
|
|
1007
1012
|
name: 'name',
|
|
1008
1013
|
description: 'description',
|
|
1014
|
+
actionReason: 'actionReason',
|
|
1009
1015
|
underwritingDecision: 'underwritingDecision',
|
|
1010
1016
|
underwritingNotes: 'underwritingNotes',
|
|
1011
1017
|
assigneeId: 'assigneeId'
|
|
@@ -479,6 +479,7 @@ export declare const ContractPhaseScalarFieldEnum: {
|
|
|
479
479
|
readonly phaseType: "phaseType";
|
|
480
480
|
readonly order: "order";
|
|
481
481
|
readonly status: "status";
|
|
482
|
+
readonly currentStepId: "currentStepId";
|
|
482
483
|
readonly totalAmount: "totalAmount";
|
|
483
484
|
readonly paidAmount: "paidAmount";
|
|
484
485
|
readonly remainingAmount: "remainingAmount";
|
|
@@ -511,6 +512,9 @@ export declare const DocumentationStepScalarFieldEnum: {
|
|
|
511
512
|
readonly stepType: "stepType";
|
|
512
513
|
readonly order: "order";
|
|
513
514
|
readonly status: "status";
|
|
515
|
+
readonly actionReason: "actionReason";
|
|
516
|
+
readonly submissionCount: "submissionCount";
|
|
517
|
+
readonly lastSubmittedAt: "lastSubmittedAt";
|
|
514
518
|
readonly metadata: "metadata";
|
|
515
519
|
readonly preApprovalAnswers: "preApprovalAnswers";
|
|
516
520
|
readonly underwritingScore: "underwritingScore";
|
|
@@ -1042,6 +1046,7 @@ export declare const ContractPhaseOrderByRelevanceFieldEnum: {
|
|
|
1042
1046
|
readonly paymentPlanId: "paymentPlanId";
|
|
1043
1047
|
readonly name: "name";
|
|
1044
1048
|
readonly description: "description";
|
|
1049
|
+
readonly currentStepId: "currentStepId";
|
|
1045
1050
|
};
|
|
1046
1051
|
export type ContractPhaseOrderByRelevanceFieldEnum = (typeof ContractPhaseOrderByRelevanceFieldEnum)[keyof typeof ContractPhaseOrderByRelevanceFieldEnum];
|
|
1047
1052
|
export declare const DocumentationStepOrderByRelevanceFieldEnum: {
|
|
@@ -1049,6 +1054,7 @@ export declare const DocumentationStepOrderByRelevanceFieldEnum: {
|
|
|
1049
1054
|
readonly phaseId: "phaseId";
|
|
1050
1055
|
readonly name: "name";
|
|
1051
1056
|
readonly description: "description";
|
|
1057
|
+
readonly actionReason: "actionReason";
|
|
1052
1058
|
readonly underwritingDecision: "underwritingDecision";
|
|
1053
1059
|
readonly underwritingNotes: "underwritingNotes";
|
|
1054
1060
|
readonly assigneeId: "assigneeId";
|
|
@@ -461,6 +461,7 @@ export const ContractPhaseScalarFieldEnum = {
|
|
|
461
461
|
phaseType: 'phaseType',
|
|
462
462
|
order: 'order',
|
|
463
463
|
status: 'status',
|
|
464
|
+
currentStepId: 'currentStepId',
|
|
464
465
|
totalAmount: 'totalAmount',
|
|
465
466
|
paidAmount: 'paidAmount',
|
|
466
467
|
remainingAmount: 'remainingAmount',
|
|
@@ -492,6 +493,9 @@ export const DocumentationStepScalarFieldEnum = {
|
|
|
492
493
|
stepType: 'stepType',
|
|
493
494
|
order: 'order',
|
|
494
495
|
status: 'status',
|
|
496
|
+
actionReason: 'actionReason',
|
|
497
|
+
submissionCount: 'submissionCount',
|
|
498
|
+
lastSubmittedAt: 'lastSubmittedAt',
|
|
495
499
|
metadata: 'metadata',
|
|
496
500
|
preApprovalAnswers: 'preApprovalAnswers',
|
|
497
501
|
underwritingScore: 'underwritingScore',
|
|
@@ -971,13 +975,15 @@ export const ContractPhaseOrderByRelevanceFieldEnum = {
|
|
|
971
975
|
contractId: 'contractId',
|
|
972
976
|
paymentPlanId: 'paymentPlanId',
|
|
973
977
|
name: 'name',
|
|
974
|
-
description: 'description'
|
|
978
|
+
description: 'description',
|
|
979
|
+
currentStepId: 'currentStepId'
|
|
975
980
|
};
|
|
976
981
|
export const DocumentationStepOrderByRelevanceFieldEnum = {
|
|
977
982
|
id: 'id',
|
|
978
983
|
phaseId: 'phaseId',
|
|
979
984
|
name: 'name',
|
|
980
985
|
description: 'description',
|
|
986
|
+
actionReason: 'actionReason',
|
|
981
987
|
underwritingDecision: 'underwritingDecision',
|
|
982
988
|
underwritingNotes: 'underwritingNotes',
|
|
983
989
|
assigneeId: 'assigneeId'
|