@provis/provis-common-be-module 2.6.82 → 2.6.84

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.
Files changed (35) hide show
  1. package/dist/class/main.repository.js +4 -4
  2. package/dist/constants/bankAccount.d.ts +8 -0
  3. package/dist/constants/bankAccount.js +54 -0
  4. package/dist/constants/claim/general.js +1 -1
  5. package/dist/constants/claim/kalog.js +1 -1
  6. package/dist/constants/claim/life.d.ts +50 -0
  7. package/dist/constants/claim/life.js +173 -0
  8. package/dist/constants/claim/loket.js +40 -40
  9. package/dist/constants/claim/motorVehicle.js +1 -1
  10. package/dist/constants/claim/travel.js +1 -1
  11. package/dist/constants/config.js +2 -2
  12. package/dist/constants/product/cargo/quotation.js +1 -1
  13. package/dist/constants/product/cargo.d.ts +39 -0
  14. package/dist/constants/product/cargo.js +41 -0
  15. package/dist/constants/product/coretax.d.ts +12 -0
  16. package/dist/constants/product/coretax.js +14 -0
  17. package/dist/constants/product/mv.d.ts +30 -0
  18. package/dist/constants/product/mv.js +158 -0
  19. package/dist/constants/product/property/occupation-simple.js +12 -0
  20. package/dist/constants/product/property/occupation.d.ts +5 -0
  21. package/dist/constants/product/property/occupation.js +1725 -0
  22. package/dist/constants/product.js +14 -14
  23. package/dist/constants/source.js +1 -1
  24. package/dist/helpers/alphaNumericCleansing.js +1 -1
  25. package/dist/helpers/amountDescription.js +1 -1
  26. package/dist/helpers/axiosGet.js +1 -1
  27. package/dist/helpers/axiosPost.js +1 -1
  28. package/dist/helpers/axiosPut.js +1 -1
  29. package/dist/helpers/calculateByType.js +1 -1
  30. package/dist/helpers/calculateForNullable.js +6 -6
  31. package/dist/helpers/getHeaderUser.js +4 -4
  32. package/dist/helpers/loop.js +2 -2
  33. package/dist/helpers/loopBackward.js +2 -2
  34. package/dist/helpers/readExcel.d.ts +2 -0
  35. package/package.json +1 -1
@@ -0,0 +1,158 @@
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 Truk dan Pickup",
57
+ en: "Vehicle Types Truck and Pickup",
58
+ },
59
+ },
60
+ {
61
+ code: "VT003",
62
+ desc: {
63
+ id: "Jenis Kendaraan Bus",
64
+ en: "Vehicle Types Bus",
65
+ },
66
+ },
67
+ {
68
+ code: "VT004",
69
+ desc: {
70
+ id: "Jenis Kendaraan Roda 2 (dua)",
71
+ en: "Type of 2 (two) Wheeled Vehicle",
72
+ },
73
+ },
74
+ ];
75
+ exports.vehicleTypeCode = vehicleTypeCode;
76
+ const additionalCoverage = [
77
+ {
78
+ code: "TSFWD",
79
+ desc: {
80
+ id: "Topan, Badai, Banjir, Kerusakan Akibat Air",
81
+ en: "Typhoon, Storm, Flood, Water Damage",
82
+ },
83
+ isVisible: true,
84
+ },
85
+ {
86
+ code: "EQVET",
87
+ desc: {
88
+ id: "Gempa Bumi, Letusan Gunung Berapi dan Tsunami",
89
+ en: "Earthquake, Volcanic Eruption and Tsunami",
90
+ },
91
+ isVisible: true,
92
+ },
93
+ {
94
+ code: "SRCC",
95
+ desc: {
96
+ id: "Mogok Kerja, Kerusuhan dan Kerusuhan Sipil",
97
+ en: "Strike, Riot & Civil Commotion",
98
+ },
99
+ isVisible: true,
100
+ },
101
+ {
102
+ code: "PSATSI",
103
+ desc: {
104
+ id: "Terorisme dan Sabotase",
105
+ en: "Terrorism and Sabotage",
106
+ },
107
+ isVisible: true,
108
+ },
109
+ {
110
+ code: "TPL",
111
+ desc: {
112
+ id: "Tanggung Jawab Hukum Pihak Ketiga",
113
+ en: "Third Party Liability",
114
+ },
115
+ isVisible: true,
116
+ },
117
+ {
118
+ code: "PAD",
119
+ desc: {
120
+ id: "Kecelakaan Pengemudi",
121
+ en: "Personal Accident Driver",
122
+ },
123
+ isVisible: true,
124
+ },
125
+ {
126
+ code: "PAP",
127
+ desc: {
128
+ id: " Kcelakaan Penumpang",
129
+ en: "Personal Accident Passenger",
130
+ },
131
+ isVisible: true,
132
+ },
133
+ {
134
+ code: "TBOD",
135
+ desc: {
136
+ id: "Biaya Medis, Izin Bengkel, Tunjangan Ambulans, Ban dan Velg",
137
+ en: "TBOD, Authorize Workshop, Ambulance Allowance, Tire and Wheel",
138
+ },
139
+ isVisible: true,
140
+ },
141
+ {
142
+ code: "CASCO",
143
+ desc: {
144
+ id: "",
145
+ en: "",
146
+ },
147
+ isVisible: false,
148
+ },
149
+ {
150
+ code: "TLO",
151
+ desc: {
152
+ id: "",
153
+ en: "",
154
+ },
155
+ isVisible: false,
156
+ },
157
+ ];
158
+ exports.additionalCoverage = additionalCoverage;
@@ -499,5 +499,17 @@ const occupation = [
499
499
  'construction-3',
500
500
  ],
501
501
  },
502
+ {
503
+ code: '23431',
504
+ desc: {
505
+ id: '',
506
+ en: 'Manufacturer of plastic articles, Foam plastic, Synthetics resin (Using Inflammable/ Combustible/Volatile Liquids and or Solids at anytime during the production process)',
507
+ },
508
+ construction: [
509
+ 'construction-1',
510
+ 'construction-2',
511
+ 'construction-3',
512
+ ],
513
+ },
502
514
  ];
503
515
  exports.default = occupation;
@@ -0,0 +1,5 @@
1
+ declare const ocupation: {
2
+ id: number;
3
+ name: string;
4
+ }[];
5
+ export default ocupation;