@valentine-efagene/qshelter-common 2.0.114 → 2.0.116
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/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +2 -0
- package/dist/generated/client/internal/prismaNamespace.js +2 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +2 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +2 -0
- package/dist/generated/client/models/ApplicationPhase.d.ts +277 -1
- package/dist/generated/client/models/PropertyPaymentMethodPhase.d.ts +221 -0
- package/dist/src/events/notifications/notification-enums.d.ts +3 -0
- package/dist/src/events/notifications/notification-enums.js +4 -0
- 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 +7 -0
|
@@ -5412,6 +5412,7 @@ export declare const ApplicationPhaseScalarFieldEnum: {
|
|
|
5412
5412
|
readonly id: "id";
|
|
5413
5413
|
readonly tenantId: "tenantId";
|
|
5414
5414
|
readonly applicationId: "applicationId";
|
|
5415
|
+
readonly phaseTemplateId: "phaseTemplateId";
|
|
5415
5416
|
readonly name: "name";
|
|
5416
5417
|
readonly description: "description";
|
|
5417
5418
|
readonly phaseCategory: "phaseCategory";
|
|
@@ -6310,6 +6311,7 @@ export declare const ApplicationPhaseOrderByRelevanceFieldEnum: {
|
|
|
6310
6311
|
readonly id: "id";
|
|
6311
6312
|
readonly tenantId: "tenantId";
|
|
6312
6313
|
readonly applicationId: "applicationId";
|
|
6314
|
+
readonly phaseTemplateId: "phaseTemplateId";
|
|
6313
6315
|
readonly name: "name";
|
|
6314
6316
|
readonly description: "description";
|
|
6315
6317
|
};
|
|
@@ -678,6 +678,7 @@ export const ApplicationPhaseScalarFieldEnum = {
|
|
|
678
678
|
id: 'id',
|
|
679
679
|
tenantId: 'tenantId',
|
|
680
680
|
applicationId: 'applicationId',
|
|
681
|
+
phaseTemplateId: 'phaseTemplateId',
|
|
681
682
|
name: 'name',
|
|
682
683
|
description: 'description',
|
|
683
684
|
phaseCategory: 'phaseCategory',
|
|
@@ -1502,6 +1503,7 @@ export const ApplicationPhaseOrderByRelevanceFieldEnum = {
|
|
|
1502
1503
|
id: 'id',
|
|
1503
1504
|
tenantId: 'tenantId',
|
|
1504
1505
|
applicationId: 'applicationId',
|
|
1506
|
+
phaseTemplateId: 'phaseTemplateId',
|
|
1505
1507
|
name: 'name',
|
|
1506
1508
|
description: 'description'
|
|
1507
1509
|
};
|
|
@@ -678,6 +678,7 @@ export declare const ApplicationPhaseScalarFieldEnum: {
|
|
|
678
678
|
readonly id: "id";
|
|
679
679
|
readonly tenantId: "tenantId";
|
|
680
680
|
readonly applicationId: "applicationId";
|
|
681
|
+
readonly phaseTemplateId: "phaseTemplateId";
|
|
681
682
|
readonly name: "name";
|
|
682
683
|
readonly description: "description";
|
|
683
684
|
readonly phaseCategory: "phaseCategory";
|
|
@@ -1576,6 +1577,7 @@ export declare const ApplicationPhaseOrderByRelevanceFieldEnum: {
|
|
|
1576
1577
|
readonly id: "id";
|
|
1577
1578
|
readonly tenantId: "tenantId";
|
|
1578
1579
|
readonly applicationId: "applicationId";
|
|
1580
|
+
readonly phaseTemplateId: "phaseTemplateId";
|
|
1579
1581
|
readonly name: "name";
|
|
1580
1582
|
readonly description: "description";
|
|
1581
1583
|
};
|
|
@@ -650,6 +650,7 @@ export const ApplicationPhaseScalarFieldEnum = {
|
|
|
650
650
|
id: 'id',
|
|
651
651
|
tenantId: 'tenantId',
|
|
652
652
|
applicationId: 'applicationId',
|
|
653
|
+
phaseTemplateId: 'phaseTemplateId',
|
|
653
654
|
name: 'name',
|
|
654
655
|
description: 'description',
|
|
655
656
|
phaseCategory: 'phaseCategory',
|
|
@@ -1474,6 +1475,7 @@ export const ApplicationPhaseOrderByRelevanceFieldEnum = {
|
|
|
1474
1475
|
id: 'id',
|
|
1475
1476
|
tenantId: 'tenantId',
|
|
1476
1477
|
applicationId: 'applicationId',
|
|
1478
|
+
phaseTemplateId: 'phaseTemplateId',
|
|
1477
1479
|
name: 'name',
|
|
1478
1480
|
description: 'description'
|
|
1479
1481
|
};
|