@valentine-efagene/qshelter-common 2.0.113 → 2.0.115
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 +2 -0
- package/dist/generated/client/enums.js +4 -2
- 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 +8 -2
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +6 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +8 -2
- package/dist/generated/client/models/Application.d.ts +793 -1
- package/dist/generated/client/models/ApplicationPhase.d.ts +277 -1
- package/dist/generated/client/models/PropertyPaymentMethodPhase.d.ts +295 -1
- package/package.json +1 -1
- package/prisma/migrations/20260115055636_add_unit_locking/migration.sql +16 -0
- package/prisma/migrations/20260115060132_add_phase_template_reference/migration.sql +8 -0
- package/prisma/schema.prisma +22 -0
|
@@ -5281,6 +5281,7 @@ export declare const PropertyPaymentMethodPhaseScalarFieldEnum: {
|
|
|
5281
5281
|
readonly requiresPreviousPhaseCompletion: "requiresPreviousPhaseCompletion";
|
|
5282
5282
|
readonly minimumCompletionPercentage: "minimumCompletionPercentage";
|
|
5283
5283
|
readonly completionCriterion: "completionCriterion";
|
|
5284
|
+
readonly lockUnitOnComplete: "lockUnitOnComplete";
|
|
5284
5285
|
readonly stepDefinitionsSnapshot: "stepDefinitionsSnapshot";
|
|
5285
5286
|
readonly requiredDocumentSnapshot: "requiredDocumentSnapshot";
|
|
5286
5287
|
readonly createdAt: "createdAt";
|
|
@@ -5377,6 +5378,8 @@ export declare const ApplicationScalarFieldEnum: {
|
|
|
5377
5378
|
readonly createdAt: "createdAt";
|
|
5378
5379
|
readonly updatedAt: "updatedAt";
|
|
5379
5380
|
readonly transferredFromId: "transferredFromId";
|
|
5381
|
+
readonly supersededById: "supersededById";
|
|
5382
|
+
readonly supersededAt: "supersededAt";
|
|
5380
5383
|
};
|
|
5381
5384
|
export type ApplicationScalarFieldEnum = (typeof ApplicationScalarFieldEnum)[keyof typeof ApplicationScalarFieldEnum];
|
|
5382
5385
|
export declare const ApplicationRefundScalarFieldEnum: {
|
|
@@ -5409,6 +5412,7 @@ export declare const ApplicationPhaseScalarFieldEnum: {
|
|
|
5409
5412
|
readonly id: "id";
|
|
5410
5413
|
readonly tenantId: "tenantId";
|
|
5411
5414
|
readonly applicationId: "applicationId";
|
|
5415
|
+
readonly phaseTemplateId: "phaseTemplateId";
|
|
5412
5416
|
readonly name: "name";
|
|
5413
5417
|
readonly description: "description";
|
|
5414
5418
|
readonly phaseCategory: "phaseCategory";
|
|
@@ -6282,6 +6286,7 @@ export declare const ApplicationOrderByRelevanceFieldEnum: {
|
|
|
6282
6286
|
readonly applicationType: "applicationType";
|
|
6283
6287
|
readonly currentPhaseId: "currentPhaseId";
|
|
6284
6288
|
readonly transferredFromId: "transferredFromId";
|
|
6289
|
+
readonly supersededById: "supersededById";
|
|
6285
6290
|
};
|
|
6286
6291
|
export type ApplicationOrderByRelevanceFieldEnum = (typeof ApplicationOrderByRelevanceFieldEnum)[keyof typeof ApplicationOrderByRelevanceFieldEnum];
|
|
6287
6292
|
export declare const ApplicationRefundOrderByRelevanceFieldEnum: {
|
|
@@ -6306,6 +6311,7 @@ export declare const ApplicationPhaseOrderByRelevanceFieldEnum: {
|
|
|
6306
6311
|
readonly id: "id";
|
|
6307
6312
|
readonly tenantId: "tenantId";
|
|
6308
6313
|
readonly applicationId: "applicationId";
|
|
6314
|
+
readonly phaseTemplateId: "phaseTemplateId";
|
|
6309
6315
|
readonly name: "name";
|
|
6310
6316
|
readonly description: "description";
|
|
6311
6317
|
};
|
|
@@ -555,6 +555,7 @@ export const PropertyPaymentMethodPhaseScalarFieldEnum = {
|
|
|
555
555
|
requiresPreviousPhaseCompletion: 'requiresPreviousPhaseCompletion',
|
|
556
556
|
minimumCompletionPercentage: 'minimumCompletionPercentage',
|
|
557
557
|
completionCriterion: 'completionCriterion',
|
|
558
|
+
lockUnitOnComplete: 'lockUnitOnComplete',
|
|
558
559
|
stepDefinitionsSnapshot: 'stepDefinitionsSnapshot',
|
|
559
560
|
requiredDocumentSnapshot: 'requiredDocumentSnapshot',
|
|
560
561
|
createdAt: 'createdAt',
|
|
@@ -644,7 +645,9 @@ export const ApplicationScalarFieldEnum = {
|
|
|
644
645
|
terminatedAt: 'terminatedAt',
|
|
645
646
|
createdAt: 'createdAt',
|
|
646
647
|
updatedAt: 'updatedAt',
|
|
647
|
-
transferredFromId: 'transferredFromId'
|
|
648
|
+
transferredFromId: 'transferredFromId',
|
|
649
|
+
supersededById: 'supersededById',
|
|
650
|
+
supersededAt: 'supersededAt'
|
|
648
651
|
};
|
|
649
652
|
export const ApplicationRefundScalarFieldEnum = {
|
|
650
653
|
id: 'id',
|
|
@@ -675,6 +678,7 @@ export const ApplicationPhaseScalarFieldEnum = {
|
|
|
675
678
|
id: 'id',
|
|
676
679
|
tenantId: 'tenantId',
|
|
677
680
|
applicationId: 'applicationId',
|
|
681
|
+
phaseTemplateId: 'phaseTemplateId',
|
|
678
682
|
name: 'name',
|
|
679
683
|
description: 'description',
|
|
680
684
|
phaseCategory: 'phaseCategory',
|
|
@@ -1475,7 +1479,8 @@ export const ApplicationOrderByRelevanceFieldEnum = {
|
|
|
1475
1479
|
description: 'description',
|
|
1476
1480
|
applicationType: 'applicationType',
|
|
1477
1481
|
currentPhaseId: 'currentPhaseId',
|
|
1478
|
-
transferredFromId: 'transferredFromId'
|
|
1482
|
+
transferredFromId: 'transferredFromId',
|
|
1483
|
+
supersededById: 'supersededById'
|
|
1479
1484
|
};
|
|
1480
1485
|
export const ApplicationRefundOrderByRelevanceFieldEnum = {
|
|
1481
1486
|
id: 'id',
|
|
@@ -1498,6 +1503,7 @@ export const ApplicationPhaseOrderByRelevanceFieldEnum = {
|
|
|
1498
1503
|
id: 'id',
|
|
1499
1504
|
tenantId: 'tenantId',
|
|
1500
1505
|
applicationId: 'applicationId',
|
|
1506
|
+
phaseTemplateId: 'phaseTemplateId',
|
|
1501
1507
|
name: 'name',
|
|
1502
1508
|
description: 'description'
|
|
1503
1509
|
};
|
|
@@ -547,6 +547,7 @@ export declare const PropertyPaymentMethodPhaseScalarFieldEnum: {
|
|
|
547
547
|
readonly requiresPreviousPhaseCompletion: "requiresPreviousPhaseCompletion";
|
|
548
548
|
readonly minimumCompletionPercentage: "minimumCompletionPercentage";
|
|
549
549
|
readonly completionCriterion: "completionCriterion";
|
|
550
|
+
readonly lockUnitOnComplete: "lockUnitOnComplete";
|
|
550
551
|
readonly stepDefinitionsSnapshot: "stepDefinitionsSnapshot";
|
|
551
552
|
readonly requiredDocumentSnapshot: "requiredDocumentSnapshot";
|
|
552
553
|
readonly createdAt: "createdAt";
|
|
@@ -643,6 +644,8 @@ export declare const ApplicationScalarFieldEnum: {
|
|
|
643
644
|
readonly createdAt: "createdAt";
|
|
644
645
|
readonly updatedAt: "updatedAt";
|
|
645
646
|
readonly transferredFromId: "transferredFromId";
|
|
647
|
+
readonly supersededById: "supersededById";
|
|
648
|
+
readonly supersededAt: "supersededAt";
|
|
646
649
|
};
|
|
647
650
|
export type ApplicationScalarFieldEnum = (typeof ApplicationScalarFieldEnum)[keyof typeof ApplicationScalarFieldEnum];
|
|
648
651
|
export declare const ApplicationRefundScalarFieldEnum: {
|
|
@@ -675,6 +678,7 @@ export declare const ApplicationPhaseScalarFieldEnum: {
|
|
|
675
678
|
readonly id: "id";
|
|
676
679
|
readonly tenantId: "tenantId";
|
|
677
680
|
readonly applicationId: "applicationId";
|
|
681
|
+
readonly phaseTemplateId: "phaseTemplateId";
|
|
678
682
|
readonly name: "name";
|
|
679
683
|
readonly description: "description";
|
|
680
684
|
readonly phaseCategory: "phaseCategory";
|
|
@@ -1548,6 +1552,7 @@ export declare const ApplicationOrderByRelevanceFieldEnum: {
|
|
|
1548
1552
|
readonly applicationType: "applicationType";
|
|
1549
1553
|
readonly currentPhaseId: "currentPhaseId";
|
|
1550
1554
|
readonly transferredFromId: "transferredFromId";
|
|
1555
|
+
readonly supersededById: "supersededById";
|
|
1551
1556
|
};
|
|
1552
1557
|
export type ApplicationOrderByRelevanceFieldEnum = (typeof ApplicationOrderByRelevanceFieldEnum)[keyof typeof ApplicationOrderByRelevanceFieldEnum];
|
|
1553
1558
|
export declare const ApplicationRefundOrderByRelevanceFieldEnum: {
|
|
@@ -1572,6 +1577,7 @@ export declare const ApplicationPhaseOrderByRelevanceFieldEnum: {
|
|
|
1572
1577
|
readonly id: "id";
|
|
1573
1578
|
readonly tenantId: "tenantId";
|
|
1574
1579
|
readonly applicationId: "applicationId";
|
|
1580
|
+
readonly phaseTemplateId: "phaseTemplateId";
|
|
1575
1581
|
readonly name: "name";
|
|
1576
1582
|
readonly description: "description";
|
|
1577
1583
|
};
|
|
@@ -527,6 +527,7 @@ export const PropertyPaymentMethodPhaseScalarFieldEnum = {
|
|
|
527
527
|
requiresPreviousPhaseCompletion: 'requiresPreviousPhaseCompletion',
|
|
528
528
|
minimumCompletionPercentage: 'minimumCompletionPercentage',
|
|
529
529
|
completionCriterion: 'completionCriterion',
|
|
530
|
+
lockUnitOnComplete: 'lockUnitOnComplete',
|
|
530
531
|
stepDefinitionsSnapshot: 'stepDefinitionsSnapshot',
|
|
531
532
|
requiredDocumentSnapshot: 'requiredDocumentSnapshot',
|
|
532
533
|
createdAt: 'createdAt',
|
|
@@ -616,7 +617,9 @@ export const ApplicationScalarFieldEnum = {
|
|
|
616
617
|
terminatedAt: 'terminatedAt',
|
|
617
618
|
createdAt: 'createdAt',
|
|
618
619
|
updatedAt: 'updatedAt',
|
|
619
|
-
transferredFromId: 'transferredFromId'
|
|
620
|
+
transferredFromId: 'transferredFromId',
|
|
621
|
+
supersededById: 'supersededById',
|
|
622
|
+
supersededAt: 'supersededAt'
|
|
620
623
|
};
|
|
621
624
|
export const ApplicationRefundScalarFieldEnum = {
|
|
622
625
|
id: 'id',
|
|
@@ -647,6 +650,7 @@ export const ApplicationPhaseScalarFieldEnum = {
|
|
|
647
650
|
id: 'id',
|
|
648
651
|
tenantId: 'tenantId',
|
|
649
652
|
applicationId: 'applicationId',
|
|
653
|
+
phaseTemplateId: 'phaseTemplateId',
|
|
650
654
|
name: 'name',
|
|
651
655
|
description: 'description',
|
|
652
656
|
phaseCategory: 'phaseCategory',
|
|
@@ -1447,7 +1451,8 @@ export const ApplicationOrderByRelevanceFieldEnum = {
|
|
|
1447
1451
|
description: 'description',
|
|
1448
1452
|
applicationType: 'applicationType',
|
|
1449
1453
|
currentPhaseId: 'currentPhaseId',
|
|
1450
|
-
transferredFromId: 'transferredFromId'
|
|
1454
|
+
transferredFromId: 'transferredFromId',
|
|
1455
|
+
supersededById: 'supersededById'
|
|
1451
1456
|
};
|
|
1452
1457
|
export const ApplicationRefundOrderByRelevanceFieldEnum = {
|
|
1453
1458
|
id: 'id',
|
|
@@ -1470,6 +1475,7 @@ export const ApplicationPhaseOrderByRelevanceFieldEnum = {
|
|
|
1470
1475
|
id: 'id',
|
|
1471
1476
|
tenantId: 'tenantId',
|
|
1472
1477
|
applicationId: 'applicationId',
|
|
1478
|
+
phaseTemplateId: 'phaseTemplateId',
|
|
1473
1479
|
name: 'name',
|
|
1474
1480
|
description: 'description'
|
|
1475
1481
|
};
|