@provis/provis-common-be-module 2.5.32 → 2.5.33

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.
@@ -48,6 +48,8 @@ declare const additionalCoverage: ({
48
48
  isInputQty: boolean;
49
49
  deductible: string[];
50
50
  order: number;
51
+ isUseDropdown?: undefined;
52
+ isManualCalculate?: undefined;
51
53
  replaceWording?: undefined;
52
54
  } | {
53
55
  code: string;
@@ -61,10 +63,30 @@ declare const additionalCoverage: ({
61
63
  };
62
64
  isVisible: boolean;
63
65
  isInputSumInsured: boolean;
66
+ isUseDropdown: string[];
67
+ isManualCalculate: boolean;
64
68
  isInputQty: boolean;
65
69
  replaceWording: string[];
66
70
  deductible: string[];
67
71
  order: number;
72
+ } | {
73
+ code: string;
74
+ desc: {
75
+ id: string;
76
+ en: string;
77
+ };
78
+ wordingDesc: {
79
+ id: string;
80
+ en: string;
81
+ };
82
+ isVisible: boolean;
83
+ isInputSumInsured: boolean;
84
+ isInputQty: boolean;
85
+ replaceWording: string[];
86
+ deductible: string[];
87
+ order: number;
88
+ isUseDropdown?: undefined;
89
+ isManualCalculate?: undefined;
68
90
  } | {
69
91
  code: string;
70
92
  desc: {
@@ -77,6 +99,8 @@ declare const additionalCoverage: ({
77
99
  order: number;
78
100
  wordingDesc?: undefined;
79
101
  deductible?: undefined;
102
+ isUseDropdown?: undefined;
103
+ isManualCalculate?: undefined;
80
104
  replaceWording?: undefined;
81
105
  })[];
82
106
  declare const vehicleUsage: {
@@ -204,6 +204,13 @@ const additionalCoverage = [
204
204
  },
205
205
  isVisible: true,
206
206
  isInputSumInsured: true,
207
+ isUseDropdown: [
208
+ '25000000',
209
+ '50000000',
210
+ '100000000',
211
+ '150000000',
212
+ ],
213
+ isManualCalculate: true,
207
214
  isInputQty: false,
208
215
  replaceWording: [
209
216
  'sumInsured',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@provis/provis-common-be-module",
3
- "version": "2.5.32",
3
+ "version": "2.5.33",
4
4
  "description": "This common module for Provis internal backend use lib",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {