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

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.
@@ -0,0 +1,5 @@
1
+ declare const _default: {
2
+ ACCOUNT_DEBIT: string;
3
+ ACCOUNT_CREDIT: string;
4
+ };
5
+ export default _default;
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.default = {
4
+ ACCOUNT_DEBIT: 'DEBIT',
5
+ ACCOUNT_CREDIT: 'CREDIT',
6
+ };
@@ -0,0 +1,8 @@
1
+ declare const bankAccount: {
2
+ code: string;
3
+ desc: {
4
+ id: string;
5
+ en: string;
6
+ };
7
+ }[];
8
+ export default bankAccount;
@@ -0,0 +1,54 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const bankAccount = [
4
+ {
5
+ code: 'BCA2000',
6
+ desc: {
7
+ id: 'BCA 5455682000',
8
+ en: 'BCA 5455682000',
9
+ }
10
+ },
11
+ {
12
+ code: 'BCA2999',
13
+ desc: {
14
+ id: 'BCA 5455682999',
15
+ en: 'BCA 5455682999',
16
+ }
17
+ },
18
+ {
19
+ code: 'OCBC371-IDR',
20
+ desc: {
21
+ id: 'OCBC IDR 111800004371',
22
+ en: 'OCBC IDR 111800004371',
23
+ }
24
+ },
25
+ {
26
+ code: 'OCBC371-USD',
27
+ desc: {
28
+ id: 'OCBC USD 111800004371',
29
+ en: 'OCBC USD 111800004371',
30
+ }
31
+ },
32
+ {
33
+ code: 'PERMATA4371',
34
+ desc: {
35
+ id: 'Permata 0980-9340-683',
36
+ en: 'Permata 0980-9340-683',
37
+ }
38
+ },
39
+ {
40
+ code: 'PERMATA4371',
41
+ desc: {
42
+ id: 'QNB 1220-004544-001',
43
+ en: 'QNB 1220-004544-001',
44
+ }
45
+ },
46
+ {
47
+ code: 'BTPN3068',
48
+ desc: {
49
+ id: 'BTPN Syariah 1035883068',
50
+ en: 'BTPN Syariah 1035883068',
51
+ }
52
+ },
53
+ ];
54
+ exports.default = bankAccount;
@@ -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.35",
4
4
  "description": "This common module for Provis internal backend use lib",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {