@provis/provis-common-be-module 2.6.9 → 2.6.11

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 (33) 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/cargo.d.ts +10 -114
  5. package/dist/constants/claim/cargo.js +5 -7
  6. package/dist/constants/claim/general.js +1 -1
  7. package/dist/constants/claim/kalog.js +1 -1
  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/mv/merk.js +3 -6
  13. package/dist/constants/product/mv.d.ts +30 -0
  14. package/dist/constants/product/mv.js +158 -0
  15. package/dist/constants/product/property/area.json +0 -34
  16. package/dist/constants/product/property/clause.d.ts +3 -2
  17. package/dist/constants/product/property/clause.js +15 -864
  18. package/dist/constants/product/property/occupation-simple.d.ts +2 -11
  19. package/dist/constants/product/property/occupation-simple.js +1 -18
  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 +12 -12
  23. package/dist/helpers/amountDescription.js +1 -1
  24. package/dist/helpers/axiosGet.js +1 -1
  25. package/dist/helpers/axiosPost.js +1 -1
  26. package/dist/helpers/axiosPut.js +1 -1
  27. package/dist/helpers/calculateByType.js +1 -1
  28. package/dist/helpers/calculateForNullable.js +5 -5
  29. package/dist/helpers/getHeaderUser.js +4 -4
  30. package/dist/helpers/loop.js +2 -2
  31. package/dist/helpers/loopBackward.js +2 -2
  32. package/dist/helpers/readExcel.d.ts +2 -0
  33. package/package.json +1 -1
@@ -1,18 +1,9 @@
1
- declare const occupation: ({
1
+ declare const occupation: {
2
2
  code: string;
3
3
  desc: {
4
4
  id: string;
5
5
  en: string;
6
6
  };
7
7
  construction: string[];
8
- clause?: undefined;
9
- } | {
10
- code: string;
11
- desc: {
12
- id: string;
13
- en: string;
14
- };
15
- construction: string[];
16
- clause: string[];
17
- })[];
8
+ }[];
18
9
  export default occupation;
@@ -61,10 +61,6 @@ const occupation = [
61
61
  'construction-2',
62
62
  'construction-3',
63
63
  ],
64
- clause: [
65
- 'clause-27',
66
- 'clause-33',
67
- ],
68
64
  },
69
65
  {
70
66
  code: '29412',
@@ -78,10 +74,6 @@ const occupation = [
78
74
  'construction-2',
79
75
  'construction-3',
80
76
  ],
81
- clause: [
82
- 'clause-27',
83
- 'clause-33',
84
- ],
85
77
  },
86
78
  {
87
79
  code: '2942',
@@ -95,10 +87,6 @@ const occupation = [
95
87
  'construction-2',
96
88
  'construction-3',
97
89
  ],
98
- clause: [
99
- 'clause-27',
100
- 'clause-33',
101
- ],
102
90
  },
103
91
  {
104
92
  code: '29431',
@@ -168,7 +156,7 @@ const occupation = [
168
156
  code: '2947',
169
157
  desc: {
170
158
  id: '',
171
- en: 'Beauty salon / Hair dresser / Barber shops',
159
+ en: 'Beauty salon/ Hair dresser/ Barber shops',
172
160
  },
173
161
  construction: [
174
162
  'construction-1',
@@ -324,11 +312,6 @@ const occupation = [
324
312
  'construction-2',
325
313
  'construction-3',
326
314
  ],
327
- clause: [
328
- 'clause-1',
329
- 'clause-54',
330
- 'clause-55',
331
- ],
332
315
  },
333
316
  {
334
317
  code: '29761',
@@ -0,0 +1,5 @@
1
+ declare const ocupation: {
2
+ id: number;
3
+ name: string;
4
+ }[];
5
+ export default ocupation;