plac-micro-common 1.2.26 → 1.2.27
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.
|
@@ -10,3 +10,11 @@ export declare enum ApplicationStatus {
|
|
|
10
10
|
Transferred = "transferred",// pushed to core successfully
|
|
11
11
|
Cancelled = "cancelled"
|
|
12
12
|
}
|
|
13
|
+
export declare enum AppPersonRole {
|
|
14
|
+
PolicyHolder = "policy_holder",
|
|
15
|
+
LifeAssured = "life_assured"
|
|
16
|
+
}
|
|
17
|
+
export declare enum AppPhLaRelation {
|
|
18
|
+
SamePerson = "same_person",
|
|
19
|
+
DifferentPerson = "different_person"
|
|
20
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ApplicationStatus = void 0;
|
|
3
|
+
exports.AppPhLaRelation = exports.AppPersonRole = exports.ApplicationStatus = void 0;
|
|
4
4
|
var ApplicationStatus;
|
|
5
5
|
(function (ApplicationStatus) {
|
|
6
6
|
ApplicationStatus["New"] = "new";
|
|
@@ -14,3 +14,13 @@ var ApplicationStatus;
|
|
|
14
14
|
ApplicationStatus["Transferred"] = "transferred";
|
|
15
15
|
ApplicationStatus["Cancelled"] = "cancelled";
|
|
16
16
|
})(ApplicationStatus || (exports.ApplicationStatus = ApplicationStatus = {}));
|
|
17
|
+
var AppPersonRole;
|
|
18
|
+
(function (AppPersonRole) {
|
|
19
|
+
AppPersonRole["PolicyHolder"] = "policy_holder";
|
|
20
|
+
AppPersonRole["LifeAssured"] = "life_assured";
|
|
21
|
+
})(AppPersonRole || (exports.AppPersonRole = AppPersonRole = {}));
|
|
22
|
+
var AppPhLaRelation;
|
|
23
|
+
(function (AppPhLaRelation) {
|
|
24
|
+
AppPhLaRelation["SamePerson"] = "same_person";
|
|
25
|
+
AppPhLaRelation["DifferentPerson"] = "different_person";
|
|
26
|
+
})(AppPhLaRelation || (exports.AppPhLaRelation = AppPhLaRelation = {}));
|