@provis/provis-common-be-module 2.2.16 → 2.2.17

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.
Binary file
@@ -0,0 +1,30 @@
1
+ declare const insuranceType: {
2
+ code: string;
3
+ desc: {
4
+ id: string;
5
+ en: string;
6
+ };
7
+ }[];
8
+ declare const regionCode: {
9
+ code: string;
10
+ desc: {
11
+ id: string;
12
+ en: string;
13
+ };
14
+ }[];
15
+ declare const vehicleTypeCode: {
16
+ code: string;
17
+ desc: {
18
+ id: string;
19
+ en: string;
20
+ };
21
+ }[];
22
+ declare const additionalCoverage: {
23
+ code: string;
24
+ desc: {
25
+ id: string;
26
+ en: string;
27
+ };
28
+ isVisible: boolean;
29
+ }[];
30
+ export { insuranceType, regionCode, vehicleTypeCode, additionalCoverage, };
@@ -0,0 +1,151 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.additionalCoverage = exports.vehicleTypeCode = exports.regionCode = exports.insuranceType = void 0;
4
+ const insuranceType = [
5
+ {
6
+ code: "all-risk",
7
+ desc: {
8
+ id: "Komprehensif",
9
+ en: "Comprehensive",
10
+ },
11
+ },
12
+ {
13
+ code: "total-loss",
14
+ desc: {
15
+ id: "Kerugian Total",
16
+ en: "Total Loss",
17
+ },
18
+ },
19
+ ];
20
+ exports.insuranceType = insuranceType;
21
+ const regionCode = [
22
+ {
23
+ code: "RC001",
24
+ desc: {
25
+ id: "Wilayah 1",
26
+ en: "Region 1",
27
+ },
28
+ },
29
+ {
30
+ code: "RC002",
31
+ desc: {
32
+ id: "Wilayah 2",
33
+ en: "Region 2",
34
+ },
35
+ },
36
+ {
37
+ code: "RC003",
38
+ desc: {
39
+ id: "Wilayah 3",
40
+ en: "Region 3",
41
+ },
42
+ },
43
+ ];
44
+ exports.regionCode = regionCode;
45
+ const vehicleTypeCode = [
46
+ {
47
+ code: "VT001",
48
+ desc: {
49
+ id: "Jenis Kendaraan Non Bus dan Non Truk",
50
+ en: "Types of Non-Bus and Non-Truck Vehicles",
51
+ },
52
+ },
53
+ {
54
+ code: "VT002",
55
+ desc: {
56
+ id: "Jenis Kendaraan Bus, Truk dan Pickup",
57
+ en: "Vehicle Types Bus, Truck and Pickup",
58
+ },
59
+ },
60
+ {
61
+ code: "VT003",
62
+ desc: {
63
+ id: "Jenis Kendaraan Roda 2 (dua)",
64
+ en: "Type of 2 (two) Wheeled Vehicle",
65
+ },
66
+ },
67
+ ];
68
+ exports.vehicleTypeCode = vehicleTypeCode;
69
+ const additionalCoverage = [
70
+ {
71
+ code: "TSFWD",
72
+ desc: {
73
+ id: "Topan, Badai, Banjir, Kerusakan Akibat Air",
74
+ en: "Typhoon, Storm, Flood, Water Damage",
75
+ },
76
+ isVisible: true,
77
+ },
78
+ {
79
+ code: "EQVET",
80
+ desc: {
81
+ id: "Gempa Bumi, Letusan Gunung Berapi dan Tsunami",
82
+ en: "Earthquake, Volcanic Eruption and Tsunami",
83
+ },
84
+ isVisible: true,
85
+ },
86
+ {
87
+ code: "SRCC",
88
+ desc: {
89
+ id: "Mogok Kerja, Kerusuhan dan Kerusuhan Sipil",
90
+ en: "Strike, Riot & Civil Commotion",
91
+ },
92
+ isVisible: true,
93
+ },
94
+ {
95
+ code: "PSATSI",
96
+ desc: {
97
+ id: "Terorisme dan Sabotase",
98
+ en: "Terrorism and Sabotage",
99
+ },
100
+ isVisible: true,
101
+ },
102
+ {
103
+ code: "TPL",
104
+ desc: {
105
+ id: "Tanggung Jawab Hukum Pihak Ketiga",
106
+ en: "Third Party Liability",
107
+ },
108
+ isVisible: true,
109
+ },
110
+ {
111
+ code: "PAD",
112
+ desc: {
113
+ id: "Kecelakaan Pengemudi",
114
+ en: "Personal Accident Driver",
115
+ },
116
+ isVisible: true,
117
+ },
118
+ {
119
+ code: "PAP",
120
+ desc: {
121
+ id: " Kcelakaan Penumpang",
122
+ en: "Personal Accident Passenger",
123
+ },
124
+ isVisible: true,
125
+ },
126
+ {
127
+ code: "TBOD",
128
+ desc: {
129
+ id: "Biaya Medis, Izin Bengkel, Tunjangan Ambulans, Ban dan Velg",
130
+ en: "TBOD, Authorize Workshop, Ambulance Allowance, Tire and Wheel",
131
+ },
132
+ isVisible: true,
133
+ },
134
+ {
135
+ code: "CASCO",
136
+ desc: {
137
+ id: "",
138
+ en: "",
139
+ },
140
+ isVisible: false,
141
+ },
142
+ {
143
+ code: "TLO",
144
+ desc: {
145
+ id: "",
146
+ en: "",
147
+ },
148
+ isVisible: false,
149
+ },
150
+ ];
151
+ exports.additionalCoverage = additionalCoverage;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@provis/provis-common-be-module",
3
- "version": "2.2.16",
3
+ "version": "2.2.17",
4
4
  "description": "This common module for Provis internal backend use lib",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {