@provis/provis-common-be-module 2.5.21 → 2.5.23
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.
|
@@ -2,18 +2,24 @@ declare const _default: {
|
|
|
2
2
|
generalInsurance: {
|
|
3
3
|
GEN0001: {
|
|
4
4
|
key: string;
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
desc: {
|
|
6
|
+
en: string;
|
|
7
|
+
id: string;
|
|
8
|
+
};
|
|
7
9
|
};
|
|
8
10
|
GEN0002: {
|
|
9
11
|
key: string;
|
|
10
|
-
|
|
11
|
-
|
|
12
|
+
desc: {
|
|
13
|
+
en: string;
|
|
14
|
+
id: string;
|
|
15
|
+
};
|
|
12
16
|
};
|
|
13
17
|
GEN0003: {
|
|
14
18
|
key: string;
|
|
15
|
-
|
|
16
|
-
|
|
19
|
+
desc: {
|
|
20
|
+
en: string;
|
|
21
|
+
id: string;
|
|
22
|
+
};
|
|
17
23
|
};
|
|
18
24
|
LIST_RISK: any[];
|
|
19
25
|
};
|
|
@@ -3,9 +3,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const travel_1 = require("./travel");
|
|
4
4
|
const motorVehicle_1 = require("./motorVehicle");
|
|
5
5
|
const generalInsurance = {
|
|
6
|
-
GEN0001: { key: 'GEN0001',
|
|
7
|
-
GEN0002: { key: 'GEN0002',
|
|
8
|
-
GEN0003: { key: 'GEN0003',
|
|
6
|
+
GEN0001: { key: 'GEN0001', desc: { en: 'Stamped Power of Attorney', id: 'Surat Kuasa Bermaterai' } },
|
|
7
|
+
GEN0002: { key: 'GEN0002', desc: { en: 'Identity of the Authorizer', id: 'Identitas Pemberi Kuasa' } },
|
|
8
|
+
GEN0003: { key: 'GEN0003', desc: { en: 'Identity of the Authorized Person', id: 'Identitas Penerima Kuasa' } },
|
|
9
9
|
LIST_RISK: [], // untuk ambil list dari resiko
|
|
10
10
|
};
|
|
11
11
|
generalInsurance.LIST_RISK.push(generalInsurance.GEN0001.key);
|